VS Code 中不能运行脚本(因为在此系统上禁止 运行脚本) live-server

时间:2024-05-31 12:53:06

出现的问题:VS code中运行live server时报错


提示

VS Code 中不能运行脚本(因为在此系统上禁止 运行脚本) live-server

原因:VS code启动命令行时,相当于计算机上启动 Windows PowerShell ,执行策略为 Restricted(默认设置)。 

Restricted 执行策略不允许任何脚本运行。 
 AllSigned 和 RemoteSigned 执行策略可防止 Windows PowerShell 运行没有数字签名的脚本。

有关 Windows PowerShell 执行策略的详细信息,请参阅 about_Execution_Policy。

解决:

查看:get-executionpolicy

设置:set-executionpolicy remotesigned

记住不要在VS code上操作上面两行代码,在计算机》菜单中打开管理员运行

VS Code 中不能运行脚本(因为在此系统上禁止 运行脚本) live-server

 VS Code 中不能运行脚本(因为在此系统上禁止 运行脚本) live-server

这样就大功告成了,然后回到VS code输入live server

VS Code 中不能运行脚本(因为在此系统上禁止 运行脚本) live-server