Wscript.Echo "Hotfix report date: " & Now & vbCrLf strComputer = "." ' use "." for local computer Const HKLM = &H80000002 'On Error Resume Next Set objWMIService = GetObject("winmgmts:" _ & "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2") Set colSettings = objWMIService.ExecQuery _ ("Select * from Win32_OperatingSystem") ' get general info about the OS ' Caption value for different OS: ' Microsoft...
Labels
Active Directory
(59)
Apache
(7)
Backup
(6)
Citrix VDI in box
(9)
Cloud Computing
(5)
Clustering
(23)
DAS
(5)
Data Center
(6)
Devops
(2)
DFS
(2)
DNS
(5)
DRBD (Distributed Replicated Block Device)
(1)
Exchange
(5)
file services
(2)
flow charts
(9)
Hardware
(15)
Hyper-V
(2)
IIS
(11)
Jboss
(2)
Linux
(145)
MangoDB
(4)
Migrations
(1)
MYSQL
(30)
Netscalar
(3)
Networking
(4)
Oracle
(8)
Performance Engineering
(2)
PostgreSQL
(12)
Powershell
(8)
Project Management
(11)
Puppet
(2)
PVS
(1)
SALT
(1)
SAN
(15)
Scripting
(13)
SendMail
(2)
Sharepoint
(6)
SMS
(1)
SQL
(16)
SSL
(5)
Symantec AntiVirus
(7)
tomcat
(13)
Tools
(17)
VBscripting
(5)
Vmware
(30)
Windows
(199)
windows 10
(4)
XENAPP
(85)
XENDESKTOP
(17)
XENSERVER
(2)
This document applies to all windows servers and clients * for checking the update Go to start > CMD > run the following command " wmic qfe list" ** gives you the complete list of installed update on the servers ******************************************************************************* If you need a script then find it below ******************************************************************************* @echo on wmic /node: Server name qfe GET description,FixComments,hotfixid,installedby,installedon > %temp%\UpdateList.txt notepad %temp%\UpdateList.txt...
'--------------------8<---------------------- ' Script that reports installed updates that are ' installed with Windows Update v5 technology ' ' Result will be written to %temp%\UpdateHistory.txt ' and then launched in Notepad ' ' Author: Aslam Latheef Shaik ' Date 2012-08-11 ' Option Explicit Const OverwriteIfExist = -1 Const OpenAsASCII = 0 Dim oWU, iTHCount, colUpdate, oUpdate, sStatus, iTotal Dim iSuccess, iFailed, iAborted, iUnknown,...