ps1 cannot be loaded because running scripts is disabled on this system

后端 未结 9 810
执笔经年
执笔经年 2020-12-12 11:55

I try to run powershell script from c#.

First i set the ExecutionPolicy to Unrestricted and the script is running now from

9条回答
  •  [愿得一人]
    2020-12-12 12:24

    Run this code in your powershell or cmd

    Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass
    

提交回复
热议问题