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.
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.