PowerShell says “execution of scripts is disabled on this system.”

前端 未结 30 2381
傲寒
傲寒 2020-11-22 00:45

I am trying to run a cmd file that calls a PowerShell script from cmd.exe, but I am getting this error:

Management_Instal

30条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-11-22 01:11

    If you are in an environment where you are not an administrator, you can set the Execution Policy just for you, and it will not require administrator.

    Set-ExecutionPolicy -Scope "CurrentUser" -ExecutionPolicy "RemoteSigned"
    

    or

    Set-ExecutionPolicy -Scope "CurrentUser" -ExecutionPolicy "Unrestricted"
    

    You can read all about it in the help entry.

    Help Get-ExecutionPolicy -Full
    Help Set-ExecutionPolicy -Full
    

提交回复
热议问题