作为我脚本的一部分,我在powershell模块中有以下代码。
Set-Service -Name $ServiceName -ComputerName $ComputerName -Status $ServiceStatus -Confirm:$false -Verbose;
当在脚本中运行时,我收到以下错误
Set-Service : Service 'Service Name' cannot be configured due to the following error: The specified service does not exist as an installed service
但是当我作为测试的一部分手动运行时,命令运行时没有错误。
Set-Service -Name "Service Name" -ComputerName "machine name" -Status Stopped -Confirm:$false -Verbose;