Quantcast
Channel: server – Refactoring Self
Viewing all articles
Browse latest Browse all 11

PowerGUI – Powershell Remote Installed Hotfixes & Patches

$
0
0

Here is a Node Script to get the installed patches or hotfixes on a remote computer:

[System.Reflection.Assembly]::LoadWithPartialName(‘Microsoft.VisualBasic’) | Out-Null
$name = [Microsoft.VisualBasic.Interaction]::Inputbox(“Enter the IP or Name of the server:”)
Get-WmiObject Win32_QuickFixEngineering -ComputerName “$($name)” | Where-Object{$_.HotFixID -ne “File 1″} | Write-Output

I also have a system monitor to keep track of disk space and CPU/Memory Usage…Click here!

If you found this useful, subscribe.



Viewing all articles
Browse latest Browse all 11

Trending Articles