2

我正在编写将供应商软件部署到大型环境的脚本。第一步是停止相关服务。该脚本在我们的测试环境中执行良好,但我不是生产环境中的管理员,所以我确信这是权限问题。我无法获得 prod 环境的管理员权限,因此我需要尝试找出我可能需要设置的任何内容,以授予远程停止服务的权限。我发出以下命令来停止服务:

Stop-Service -InputObject $(Get-Service -Computer $destination.Server -Name ("moca."+$destEnv))

当我运行脚本时,我得到:

Cannot find any service with service name 'moca.WMSPRD'.
+ CategoryInfo          : ObjectNotFound: (moca.WMSPRD:String) [Get-Service], ServiceCommandException
+ FullyQualifiedErrorId : NoServiceFoundForGivenName,Microsoft.PowerShell.Commands.GetServiceCommand

Cannot validate argument on parameter 'InputObject'. The argument is null or empty. Supply an argument that is not null or empty and then try the command again.
+ CategoryInfo          : InvalidData: (:) [Stop-Service], ParameterBindingValidationException
+ FullyQualifiedErrorId : ParameterArgumentValidationError,Microsoft.PowerShell.Commands.StopServiceCommand

该服务肯定存在,如果我 rdp 进入目标框并在本地发出 stop-service 命令,它将执行。所以有些东西阻止我远程停止服务。有任何想法吗?

编辑:一位同事建议使用 WMI,因此尝试将 Stop-Service 行替换为:

(Get-WmiObject -computer $destination.Server Win32_Service -Filter ("Name='moca."+$destEnv+"'")).InvokeMethod("StopService",$null)

我得到:

Access is denied. (Exception from HRESULT: 0x80070005 (E_ACCESSDENIED))
+ CategoryInfo          : NotSpecified: (:) [Get-WmiObject], UnauthorizedAccessException
+ FullyQualifiedErrorId : System.UnauthorizedAccessException,Microsoft.PowerShell.Commands.GetWmiObjectCommand
4

2 回答 2

0

如果您知道确切的服务名称,您可以试试这个

(Get-WmiObject -computerName $_.name Win32_Service -Filter "Name='moca'").StopService()

这里我假设服务名称是 moca

于 2012-11-12T11:59:42.000 回答
0

DCOM 是否在远程计算机上工作?我知道如何使用使用 wsman 的远程 powershell 来做到这一点:

 invoke-command comp001 { stop-service adobearmservice }
于 2019-09-15T14:50:44.423 回答