;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
;Checking to see if Install folder exists, if it dosent then it is created.
IF NOT 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 NOT 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
;+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++