Jump to content

Hotfix additions to a sliptreamed CD


Recommended Posts

When looking at the info for creating a slipstreamed CD with hotfixes at unattended.msfn.org/beginner/hotfix/svcpack.htm, it states;

"All the hotfixes you have downloaded, renamed and copied to the SVCPACK folder should be added under this section in svcpack.inf in numerical order.

When watching the install of hotfixes the last time, I noticed that they did not install in numerical order, is this really necessary?

Also, if the newly created slipstreamed CD will be used to install to a computer with XP already on it (SP'd and hotfixed), can't you just get the list of hotfix numbers from the C:\WINNT uninstall folders?

Thanks

Link to comment
Share on other sites


Also, if the newly created slipstreamed CD will be used to install to a computer with XP already on it (SP'd and hotfixed), can't you just get the list of hotfix numbers from the C:\WINNT uninstall folders?

Thanks

What if they had been installed without uninstall option? You can get the list of installed hotfixes from the registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Updates\

Link to comment
Share on other sites

What if they had been installed without uninstall option? You can get the list of installed hotfixes from the registry HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Updates\

Point well taken, hadn't thought of that possibility, a bit more difficult to "cut and paste" out of tho :} . It'd be a snap to just do a Dos directory listing to a text file of the WINNT folders. Perhaps I can do that while having the registery open just to side-by-side verify.

Link to comment
Share on other sites

Try list.cmd

@echo off
FOR /F "usebackq eol=! tokens=2*" %%i IN (`REG QUERY "HKLM\SOFTWARE\Microsoft\Updates\Windows XP\SP3"`) do for /F "tokens=3* delims=\" %%l IN ("%%i") do echo %%l>>list.txt
exit

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...