Quantcast
Channel: Windows Server – Yusuf Ozturk
Viewing all articles
Browse latest Browse all 127

Check HP WBEM status from remote servers via PowerShell

$
0
0
You can type your servers into C:\Servers.txt and check WBEM status. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 $Servers = Get-Content C:\Servers.txt foreach ($Server in $Servers) { try { $TestWBEM = (Get-Item "\\$Server\C$\Program Files\HPWBEM\Tools\HPWbemTestEvent.exe" -ErrorAction SilentlyContinue).Exists } catch { }   if ($TestWBEM -eq $True) { […]

Viewing all articles
Browse latest Browse all 127

Trending Articles