F
fjg
I have written a batch file to run at client startup to delete an old
program and add the new version:
@ECHO ON
:: INITIALIZE GLOBAL VARIABLES
CALL setup/initVariables
:: SILENT UNINSTALLATION FOR PREVIOUS VERSION
CALL setup/silentUninstall
:: SILENT INSTALLATION
CALL setup/silentInstall
PAUSE
When running the batch file everything executes except the the silent
install at the end. I keep getting the message: Please go to the
Control Panel to install and configure system components.
As you can see I divided up the uninstallation and installation process
into 2 seperate batch files. I can run both of these batch files
individually without any problem, however I cannot run them from a
single batch file (from the code above).
I am logged in as the admin so I am sure this shouldn't be a file
permission or security issue. Any ideas?
Thanks in advance!
program and add the new version:
@ECHO ON
:: INITIALIZE GLOBAL VARIABLES
CALL setup/initVariables
:: SILENT UNINSTALLATION FOR PREVIOUS VERSION
CALL setup/silentUninstall
:: SILENT INSTALLATION
CALL setup/silentInstall
PAUSE
When running the batch file everything executes except the the silent
install at the end. I keep getting the message: Please go to the
Control Panel to install and configure system components.
As you can see I divided up the uninstallation and installation process
into 2 seperate batch files. I can run both of these batch files
individually without any problem, however I cannot run them from a
single batch file (from the code above).
I am logged in as the admin so I am sure this shouldn't be a file
permission or security issue. Any ideas?
Thanks in advance!