我需要在不同的服务器上运行一些脚本,这些脚本将依次停止/启动许多其他服务器上的服务。
我创建了一个脚本,将策略更改为“绕过”并运行脚本,然后将更改恢复为正常。
$LOGPATH = "output.txt"
$system_default_policy = Get-ExecutionPolicy
"Current execution policy $system_default_policy" | Out-File -FilePath $LOGPATH
if ($syste_default_policy -ne 'Bypass') {
"Changing the execution policy from $system_default_policy to Bypass" | Out-File -FilePath $LOGPATH -Append
Set-ExecutionPolicy Bypass -Force
"Successfully changed the execution policy to Bypass" | Out-File -FilePath $LOGPATH -Append
}
### executing the commands to stop/start the services
"Re-writing the changes to default policy" | Out-File -FilePath $LOGPATH -Append
Set-ExecutionPolicy $system_default_policy -Force
"Changed the policy to " + $(Get-ExecutionPolicy) | Out-File -FilePath $LOGPATH -Append
但是,在以下情况下,这似乎是多余的过程。
还有其他方法可以在执行脚本之前仅运行一次此脚本(以更改执行策略),然后在运行所有脚本后最后将其更改为原始值。
答案 0 :(得分:4)
执行策略仅适用于脚本,因此不适用于在主机上调用或作为命令传递的代码。有多种方法可以做到这一点,其中包括:
Invoke-Command
来自远程计算机。
Invoke-Command -ComputerName $Computer -ScriptBlock {
# Code
}
powershell.exe -Command
在本地
powershell.exe -Command "#code"
但是,通常最简单的运行脚本而不更改配置的方法是
powershell.exe -ExecutionPolicy Bypass -File C:\yourscript.ps1