daddydave Posted January 1, 2007 Posted January 1, 2007 (edited) I am trying to make an application addon (using HFSLIP, also nLite compatible I think) that installs WUD and installs some common update lists. Here is what I have so far:@echo offstart /wait WUD224B868Setup.exe /Scopy windows-2000-professional-x86-enu.ulz "%ProgramFiles%\Windows Updates Downloader" >nulcopy windows-xp-x86-enu.ulz "%ProgramFiles%\Windows Updates Downloader" >nulcopy office-2003-x86-enu.ulz "%ProgramFiles%\Windows Updates Downloader" >nulfor %%u in ("%ProgramFiles%\Windows Updates Downloader\*.ulz") do start "" /wait "%ProgramFiles%\Windows Updates Downloader\WUD.exe" -install "%%u"For this to work I need to suppress the "Compressed UL File Installed" message. Any way to do this? I read the Third Party Integration sticky but I don't need to actually download the updates themselves. Edited January 1, 2007 by daddydave
jcarle Posted January 2, 2007 Posted January 2, 2007 If you're going to include them in the package, simply extract the ULs from the ULZs and copy the uncompressed ULs to the program directory.A ULZ is simply the a UL file that is compressed using WinZip algorythms. You can extract the ULs from the ULZs using WinZip, WinRAR or 7zip. All WUD does is associate itself to the ULZ extension and automatically extracts the UL and copies it to it's program directory.
daddydave Posted January 2, 2007 Author Posted January 2, 2007 (edited) Thanks for the info and for a great program!! Edited January 2, 2007 by daddydave
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