That's manual updates. Can't you connect it to the net just to get all of the updates? Don't you no anyone with the Internet that could do it for you? Should only take about an hour or so from SP2.
Well I could put the PC on the net connection that I'm using now, but I'd have to install and set up a firewall, modem drivers etc, I'm also a bit nervous about putting an unpatched PC on the net for that amount of time - I've done that previously and been hit with the Blaster worm, surely there must be a way of doing it without connecting to the net?
Ah right thanks, I'll try this:
http://www.microsoft.com/downloads/...A8-5E76-401F-BE08-1E1555D4F3D4&displaylang=en
I just write a batch file calling each kb file with /quiet /norestart switches so that I can chain them together and do one reboot...
FOR %%F IN ("%1\*.msu") DO (
echo Processing: %%F...
start /wait wusa "%%F" /quiet /norestart
)