I've been asked to write a script that automatically downloads, installs and runs a .exe file.
My programming knowledge is very limited, but I know what I would like to happen and was hoping someone can point me in the right direction.
I want this to run on Windows, and make a check for 32/64 bit and then download the corresponding file from a URL. I assume an IF statement can handle this?
The application is in an Installer package, so was hoping I can run the install with a parameter that can handle it unattended "/qn" or "installer.exe --mode unattended" for example?
The last part of the installer then asks to run the program so should be handled by the above, correct?
I'd rather do this myself and understand each step than simply copying and pasting. Any help would be great!
My programming knowledge is very limited, but I know what I would like to happen and was hoping someone can point me in the right direction.
I want this to run on Windows, and make a check for 32/64 bit and then download the corresponding file from a URL. I assume an IF statement can handle this?
The application is in an Installer package, so was hoping I can run the install with a parameter that can handle it unattended "/qn" or "installer.exe --mode unattended" for example?
The last part of the installer then asks to run the program so should be handled by the above, correct?
I'd rather do this myself and understand each step than simply copying and pasting. Any help would be great!