gpt4 book ai didi

用于重启计算机的 Powershell 工作流程

转载 作者:行者123 更新时间:2023-12-02 23:10:37 26 4
gpt4 key购买 nike

代码:

workflow Test-RemoteReboot{
param ([string[]]$serverNames)
foreach -parallel($server in $serverNames){
Restart-Computer -PSComputerName $server -Wait -Force
}
}

Test-RemoteReboot SP,SP2

问题:这是我在 powershell 中构建的一个相当长的工作流程的一小段摘录。从各方面来看,这应该可行,但我收到以下错误(即使在单独运行此脚本时):

Microsoft.PowerShell.Utility\Write-Error : The running command stopped because the preference variable "ErrorActionPreference" or common parameter is set to Stop: The computer SP2 is skipped. Fail to retrieve its LastBootUpTime via the WMI service with the following error message: The RPC server is unavailable. (Exception from HRESULT: 0x800706BA). At line:433 char:25 + ... Receive-Job -Job $job -Wait -Verbose -Debug -ErrorAction ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Write-Error], ActionPreferenceStopException + FullyQualifiedErrorId : System.Management.Automation.ActionPreferenceStopException,Microsoft.PowerShell.Commands.WriteErrorCommand + PSComputerName : [localhost]

我调查了 RPC 服务器不可用的问题。防火墙关闭,RPC 服务正在运行,服务器在域中,工作流从域成员计算机运行,作为域管理员。我可以成功地通过 PSRemote 进入机器并执行任何操作。我什至可以这样做:

workflow Test-LocalRebootRemotely{
param ([string[]]$serverNames)
foreach -parallel($server in $serverNames){
InlineScript { Restart-Computer -Force } -PSComputerName $server
}
}

Test-LocalRebootRemotely SP,SP2

问题是,我需要一个返回值来确定我是否需要重新启动并处理远程计算机之外的其他逻辑。我确实注意到在它出错之前有一个异常的暂停。所以也许这是超时?有人有类似的问题吗?

最佳答案

您可以使用 -Protocol WSMan 参数尝试 Restart-Computer cmdlet,而不是默认的 DCOM over RPC 协议(protocol)(-Protocol DCOM ).

这将确认您的 RPC 网络数据包在某处被阻止。

关于用于重启计算机的 Powershell 工作流程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42959938/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com