If your not using a domain, then the batch file is easy. @Echo Off Echo =================================== Echo = This batch file will install = Echo = Windows XP Hotfixes and updates = Echo = ================================= Echo. Echo If you wish to exit, press Ctrl+C now. Echo. PAUSE net use v: \\server\hotfixes V: Echo. Installing Q123456 Hotfix Echo. Please Wait... start /wait q123456.exe /switches C: net use v: /delete Explanation: The first few lines are straightforward. Just telling the user whats going to happen. PAUSE This command makes the Press any key to continue... prompt appear. Simply a precaution incase you accadently double click the batch, or dont wish to continue for whatever reason. net use v: \\server\hotfixes this line maps a drive (in this case v:) to a shared folder on the server. (ie hotfixes directory, on the server named, funny enough "server") This mapped drive now acts like any normal drive on the local computer. you can make directorys, remove files etc on the servers directory, from your local computer if you wish (and if server permissions allow) v: switches to the V: From then on, its just a matter of executing each hotfix with the correct switches. Exactly the same as the batch file made for the CD. At the end you switch back to the C: and remove the mapped v: Just make the batch, whack it on a floppy, take it around to each of your computers and your away. If you are using a domain, let me know, ill explain how to login to the domain etc. Hope it helps!