To restart WinRM services

13,032

Restart-Service doesn't have a ComputerName parameter - See here for the Microsoft document. The easiest option would be:

Get-Service -ComputerName HOST_NAME -Name WinRM | Restart-Service

Here is an article that goes into more depth

Share:
13,032

Related videos on Youtube

 Prasanth K S
Author by

Prasanth K S

Updated on June 04, 2022

Comments

  •  Prasanth K S
    Prasanth K S almost 2 years

    I was trying to restart winRM services in multiple servers, but am getting below error can I get suggestions.

    Restart-Service -ComputerName (Get-Content G:\12282019\Servers.txt) -ServiceName WinRM
    

    error:

    Restart-Service : A parameter cannot be found that matches parameter name 'ComputerName'. At line:1 char:17 + restart-service -ComputerName (Get-Content G:\12282019\Servers.txt) - ... + ~~~~~~~~~~~~~ + CategoryInfo : InvalidArgument: (:) [Restart-Service], ParameterBindingException + FullyQualifiedErrorId : NamedParameterNotFound,Microsoft.PowerShell.Commands.RestartServiceCommand