Author: arulprakash88
Subject: msiexec using Psexec in remote computer
Posted: 27 September 2014 at 8:44am
I'm trying to install a msi package in a remote computer. I tried searching for my issue in the forum but couldn't find it.I'm invoking psexec using a java program which uses "ProcessBuilder" to build the command and start the process using "Process" class
Subject: msiexec using Psexec in remote computer
Posted: 27 September 2014 at 8:44am
I'm trying to install a msi package in a remote computer. I tried searching for my issue in the forum but couldn't find it.I'm invoking psexec using a java program which uses "ProcessBuilder" to build the command and start the process using "Process" class
this is how my sample output looks like
Invoking command : C:\Staging\PSTools\psexec.exe \\10.31.67.178 /ACCEPTEULA -u abc.com\administrator -p 123$ msiexec /qn /i "C:\Staging\123.msi" /lv "C:\Staging\installLog.txt" |
Now, when I run the same command from a cmd prompt, the installation is successful. I tried removing quotes also, but didn't work.