Jump to content

Windows Update integration guide


DaProgrammer
 Share

Recommended Posts

Small semiGuide to integrate updates into a windows installation cd.

1. download updates here : Windows Update Catalog

(which u ask ? i installed a clean windows and did a lot of copy paste from the windows update website to the Windows Update Catalog)

2. learn how to integrate them here : Microsoft : How To

3. use my handy script to make the gob alot faster and automatic.

Global $search, $file, $Count=0, $Count2=0
Global $UpdateFolder = FileSelectFolder("Select a folder containing Windows Updates","") & "\"
Global $WindowsFolder = FileSelectFolder("Select a I386 folder containing a Windows Installation","") & " /quiet"

$search = FileFindFirstFile($UpdateFolder & "*.exe")
While 1
    $file = FileFindNextFile($search)
    If @error Then ExitLoop
    $Count = $Count + 1
WEnd
FileClose($search)

$search = FileFindFirstFile($UpdateFolder & "*.exe")
ProgressOn("Windows Updates Integration","Please wait ...","",-1,-1,16)
While 1
    $file = FileFindNextFile($search)
    If @error Then ExitLoop
    $Count2 = $Count2 + 1
    ProgressSet(Round($Count2*100/$Count),Round($Count2*100/$Count) & "%")
    ShellExecuteWait($UpdateFolder & $file,"/integrate:" & $WindowsFolder)
WEnd
FileClose($search)
ProgressOff()

4. Learn how to burn it all to a new CD here : WinSuperSite

p.s. ignore all the stuff about SP2 and scroll down to the burning the CD.

i integrated 71 (yes thats alot of copy paste) windows updates and made a windows installation "OCTOBER 2007" saves alot of time when formatting.

input and comments are welcome so don't be shy !

Edited by DaProgrammer
Link to comment
Share on other sites

  • 2 weeks later...

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
 Share

  • Recently Browsing   0 members

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