zorg2000k Posted May 19, 2006 Posted May 19, 2006 Hi,Just wondering if anyone has a complete list of hotfixes and patches for a machine that has WIN XP with no service pack.What I want to do is have a cd / dvd with SP2 and all hotfixes to run from this disc as I have about 300 laptop work machine's coming in for a hardware update and would like to patch all machine's at the same time.Any help would be great CheersStuart
RyanVM Posted May 19, 2006 Posted May 19, 2006 I don't know of a specific distribution, but you could always use Hulk's thread as a guide for what fixes you need and create such a CD yourself with a simple batch file.
oioldman Posted May 19, 2006 Posted May 19, 2006 or you could install xpsp2 ONLY with NO hotfixes installed then run windowsupdate which will show you what is needed and then repeat until none needed and bingo one list generated and then you can download and install how you wish
Bezalel Posted May 19, 2006 Posted May 19, 2006 My suggestion would be to setup a WSUS server and configure each machine to check in every hour. Then install the updates until the server says the machine is up to date.
IcemanND Posted May 19, 2006 Posted May 19, 2006 check here, it has a csv file in it that is up to date as of april, at least for the critical updates.
ner Posted May 20, 2006 Posted May 20, 2006 Like RyanVM said i used Hulk's thread and created a cmd file and i just update it each month, here it is for your reference. Hotfix__Installation.CMD
zorg2000k Posted May 20, 2006 Author Posted May 20, 2006 (edited) Like RyanVM said i used Hulk's thread and created a cmd file and i just update it each month, here it is for your reference. Hi This is exactly what I was looking for. Many thanks Stuart Edited May 20, 2006 by zorg2000k
FrankE9999 Posted May 20, 2006 Posted May 20, 2006 The script above should work but I would recomend adding some error checking. First verify that the system is running Windows XP. Next verify that service pack 2 is installed. Finally install missing hot fixes. @echo offrem Verify system is running windows XPreg.exe query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v ProductName | find "Microsoft Windows XP" > nul: if errorlevel 1 ( echo **** System not running Windows XP **** goto :EOF)rem look for service pack 2reg.exe query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v CSDVersion | find "Service Pack 2" > nul:if errorlevel 1 ( echo **** Installing Service Pack 2 **** rem add code to install service pack 2 goto :EOF)rem look for missing hot fix KB901017reg.exe query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\HotFix\KB901017" /v Installed >nul: 2>&1if errorlevel 1 ( echo Installing MS05-048 KB901017 rem add code to install missing hot fix)Note: In some cases you may need to check the file version to determine if a patch is installed. You could write a vbs ot js script to do this or use the filever command which is part of the Windows XP Service Pack 2 Support Tools.
alsiladka Posted May 21, 2006 Posted May 21, 2006 I think you have found out a probable answer to your query. Another one could be , Install SP2 on each machine , and on the Same CD , Get Autopacther.I think there is a switch ot make it run Automated. you can think about it!!
ner Posted June 18, 2006 Posted June 18, 2006 (edited) @ zorg2000kHere is an updated version with june hotfixes includedHotfix__Installation.CMD Edited June 18, 2006 by ner
Synapse Posted June 18, 2006 Posted June 18, 2006 hey guys, any easy way of getting all the files from the .cmd files above, i really don't wanna download each and every one of them manually.*hmmm thinks of the possiblility of a wget script to get the latest "critical" updates.....*
ner Posted June 18, 2006 Posted June 18, 2006 @ Bi0haZarD Pm Message me with your address and i will post you a cd with them on for you.
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now