1

Basically I want to create a file which will automatically install a bunch of files without having to manually install each of them (i.e. Flash, Adobe Reader, MS Office, etc.).

I'm guessing the easiest way to do this would be to create a batch file but I don't have much experience with the scripting side of things.

I remember seeing a website at one point that would do this sort of thing for you but I'm not sure if that could be used offline or not.

Thanks in advance...just looking to make things a bit more streamlined on new builds without the costs associated with imaging software.

Thanks!

John Gardeniers
  • 27,458
  • 12
  • 55
  • 109
Windows Ninja
  • 2,586
  • 19
  • 46
  • 70

1 Answers1

1

I just write batch files, usually each line looks something like:
msiexec msifile.msi /q TRANSFORMS=transform.mst

You can use Orca to create MST files, it takes a bit of getting used to though (MSTs change the default properties of the MSI installer file). You can get Orca from MS in the Win SDK. MS has documentation for it. But you'll find the best information at AppDeploy.com.

If it's not an MSI file, commonly you can type setup.exe /? to get the command line switches. Also the /q and /a are pretty widely used for 'quiet' or 'automated' installs.

Chris S
  • 77,945
  • 11
  • 124
  • 216