26

我遇到了一个似乎有效的班轮:

stop-service -inputobject $(get-service -ComputerName remotePC -Name Spooler)

谁能解释为什么,因为我认为 stop-service 不起作用,除非您使用远程处理或它发生在本地主机上。

4

9 回答 9

43

的输出Get-Service是一个System.ServiceProcess.ServiceController可以在远程计算机上运行的 .NET 类。我不知道它是如何做到这一点的——可能是 DCOM 或 WMI。一旦您从 中获得其中之一Get-Service,就可以将其传递给Stop-Service最有可能仅调用Stop()此对象上的方法的地方。这会停止远程机器上的服务。事实上,你也可以这样做:

(get-service -ComputerName remotePC -Name Spooler).Stop()
于 2012-04-26T23:56:20.343 回答
5

感谢大家对这个问题的贡献,我想出了以下脚本。更改值$SvcName$SvrName满足您的需要。如果远程服务停止,此脚本将启动它,如果它启动则停止它。它使用cool.WaitForStatus方法等待服务响应。

#Change this values to suit your needs:
$SvcName = 'Spooler'
$SvrName = 'remotePC'

#Initialize variables:
[string]$WaitForIt = ""
[string]$Verb = ""
[string]$Result = "FAILED"
$svc = (get-service -computername $SvrName -name $SvcName)
Write-host "$SvcName on $SvrName is $($svc.status)"
Switch ($svc.status) {
    'Stopped' {
        Write-host "Starting $SvcName..."
        $Verb = "start"
        $WaitForIt = 'Running'
        $svc.Start()}
    'Running' {
        Write-host "Stopping $SvcName..."
        $Verb = "stop"
        $WaitForIt = 'Stopped'
        $svc.Stop()}
    Default {
        Write-host "$SvcName is $($svc.status).  Taking no action."}
}
if ($WaitForIt -ne "") {
    Try {  # For some reason, we cannot use -ErrorAction after the next statement:
        $svc.WaitForStatus($WaitForIt,'00:02:00')
    } Catch {
        Write-host "After waiting for 2 minutes, $SvcName failed to $Verb."
    }
    $svc = (get-service -computername $SvrName -name $SvcName)
    if ($svc.status -eq $WaitForIt) {$Result = 'SUCCESS'}
    Write-host "$Result`: $SvcName on $SvrName is $($svc.status)"
}

当然,您运行它的帐户需要适当的权限才能访问远程计算机以及启动和停止服务。在对旧的远程机器执行此操作时,您可能首先必须在旧机器上安装 WinRM 3.0。

于 2014-07-09T05:42:07.380 回答
4

基于内置的 Powershell 示例,这是 Microsoft 的建议。测试和验证:

停止:

(Get-WmiObject Win32_Service -filter "name='IPEventWatcher'" -ComputerName Server01).StopService()

开始:

(Get-WmiObject Win32_Service -filter "name='IPEventWatcher'" -ComputerName Server01).StartService()
于 2014-06-04T15:34:13.523 回答
2

这对我有用,但我用它作为开始。powershell 输出,等待服务完成启动几次然后完成,然后远程服务器上的 get-service 显示服务已启动。

**start**-service -inputobject $(get-service -ComputerName remotePC -Name Spooler)
于 2013-09-11T11:47:03.887 回答
2

另外一个选项; 使用invoke-command

cls
$cred = Get-Credential
$server = 'MyRemoteComputer'
$service = 'My Service Name' 

invoke-command -Credential $cred -ComputerName $server -ScriptBlock {
    param(
       [Parameter(Mandatory=$True,Position=0)]
       [string]$service
    )
    stop-service $service 
} -ArgumentList $service

注意:要使用此选项,您需要在远程计算机上安装 PowerShell,并让防火墙允许请求通过,并让 Windows 远程管理服务在目标计算机上运行。您可以通过直接在目标机器上运行以下脚本来配置防火墙(一次性任务)Enable-PSRemoting -force:.

于 2015-03-06T13:52:40.230 回答
0

你也可以做(Get-Service -Name "what ever" - ComputerName RemoteHost).Status = "Stopped"

于 2012-11-13T01:38:09.673 回答
0

您可以只运行一个 foreach 并启用日志记录。如果出现问题,控制台将显示,您可以查看日志。

这样,您就可以单独处理错误。

我认为这种方式比为验证部分运行测试网络连接更好,因为防火墙规则可以创建值 false。

对于此示例,您需要一个 csv 文件,其中包含列 ServerName,使用 servername.contoso.com 填充列

$ServerList = "$PSScriptRoot\Serverlist.csv"

$Transcriptlog = "$PSScriptRoot\Transcipt.txt"
    
    Start-Transcript -Path $Transcriptlog -Force
    Get-Date -Format "yyyy/MM/dd HH:mm" 
    
    Try 
     { # Start Try  
       $ImportServerList = Import-Csv $ServerList -Encoding UTF8 | ForEach-Object { # Start Foreach 
        New-Object PsObject -Prop @{ # Start New-Object 
         ServerName = $_.ServerName } # End NewObject 
          Invoke-Command -ComputerName $_.ServerName -ErrorAction Continue -ScriptBlock  { # Start ScriptBlock  
           # Disable Service PrintSpooler
           Get-Service -Name Spooler | Stop-Service -Force 
    
       } # End ScriptBlock
      } # End Foreach       
     } # End Try
    
    Catch
     { # Start Catch 
      Write-Warning -Message "## ERROR## " 
      Write-Warning -Message "## Script could not start ## " 
      Write-Warning $Error[0]
     } # End Catch
    
    Stop-Transcript
于 2021-07-15T11:51:05.003 回答
-2

stop-service -inputobject $(get-service -ComputerName remotePC -Name Spooler)

这失败了,因为您的变量 -ComputerName remotePC需要是变量$remotePC或字符串"remotePC" -Name Spooler(假脱机程序也是如此)

于 2013-05-23T16:34:49.423 回答
-6

据我所知,我现在无法验证,您无法使用 Stop-Service cmdlet 或 .Net 停止远程服务,它不受支持。

是的,它可以工作,但它会停止本地计算机上的服务,而不是远程计算机上的服务。

现在,如果上述情况正确,则无需启用远程处理或 wmi,您可以使用 AT 在远程系统上设置计划作业,该作业在本地运行 Stop-Service。

于 2012-04-27T11:22:16.113 回答