Install It All
This tool that I made makes it easy to install multiple exe files from within the same directory. Basically all you have to do is caLL the tool from a script file with 2 parameters. 1st Parameter is the path to the directory you want installed and the 2nd Parameter is the switches you want to use.
For instance... let's say you have a directory called: HOTFIXES. Inside this directory you have downloaded a bunch of hotfixes you want to autoinstall to your system. (Make sure all of the hotfixes use the same switches
You would put this in your script:
CODE
d:\InstallItAll.exe "d:\HOTFIXES" "/q /n /z"
Once this has been executed all of the hotfixes will be installed that are in that folder.
You can use this tool for any type of exe file. For instance if you have a bunch of exe files you've made with autoit (which do not need switches) you would just put the path for parameter 1 and "" for parameter 2.
You could even use it to integrate multiple hotfixes into your XP disk by using "/integrate /quiet" for parameter 2.
Let me know how well it works for you. I may make the tool better down the road.
You can download it HERE
