正文解决Powershell中不能运行脚本问题IP云V管理员/2022-11-30/10 阅读 11/30提示:扫一扫查出行【扫一扫了解最新限行尾号】复制提示 问题: powershell中不能执行脚本,提示‘because running scripts is disabled on this system’ 原因: powershell中默认的execution policy 是restricted,使用Get-ExecutionPolicy查看 解决方法: 设置execution policy为remotesigned Set-ExecutionPolicy RemoteSigned