Computing Staff
  • 3

Batch File To Remotely Install Software

  • 3

I want to install the reader.exe through psexec tool.

when i run ,it is running in remote pc,but mannulay i need to select the options.
1.ok
2.next
3.next
4.next
5.Accept(Alt A)
6. Next
7.next
8.Install
9.finish

can some one help me to create the batch file & run automatically.

psexec.exe -i @ip.txt -u <admin username> -p <password> Msiexec /package “reader.exe”

Subhay

Share

3 Answers

  1. I am not familiar with msi scripts, but I would start with exploration of the msiexec options:
    /quiet
    /qn or /qb
    which are designed for lower levels of interactivity.
    I don’t know how to supply the required parameters however.
    hopefully someone else here will step up, or you can examine
    the msdn documentation.

    • 0
  2. like nbrane said see if you can obtain an administrative installer for reader.exe in the form of an msi file and run
    msisex /i reader.msi /qn completely silent

    • 0