我已经看到很多脚本用于在列表中手动停止/启动服务,但是如何以编程方式生成该列表 - 自动服务。我想编写一些重新启动的脚本,并且正在寻找一种方法来验证事实上所有事情都是正确地启动了任何应该的服务。
答案 0 :(得分:11)
Get-Service
返回不公开此信息的System.ServiceProcess.ServiceController
个对象。因此,您应该将WMI用于此类任务:Get-WmiObject Win32_Service
。示例显示所需的StartMode
并将输出格式化为Windows控制面板:
Get-WmiObject Win32_Service |
Format-Table -AutoSize @(
'Name'
'DisplayName'
@{ Expression = 'State'; Width = 9 }
@{ Expression = 'StartMode'; Width = 9 }
'StartName'
)
您对自动但未运行的服务感兴趣:
# get Auto that not Running:
Get-WmiObject Win32_Service |
Where-Object { $_.StartMode -eq 'Auto' -and $_.State -ne 'Running' } |
# process them; in this example we just show them:
Format-Table -AutoSize @(
'Name'
'DisplayName'
@{ Expression = 'State'; Width = 9 }
@{ Expression = 'StartMode'; Width = 9 }
'StartName'
)