ner Posted March 10, 2005 Posted March 10, 2005 Could someone help me out please?I am looking for a way to install all the Post SP2 hotfixes using say a bat file, i have found many ways to add these updates to a windows XP cd, but the problem i have is that the only CD's i have are the Toshiba Recovery sets, that are locked to bios details.Does anyone know if i can create a bat/cmd file that will install all the hot fixes available, and .net framework sp1.1 and media player......
brian873 Posted March 10, 2005 Posted March 10, 2005 http://www.msfn.org/board/index.php?showtopic=34466&hl=this might help youhail hail
OldMan Posted March 10, 2005 Posted March 10, 2005 Here is my batch file for Pre-SP5 fixes on W2K. Should be very similar on XP.Remember the packaged style (type 2) hotfixes have the /Q:A /R:N switch while the cmd style hotfixes (type 1) use the /passive /norestart switch (for W2K).CLS @echo off TITLE Pre-SP5 Hotfix installationECHO Microsoft Hotfixes, patches, and updates are being installed, please wait...ECHO.ECHO Installing MS Java Virtual Machinestart /wait F:\Hotfixes_W2K\msjavx86.exe /Q:A /R:NECHO.ECHO Installing MS Java virtual Machine Updatestart /wait F:\Hotfixes_W2K\msjavwu.exe /Q:A /R:NECHO.ECHO Installing Q823353, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q823353.exe /Q:A /R:NECHO.ECHO Installing Q833989, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q833989.exe /Q:A /R:NECHO. ECHO Installing Q839643, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q839643.exe /passive /norestartECHO.ECHO Installing Q839645, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q839645.exe /passive /norestartECHO.ECHO Installing Q840315, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q840315.exe /passive /norestartECHO.ECHO Installing Q840987, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q840987.exe /passive /norestartECHO.ECHO Installing Q841356, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q841356.exe /passive /norestartECHO.ECHO Installing Q841533, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q841533.exe /passive /norestartECHO.ECHO Installing Q841872, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q841872.exe /passive /norestartECHO.ECHO Installing Q841873, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q841873.exe /passive /norestartECHO.ECHO Installing Q842526, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q842526.exe /passive /norestartECHO.ECHO Installing Q867282, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q867282.exe /passive /norestartECHO.ECHO Installing Q870669, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q870669.exe /Q:A /R:NECHO.ECHO Installing Q871250, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q871250.exe /passive /norestartECHO.ECHO Installing Q873333, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q873333.exe /passive /norestartECHO.ECHO Installing Q873339, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q873339.exe /passive /norestartECHO.ECHO Installing Q873374, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q873374.exe /Q:A /R:NECHO.ECHO Installing Q885250, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q885250.exe /passive /norestartECHO.ECHO Installing Q885492, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q885492.exe /passive /norestartECHO.ECHO Installing Q885835, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q885835.exe /passive /norestartECHO.ECHO Installing Q885836, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q885836.exe /passive /norestartECHO.ECHO Installing Q888113, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q888113.exe /passive /norestartECHO.ECHO Installing Q890047, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q890047.exe /passive /norestartECHO.ECHO Installing Q890175, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q890175.exe /passive /norestartECHO.ECHO Installing Q891711, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q891711.exe /passive /norestartECHO.ECHO Installing Q891781, Windows Security Updatestart /wait F:\Hotfixes_W2K\Q891781.exe /passive /norestartECHO.ECHO Installing Q867460, NetFramework 1.1 SP1 Updatestart /wait F:\Hotfixes_W2K\Q867460.exe /qn ECHO.ECHO Installing Q886903, NetFramework 1.1 SP1 Updatestart /wait F:\Hotfixes_W2K\Q886903.exe /qnECHO.ECHO Running QChainstart /wait F:\Hotfixes_W2K\qchain.exeEXITSee the following link:http://unattended.msfn.org/beginner/hotfix/svcpack.htmHope this helps....The Old DudeHotfixes.txt
JPamplin Posted March 10, 2005 Posted March 10, 2005 You can use the simple script for post-SP2 hotfixes I detail here:http://www.msfn.org/board/index.php?showtopic=39465&hl=JP
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now