I'm unable to spawn Bash from NodeJS. If you try to, it will return this error: `Error: 0x80070057` ### How to reproduce: - Install NodeJS - Run `node` in CMD - Type: ``` cp = require('child_process'); proc = cp.spawnSync('cmd', ['/c', 'bash -c "ls"'], {encoding: 'utf8'}).output ``` It outputs: ``` [ null, 'Error: 0x80070057\r\r\n', '' ] ``` ref: https://github.com/Microsoft/CommandLine-Documentation/issues/8