Jump to content

Howto batch install some hotfix?


tedaz

Recommended Posts

I had already downloaded some hotfix by Windows Update Downloader, but howto batch install them?

I found some discuss about "Qchain.exe", but I don't know howto do it.

Does Windows Update Downloader can batch install hotfix?

Thanks.

Link to comment
Share on other sites


this is a sample of a batch file i use to install the updates on computers

@echo off
echo Upto date as of 06/02/07
IE7-KB929969-WindowsXP-x86-enu.exe /passive /norestart
echo 1 of 63 done
IE7-WindowsXP-x86-enu.exe /passive /norestart
echo 2 of 63 done
msxml4-KB927978-enu.exe /passive /norestart
echo 3 of 63 done
msxml6-KB927977-enu-x86.exe /passive /norestart
echo 4 of 63 done
WindowsXP-KB873339-x86-ENU.exe /passive /norestart
echo 5 of 63 done

its that simple, this will go through and sequentially install all of the hotfixes in the list for you. once thats done you can have the script reboot the computer for you as well.

Link to comment
Share on other sites

you can use the following code inside a cmd file and store it in the folder where ur hotfixes resides and simply run it. no matter how many hotfixes are there, everything would get installed.

TITLE Hotfixes Install

CLS

ECHO.

ECHO installing hotfixes

ECHO Please wait...

FOR %%f IN (*.exe) DO "%%f" /passive /norestart

ECHO.

ECHO installation Completed!

ECHO.

pause

EXIT

Link to comment
Share on other sites

you can use the following code inside a cmd file and store it in the folder where ur hotfixes resides and simply run it. no matter how many hotfixes are there, everything would get installed.

TITLE Hotfixes Install

CLS

ECHO.

ECHO installing hotfixes

ECHO Please wait...

FOR %%f IN (*.exe) DO "%%f" /passive /norestart

ECHO.

ECHO installation Completed!

ECHO.

pause

EXIT

Thanks, I will try it later.

Link to comment
Share on other sites

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
  • Recently Browsing   0 members

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