Win10系统PowerShell执行.ps1文件

时间:2024-05-21 15:17:21

注:win10系统默认已安装了PowerShell

win+r打开运行:

Win10系统PowerShell执行.ps1文件

输入:$PSVersionTable查看powershell版本

Win10系统PowerShell执行.ps1文件

进入ps1文件目录:PS C:\Users\admin> cd E:\DevEnviroments\skype-docs-master\Skype\WebSDK\build
执行ps1文件:PS E:\DevEnviroments\skype-docs-master\Skype\WebSDK\build> .\Build-Samples.ps1

Win10系统PowerShell执行.ps1文件

开启权限:set-executionpolicy remotesigned

Win10系统PowerShell执行.ps1文件

结果提示要以管理员身份运行,

进入:C:\Windows\System32\WindowsPowerShell\v1.0

Win10系统PowerShell执行.ps1文件

右键选择以管理员身份运行,进入后执行  set-executionpolicy remotesigned

Win10系统PowerShell执行.ps1文件

 此时再执行ps1文件成功:

Win10系统PowerShell执行.ps1文件