Reputation: 39
I really don't know what to do. Can somebody help? it's on vscode
Upvotes: 2
Views: 13625
Reputation: 519
Just remove deleted files from your workspace in visual studio code(like erase the history of open files/folder).it works for me
Upvotes: 1
Reputation: 10372
This is because it cannot find the .exe
executable file, you can fix it with the following settings:
cmd.exe
to execute the script, use:
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe"
PowerShell.exe
to execute the script, use:"terminal.integrated.shell.windows": "C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe"
For more, you could also refer to: Terminal.integrated.shell.windows.
Upvotes: 1