1. 原因
powershell默认执行策略为Restricted的问题
2. 解决办法
- 全用户设置
以管理员身份运行powershell,输入以下指令:
Set-ExecutionPolicy remotesigned
- 如果是公司电脑,且自己没有管理员权限,可单独为当前用户设置, 输入以下指令(无需以管理员身份运行):
Set-ExecutionPolicy -Scope CurrentUser remotesigned
powershell默认执行策略为Restricted的问题
Set-ExecutionPolicy remotesigned
Set-ExecutionPolicy -Scope CurrentUser remotesigned