Genius!! I so missed that, thanks.

This is what I have so far

 Code:
;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

;Checking to see if Install folder exists, if it dosent then it is created.

IF 0=EXIST("C:\install")
       MD "C:\install"
ENDIF

;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

;Installing Programs, the name of each program is writen to a folder as a text file, if the file does not esxist then the program will be installed, if the file exists then the program will not be installed. You can include version numbers in the file name of each program so if you need to you can upgrade.

;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

;Installing Adobe Reader 9.0

IF 0=EXIST("C:\install\AdobeReader9.0.txt")
	Open(1, "C:\install\AdobeReader9.0.txt", 1)
	RUN "\\stingray\share\AdbeRdr90_en_US.exe /update-no /sAll /rs /l /msi"/qb-! /norestart ALLUSERS=1 EULA_ACCEPT=YES SUPPRESS_APP_LAUNCH=YES""
ENDIF

;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++


Unfortunately using RUN wont let me use install switches, is there another method that will let me use switches?


Edited by chipped (2008-12-29 01:56 AM)