administration, powershell,

Remote Powershell

agowa338 agowa338 Oct 27, 2015 · 1 min read
Share this

Login automatically with current privileges

 Enter-PSSession -computername hostname 

Login with different Credentials

 $cred = Get-Credential Domain\username
Ender-PSSession -computername hostname -Credential $cred 
agowa338
Written by agowa338