Remote on PowerShell

Open PowerShell with administration permission

Get-Command | where { $_.parameters.keys -contains "ComputerName" -and $_.parameters.keys -notcontains "Session"}

to test connection session

Enter-PSSession ComputerName

Leave a comment