Jump to content

multiple silent installers in one convenient package


cmonkedo

Recommended Posts

I have seen this before but I have not been able to figure out how to create an installer to install several silent install .exe's. If anyone has a tutorial or some info on doing this please let me know?

Link to comment
Share on other sites


  • 5 weeks later...

You could create a simple batch file that is setup to install all the apps silently. Then, if desired, create an sfx archive that's set to run that batch file when opened.

For Example: here' s part of a script that I created to install a number of apps silently. This particular script is designed to run from a cd, however it could easily be edited (by changing the file path) to run from wherever you want.


CLS
@echo off
FOR %%i IN (D E F G H I J K L M N O P Q R S T U V W X Y Z) DO IF EXIST %%i:\CD.txt SET CDROM=%%i:

:: -------------------------------------------------------------------::
TITLE "Apps Install"

ECHO.
ECHO. Installing Windows Taskkill utility (for XP Home)
ECHO.
start "Taskkill" /wait "%CDROM%\07-apps\Windows_taskkill.exe"

ECHO.
ECHO. Installing Mozilla FireFox
ECHO.
start "FireFox" /wait "%CDROM%\07-apps\FireFox_3.5.2\setup.exe /S"

ECHO.
ECHO. Installing Adobe Apps
ECHO.
start "Adobe" /wait "%CDROM%\07-apps\Adobe\Adobe.cmd"

ECHO.
ECHO. Installing CCleaner
ECHO.
start "CCleaner" /wait "%CDROM%\07-apps\CCleaner\ccleaner.cmd"

ECHO.
ECHO. Installing Misc System Utilities
ECHO.
start "sysutil1" /wait "%CDROM%\07-apps\System_Utilities_1.exe"
start "sysutil2"/wait "%CDROM%\07-apps\System_Utilities_2.exe"

ECHO.
ECHO. Applying OEM Branding
ECHO.
start "oem" /wait "%CDROM%\07-apps\OEM_Branding.exe"

ECHO.
ECHO. Running Final System Cleanup
ECHO.
start "cleanup" /wait "%CDROM%\08-cleanup\80-pick_os.cmd"

ECHO.
ECHO Restarting the PC in 10 seconds...
ECHO.
shutdown.exe -r -f -t 10 -c "Windows XP will now restart in 10 seconds!"

EXIT

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