Scripting in K1000
I'm trying to run a simple script to insta .msi application and gets an error. See attached screen shots, any advice, suggestions will be appreciated.
2 Comments
[ + ] Show comments
-
Thanks, Chucksteel the script works now. - Odiasempa 7 years ago
-
Thanks, rad33k for your input the script works now. - Odiasempa 7 years ago
Answers (1)
Please log in to answer
Posted by:
chucksteel
7 years ago
You can't call an MSI file by itself. You need to run msiexec.
Comments:
-
Besides that, path to the log file is missing in the OPs command line/script.
@Odiasempa: If you are using /L switch then you need to provide a path to the log file eg.
Msiexec /i "<Path_to_the_MSI>" /QN /L*V "%TEMP%\MSI_INSTALL.LOG" - rad33k 7 years ago