The Terminal Process Failed To Launch: Path To Shell Executable "c:\windows\system32" Is Not A File Of A Symlink
I really don't know what to do. Can somebody help? it's on vscode
Solution 1:
This is because it cannot find the .exe
executable file, you can fix it with the following settings:
- If you use
cmd.exe
to execute the script, use:
"terminal.integrated.shell.windows": "C:\\Windows\\System32\\cmd.exe"
- If you use
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.
Solution 2:
Just remove deleted files from your workspace in visual studio code(like erase the history of open files/folder).it works for me
Post a Comment for "The Terminal Process Failed To Launch: Path To Shell Executable "c:\windows\system32" Is Not A File Of A Symlink"