'Electron javascript run batch command [duplicate]

I need to run a batch command in electron.

i try it. i have btn timeout and after click i need run cmd batch script. This code but no run batch

document.getElementById('timeout').addEventListener('click', function (e){
    timeout();
});
function timeout()
{
    const {shell} = require('electron');
    shell.Run('cmd /c start TIMEOUT /T 10');
}

Thank you for your advice.



Solution 1:[1]

Try this method. Note that it requires nodeIntegration to be enabled, or for you to run the command from the main process.

const { exec } = require('child_process');
exec('cmd /c start TIMEOUT /T 10');

The shell module from Electron is not a shell in the sense you're thinking.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Slbox