Configuring SSH as a service on Windows Server for Remote Command Executions from another Windows Server/System without Password prompt and/or using public/private keys Authentication
Primarily involves: Install on the system on which you want to run the commands remotely Installing CygWin Within Cygwin, install SSH complete Then Run “ssh-host-config” Choose “Should privilege separation be used” yes Start `net start sshd’ Install on system from which you want to do a remote command invocation: Installing CygWin Within Cygwin, install SSH complete ssh-keygen -t rsa -C username@localsystem Copy the key from /home/username/.ssh/id_rsa.pub Updated that in /home/username/.ssh/known_hosts Now ssh username@destinationsystem should simply logon you to the remote system
Read more