Jump to content

Recommended Posts

Posted

Having found the manual method (doing each hotfix one at a time in the Run box) very slow, I'd like to learn how to do the automated method explained in Step 3 of the beginner's section of the Unattended Guide.

I note the batch file that was supplied in the Guide for this purpose, and that it is to be placed in the same folder as the hotfixes.

My question is - how do I start it going, that is get the batch file to do its job?

Thankyou!

Malcolm


  • 4 weeks later...
Posted (edited)

Try change this FOR %%f IN (*.exe) DO "%%f" /Integrate:C:\XPCD to this FOR %%f IN (*.exe) DO "%%f" /passive /Integrate:C:\XPCD.

But I think better way is to slipstream hotfixes in hfslip. What you only need to do is to put all hotfixes in one folder and run program. Every hotfix will be slipstreamed automatically.

Edited by grzesiek
Posted

change

FOR %%f IN (*.exe) DO "%%f" /Integrate:C:\XPCD

to silent no progress bar:

FOR %%f IN (*.exe) DO "%%f" /Integrate:C:\XPCD /q

or silent with progress bar:

FOR %%f IN (*.exe) DO "%%f" /Integrate:C:\XPCD /p

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...