But since nothing is perfect in this world, updates could
crash the system or worse create problems that will puzzle the IT guy.
Different hardwares, different third party softwares installed or custom applications, install on a server or computer. That some updates will work perfectly on other systems but may create issues on other systems.
Different hardwares, different third party softwares installed or custom applications, install on a server or computer. That some updates will work perfectly on other systems but may create issues on other systems.
Troubleshooting the whole system trying to figure out what
could be the culprit, but on the end messing up the whole system.
Bottom line, some updates may introduce some issues or mess up the system.
If you need PowerShell to list all the updates, here is a simple code snippet to list all the KB Hotfix ID updates installed on the system.
$xUpdate =Get-WmiObject -Class WIN32_QuickFixEngineering | select HotFixID
foreach ($LineUpdatex in $xxUpdate) {
write-host $LineUpdatex `n
}
======================================
Sample output will be like this:
@{HotFixID=KB3008627}
@{HotFixID=KB3010788}
@{HotFixID=KB3011780}
@{HotFixID=KB958488}
@{HotFixID=KB976902}
@{HotFixID=KB982018}
Get-Hotfix cmdlet is quite handy also.
Check the examples on Technet link: http://technet.microsoft.com/en-us/library/dd315358.aspx
Cheers!! Hope it helps!!!
================================
Free Android App with No Ads.
Heaven's Dew Fall
https://play.google.com/store/apps/details?id=soulrefresh.beautiful.prayer
Android Catholic Rosary App - Guide
Comments
Post a Comment