我正在尝试使用 powershell 在远程计算机上安装服务。
到目前为止,我有以下内容:
Invoke-Command -ComputerName $remoteComputerName -ScriptBlock {
param($password=$password,$username=$username)
$secpasswd = ConvertTo-SecureString $password -AsPlainText -Force
$credentials = New-Object System.Management.Automation.PSCredential ($username, $secpasswd)
New-Service -Name "XXX" -BinaryPathName "c:\XXX.exe" -DisplayName "XXX XXX XXX" -Description "XXXXXX." -Credential $credentials -ErrorVariable errortext
Write-Host("Error in: " + $errortext)
} -ArgumentList $password,$username -ErrorVariable errortext
Write-Host("Error out: " + $errortext)
当执行 New-Service 时出现错误时,$errortext ErrorVariable 会在 ScriptBlock 内正确设置,因为文本:“Error in: 向我显示错误。
Invoke-Command 的 ErrorVariable 未设置(这是我的预期)。
我的问题是:
是否可以将 Invoke-Command 的 ErrorVariable 设置为我在 ScriptBlock 中遇到的错误?
我知道我也可以使用 InstalUtil、WMI 和 SC 来安装服务,但目前这不相关。