Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

NodeJs Error: spawn C:\Windows\system32\cmd.exe; ENOENT

This is my script :

var exec = require('child_process').exec;

    exec('dir', function(error, stdout, stderr) {  // 'dir' is for example
      if (error) {
        console.error(`exec error: ${error}`);
        return;
      }
      console.log(`stdout: ${stdout}`);
      console.log(`stderr: ${stderr}`);
    });

And in the console I have :

exec error: Error: spawn C:\Windows\system32\cmd.exe; ENOENT

Someone can help me ?

like image 741
Jiohn Dioe Avatar asked Jul 19 '16 12:07

Jiohn Dioe


2 Answers

This can also be caused if you are feeding in ExecOptions the options parameter, specifically 'cwd', and the path you provide is invalid

e.g:

cp.exec(<path_to_executable>, {
  cwd: <path_to_desired_working_dir>
}, (err, stdout, stderr) => {
  //......
})

If is not valid, the callback will be called with err equal to

Error: spawn C:\Windows\system32\cmd.exe ENOENT

like image 135
hugeandy Avatar answered Nov 01 '22 11:11

hugeandy


I got to resolve the issue the problem is to remove the semicolon(;) from an end of the ComSpec path C:\Windows\System32\cmd.exe

Mycomputer>properties>Advance System Settings>Environment Variables>System Variables

add this path: enter image description hereComSpec C:\Windows\System32\cmd.exe

like image 8
sudheer nunna Avatar answered Nov 01 '22 11:11

sudheer nunna