Skip to content

Run Remote Processes

Rob Reynolds edited this page Oct 28, 2011 · 7 revisions

Run Remote Processes

Dk can run remote command line operations using WMI. ##Deploy Configuration Have a look here: https://github.com/chucknorris/dropkick/blob/master/product/dropkick.tests/TestObjects/CommandTestDeploy.cs

##Advanced Remote Tasks Some of the tasks need to run remotely. When dropkick detects that the deploy agent is not on the same machine as the deploy target, it will copy the dropkick.remote executables to the deploy target (to C:\temp\dropkick.remote on the remote machine - not yet configurable) and then call WMI to execute the process remotely.

Here is a task that can run remotely: https://github.com/chucknorris/dropkick/blob/master/product/dropkick/Tasks/Security/Certificate/GrantReadCertificatePrivateKeyTask.cs
The remote executor is here: https://github.com/chucknorris/dropkick/blob/master/product/dropkick/Tasks/CommandLine/RemoteDropkickExecutionTask.cs

Clone this wiki locally