欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Powershell脚本的4种执行权限介绍

程序员文章站 2022-06-24 10:58:38
restricted——默认的设置, 不允许任何script运行 allsigned——只能运行经过数字证书签名的script remotesigned——运行本地的s...

restricted——默认的设置, 不允许任何script运行
allsigned——只能运行经过数字证书签名的script
remotesigned——运行本地的script不需要数字签名,但是运行从网络上下载的script就必须要有数字签名
unrestricted——允许所有的script运行

windows默认不允许任何脚本运行,你可以使用"set-executionpolicy"cmdlet来改变的你powershell环境。例如,你可以使用如下命令让powershell运行在无限制的环境之下:


set-executionpolicy unrestricted

但在win7下,必须使用管理员的权限启动命令命令行,否则会报“set-executionpolicy : 对注册表项“hkey_local_machine\software\microsoft\powershell\1\shellids\microsoft.powershell”的访问被拒绝。”错误。

使用java调用powershell脚本,可以使用以下命令:


string cmd = "cmd /c powershell -executionpolicy remotesigned -noprofile -noninteractive -file \""+ scriptfilename + "\"";