USB SAFELY REMOVEThe program installation file (usbsafelyremovesetup.exe) supports the following command line parameters:
/SILENT, /VERYSILENT
Makes setup process to be silent or very silent. When setup is silent the wizard and the background window are not displayed but the installation progress window is displayed. When a setup is very silent the installation progress window is not displayed.
/LOADINF="filename"
Instructs installator to load the installation settings from the specified file after having checked the command line. This file can be prepared using the '/SAVEINF=' command as explained below.
Don't forget to use quotes if the filename contains spaces.
/SAVEINF="filename"
Instructs installator to save installation settings to the specified file.
Don't forget to use quotes if the filename contains spaces.
Step-by-step instruction on creating of auto-installation scripts
1. Make the installer configuration - install USB Safely Remove to your own computer calling installer with this command line:
usbsafelyremovesetup.exe /SAVEINF="usr_setup_cfg.ini"
Calling the installer this way will save all installation options that you changed during the installation to "usr_setup_cfg.ini" file.
2. Make the program options and the license key preset - run program and change any program options. Then run SaveSettings.bat batch file from USB Safely Remove folder. It will create USBSafelyRemoveSettings.reg - program options dump file (it also contains license key information).
3. Make the installation package - place the setup file (usbsafelyremovesetup.exe), setup config file (usr_setup_cfg.ini) and program options file (USBSafelyRemoveSettings.reg) to a separated folder. Then create here a batch file that will run an installation:
usr_auto_install.cmd
:: #############################################
:: USB Safely Remove auto installer
:: #############################################
usbsafelyremovesetup.exe /LOADINF="usr_setup_cfg.ini"
regedit /s USBSafelyRemoveSettings.reg
4. That's all. Now you can write these files to a CD or USB Stick, or deploy them to a remote computer to install the program without user's participation. In order to install the program you need to execute only usr_auto_install.cmd batch-file!
Alternatively the automated silent installer found in the below link can be used.
USB Safely Remove automated silent installer