Set-Service在作为脚本的一部分执行时失败,但在手动运行时通过

时间:2013-04-18 17:14:19

标签: powershell

作为我脚本的一部分,我在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;

0 个答案:

没有答案