const { exec } = require('child_process');
exec('stop_clear_start.lnk', (err, stdout, stderr) => {
});
----------------
const { spawn } = require('child_process');
const bat = spawn('cmd.exe', ['/c', 'stop_clear_start.lnk']);
-------
то cmd выполняется мгновенно игнорируя все таймауты, типа таких:
timeout /t 5 /nobreak >nul
?
ошибка происходит, видимо
Обсуждают сегодня