To restart WinRM services

25.9k Views Asked by At

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

1

There are 1 best solutions below

0
On

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