Skip to content
View in the app

A better way to browse. Learn more.

MSFN

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Deploying updates to multiple computers

Featured Replies

Hi.

Just wondering if after downloading all updates using WUD, can the updates be copied to a single folder on other computers for deployment (where XP is already installed)? I regularly need to download updates for machines which have had a destructive recovery done and I don't want to have to use Windows Update everytime, so it would be easier if I have the updates on a USB pen and was able to copy them over to the recovered machine.

Is there an easy way to do this? Where do they go?

Thanks.

If you want to do this by USB-Stick, I would perform like this:

1. create folder "updates" on the stick, copy all updates into folder

2. create a batch file "setup.cmd" like this into that folder:

start/wait KBxxxxxx1.exe /parameter (e.g. /quiet /noreboot)
start/wait KBxxxxxx2.exe /parameter
start/wait KBxxxxxx3.exe /parameter
..................................................
shutdown.exe -r -f -t 15 -c "Rebooting in 15 seconds..."

3. create an "Autorun.inf" in the root of the USB-Drive:

[AutoRun]
open=updates\setup.cmd
icon=

Plugin the USB-Stick to a PC and relax.

  • 3 weeks later...
If you want to do this by USB-Stick, I would perform like this:

1. create folder "updates" on the stick, copy all updates into folder

2. create a batch file "setup.cmd" like this into that folder:

start/wait KBxxxxxx1.exe /parameter (e.g. /quiet /noreboot)
start/wait KBxxxxxx2.exe /parameter
start/wait KBxxxxxx3.exe /parameter
..................................................
shutdown.exe -r -f -t 15 -c "Rebooting in 15 seconds..."

3. create an "Autorun.inf" in the root of the USB-Drive:

[AutoRun]
open=updates\setup.cmd
icon=

Plugin the USB-Stick to a PC and relax.

to shorten the code for "setup.cmd"

TITLE Windows Update Auto-Execute Tool
CLS
@echo off
ECHO.
ECHO Running Windows Hotfix Files
ECHO Please wait...
FOR %%f IN (*.exe) DO "start/wait %%f" /quiet /noreboot
ECHO.
ECHO Update Tool Completed!
ECHO.
pause
shutdown.exe -r -f -t 15 -c "Rebooting in 15 seconds..."

It should take care of the job without typing each one of those KBxxxxxxx.exe files by hand. Right now, Just in Critical Updates, WinXP has 50 or so Hotfixes. I also left from the "pause" from the original code to notify user when done. Remove line if needed to auto-restart.

Good luck.

{credit}

Automating this process via a batch file --MSFN's Unattended Windows Page

http://unattended.msfn.org/unattended.xp/view/web/23/

**Got inspired by this code to edit for this need.

  • 2 weeks later...

I don`t write that list manually, sorry.

I use tools like "Directory Listing", add the pre- and post-syntaxes there, too.

Maybe a better way - you can edit different parameters to hotfixes.

In most cases the CMD by "anonyroot" is easier to use and will work pretty well.

Create an account or sign in to comment

Recently Browsing 0

  • No registered users viewing this page.

Account

Navigation

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.