遇到vscode不能打开终端难题,一直以为是安全软件限制难题,也没搜到解决方案,由于影响也不大,就没有管。
最近,要用vscode调试代码,发现不能打开终端,没法玩了,又来看这个难题,终于解决了。
记录下来,希望帮助到遇到同样难题的朋友。
终端进程启动失败: Windows cannot open this program because it has been prevented by a software restriction policy. For more information, open Event Viewer or contact your system Administrator。
这的确是由于限制难题,不过是由于powershell本身的限制,由于我直接打开powershell都打不开。
vscode默认使用的终端是powershell,因此打不开终端也就是正常现象了。
只需要打开设置(ctrl+,)搜索终端,找到Windows下的终端配置。
添加默认终端配置:
“terminal.integrated.defaultProfile.windows”: “Command Prompt”
Command Prompt表示的就是cmd终端。
还可以添加终端配置,比如,想用git之类的作为终端,就可以,在这个配置文件中添加:
“terminal.integrated.profiles.windows”: “gitBash”: “path”: “D:\tool\Git\bin\bash.exe”, “color”: “terminal.ansiYellow” }, “cmd”: “path”: “C:\WINDOWS\System32\cmd.exe”, “color”: “terminal.ansiRed” } }
把路径改成自己的可执行程序路径就可以了。
可以选择终端。
接下来接可以愉快的进行调试了:
到此这篇关于vscode不能打开终端难题解决办法的文章就介绍到这了,更多相关vscode不能打开终端内容请搜索风君子博客以前的文章或继续浏览下面的相关文章希望大家以后多多支持风君子博客!
无论兄弟们可能感兴趣的文章:
- vscode终端输出中文乱码难题解决图文教程