Linux – Windows equivalent of SSH

command linelinuxscpsshwindows

I don't know Windows very well and only vaguely know my way around the Command Prompt.

Is there an equivalent to SSHing into another Windows computer via cmd? Equivalents to SCP and other Linux commands would be nice as well.

Best Answer

PowerShell comes with Remoting capabilities in WinRM:

PS C:\> enter-pssession otherhost

In XP, you could use PSExec, but this is only recommended over secure LANs:

psexec \\otherhost cmd
Related Question