N equivalent to ssh-copy-id with OpenSSH in Powershell

opensshpowershellssh

I'm using PowerShell and have OpenSSH 4.6 installed. I'd like to use ssh-copy-id so I can login using a key without doing through the manual process of copying keys to servers. Is there an equivalent to the linux command ssh-copy-id that can be used or is there a PowerShell script already created somewhere that does this?

Best Answer

I was on similar quest and seems like I've gone a bit overboard. You can find the powershell script here: https://github.com/VijayS1/Scripts/blob/master/ssh-copy-id/ssh-copy-id.ps1

Related Question