user770022
user770022

Reputation: 2959

Why doesn't this work

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

Answers (3)

user770022
user770022

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

manojlds
manojlds

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

King_DuckZ
King_DuckZ

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

Related Questions