Summary
How to use PowerShell for connecting to Remote Computers.
Requirements
- Command Prompt (CMD or Windows Terminal)
Instructions
List PowerShell Sessions
1
Get-PSSession
Create PowerShell Session to remote computer.
1
New-PSSession -ComputerName namehere
Enter PowerShell sessions to remote computer.
1
Enter-PSSession -ComputerName namehere
Delete PowerShell session to remote computer.
1
Remove-PSSession -ComputerName namehere