问题:vue脚手架之前使用的没有问题的,一段时间没使用电脑,再次运行vue脚手架时,报如下错误:
vue : 无法加载文件 D:yizhaohtml-filesfile
ode
ode_globalvue.ps1,因为在此系统上禁止运行脚本。有关详细
信息,请参阅 https:/go.microsoft.com/fwlink/?LinkID=135170 中的 about_Execution_Policies。
所在位置 行:1 字符: 1
+ vue --version
+ ~~~
+ CategoryInfo : SecurityError: (:) [],PSSecurityException
+ FullyQualifiedErrorId : UnauthorizedAccess
查了下,找到了解决方法:
1. 以管理员身份运行PowerShell
2. 执行:get-ExecutionPolicy,回复Restricted,表示状态是禁止的
3.执行:set-ExecutionPolicy RemoteSigned即可
注意:一定要以管理员的身份运行PowerShell,不是cmd窗口!
(感谢大佬)参考:https://www.cnblogs.com/WMT-Azura/p/11137972.html