| |
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.
-
Download the PsExec tool from http://www.microsoft.com/technet/sysinternals/utilities/PsExec.mspx
-
Prepare your bedepl.exe deployment package with Logger Configuration.
-
Log on into account that is allowed to perform remote administration tasks on the target computers.
-
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
-
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
-->
|
|