Boss Everyware \ Docs \ FAQ \ How to run the deployment package remotely?


 
 

How to run the deployment package remotely?

You may use PsExec to install the logger remotely. PsExec is a well-known free remote execution tool made by Sysinternals, recently acquired by Microsoft.

  1. Download the PsExec tool from http://www.microsoft.com/technet/sysinternals/utilities/PsExec.mspx
  2. Prepare your bedepl.exe deployment package with Logger Configuration.
  3. Log on into account that is allowed to perform remote administration tasks on the target computers.
  4. Use one of the sample command lines to run the deployment package on the target computers (assumed the deployment package is stored in c:\temp at the local computer):
    • To deploy onto the three listed computers:
            psexec -c \\computer1,computer2,computer3 c:\temp\be3dep.exe
    • To install on all the computers in the domain:
            pcexec -c \\* c:\temp\be3dep.exe
    • To install on all the computers that are listed in the file pslist.txt:
            psexec -c @pslist.txt c:\temp\be3dep.exe
  5. Remove the remote logger by running be3rmv.exe the same way:
          psexec -c \\computer1 c:\temp\be3rmv.exe /q

See also:
Deploying the loggers
Uninstalling a deployed logger

-->
 
 

Boss Everyware \ Docs \ FAQ \ How to deploy the logger remotely?