我正在为我管理的一些服务器创建报告。
我在报告中有很多其他信息,我已经得到了我想要的东西,但这已经困扰了我一段时间 - 无论我做什么和在哪里搜索,我都无法做到解决问题。
以下代码检查我的7台服务器是否有以“Office Comm”开头的任何已停止的服务,并显示已停止在HTML表中的所有服务,但它只会输出任何已停止服务的FIRST而不是整个列表。 。我已经搜索并重新编码并尝试了不同的方法,但无法解决....任何帮助都会非常感激!
Write-Host "Getting stopped services snapshot...`n"
$StoppedServicesReport = @()
$StoppedServices = Get-WmiObject -Class Win32_Service -ComputerName $Computers `
-Filter "displayname like 'Office Comm%' AND state='Stopped'"
foreach ($StoppedService in $StoppedServices) {
$stoppedRow = New-Object -Type PSObject -Property @{
Server = $StoppedService.SystemName
Name = $StoppedService.DisplayName
Status = $StoppedService.State
}
$StoppedServiceReport = $StoppedServiceReport + $stoppedRow
}
$StoppedServiceReport = $StoppedServiceReport | ConvertTo-Html -Fragment
答案 0 :(得分:1)
这是另一种方法:
$computers | Foreach-Object {
$computerName = $_
Get-Service -ComputerName $computerName -DisplayName "Office Comm*" |
Where-Object { $_.Status -eq "Stopped" } |
Select-Object @{ n = "Server"; e = { $computerName } }, @{ n = "Name"; e = { $_.DisplayName } }, Status
} | ConvertTo-Html -Fragment
请参阅 PetSerAl 关于原始错误的评论。