# 获取服务信息
PS C:\Users\Administrator> Get-Service win*

Status   Name               DisplayName
------   ----               -----------
Stopped  WinHttpAutoProx... WinHTTP Web Proxy Auto-Discovery Se...
Running  Winmgmt            Windows Management Instrumentation
Running  WinRM              Windows Remote Management (WS-Manag...
# 停止服务
PS C:\Users\Administrator> Stop-Service WinRM
PS C:\Users\Administrator> Get-Service WinRM

Status   Name               DisplayName
------   ----               -----------
Stopped  WinRM              Windows Remote Management (WS-Manag...
# 重启服务
PS C:\Users\Administrator> Restart-Service WinRM
PS C:\Users\Administrator> Get-Service WinRM

Status   Name               DisplayName
------   ----               -----------
Running  WinRM              Windows Remote Management (WS-Manag...

 

相关文章:

  • 2022-12-23
  • 2021-05-30
  • 2021-11-21
  • 2022-01-01
  • 2021-12-27
  • 2022-02-09
猜你喜欢
  • 2022-12-23
  • 2022-02-05
  • 2021-12-28
  • 2021-12-06
相关资源
相似解决方案