List of hotfixes
hi all,
i've got windows 2003 server based on secured zone. server cannot comunicate internet.
the administrator ask me check server. wants know if patchs installed, if not wich missing.
i'm trying have list of patchs published after sp2 don't find it.
how can check serveur ?
thank you,
olivier
i've got windows 2003 server based on secured zone. server cannot comunicate internet.
the administrator ask me check server. wants know if patchs installed, if not wich missing.
i'm trying have list of patchs published after sp2 don't find it.
how can check serveur ?
thank you,
olivier
hello oliver
you may need basic script accomplish this.. try this: copy , saveas .vbs , run
strcomputer = "."
set objwmiservice = getobject("winmgmts:" _
& "{impersonationlevel=impersonate}!\\" & strcomputer & "\root\cimv2")
set colquickfixes = objwmiservice.execquery _
("select * from win32_quickfixengineering")
for each objquickfix in colquickfixes
wscript.echo "computer: " & objquickfix.csname
wscript.echo "description: " & objquickfix.description
wscript.echo "hot fix id: " & objquickfix.hotfixid
wscript.echo "installation date: " & objquickfix.installdate
wscript.echo "installed by: " & objquickfix.installedby
next
i go from
http://www.vbsedit.com/scripts/srvpacks/scr_1392.asp
isaac oben mcitp:ea, mcse
you may need basic script accomplish this.. try this: copy , saveas .vbs , run
strcomputer = "."
set objwmiservice = getobject("winmgmts:" _
& "{impersonationlevel=impersonate}!\\" & strcomputer & "\root\cimv2")
set colquickfixes = objwmiservice.execquery _
("select * from win32_quickfixengineering")
for each objquickfix in colquickfixes
wscript.echo "computer: " & objquickfix.csname
wscript.echo "description: " & objquickfix.description
wscript.echo "hot fix id: " & objquickfix.hotfixid
wscript.echo "installation date: " & objquickfix.installdate
wscript.echo "installed by: " & objquickfix.installedby
next
i go from
http://www.vbsedit.com/scripts/srvpacks/scr_1392.asp
isaac oben mcitp:ea, mcse
Windows Server > Security
Comments
Post a Comment