Reputation: 2959
Why doesn't this work? I want to copy the file to the remote machine and run it.
psexec \\epo-test -c C:\temp\Avmr64.msi /Silent
Heres the error I get
PsExec could not start Avmr64.msi on epo-test: The system cannot find the file specified.
I am trying to copy Avmr64.msi over to epo-test and run a silent install but I get this PsExec could not start Avmr64.msi on epo-test: The system cannot find the file specified.
Any help would be great.
Upvotes: 2
Views: 8501
Reputation: 2959
For those that are interested heres the answer
psexec -u domain\username \\system -s -i -d msiexec.exe /i "\\share\folder\msifile" /qb
Upvotes: 2
Reputation: 301597
Try the below ( untested ):
psexec \\epo-test -c C:\temp\Avmr64.msi "msiexec /i /passive Avmr64.msi"
http://forum.sysinternals.com/topic2542.html
Upvotes: 0
Reputation: 238
I think what you're trying to run here is "/Silent". Try instead:
psexec \\epo-test -c C:\temp\Avmr64.msi "C:\temp\Avmr64.msi /Silent"
or something in that fashion.
Upvotes: 1