71Invoke-Command -ComputerName Server01 {ipconfig}Run command on remote computer
72Enter-PSSession -ComputerName Server01Start remote session
73Get-PSSessionList active sessions
74New-PSSession -ComputerName Server01Create new session
75Copy-Item "C:\file.txt" -Destination "C:\Temp" -ToSession (New-PSSession Server01)Copy file to remote computer
76Invoke-Command -ComputerName Server01 -FilePath "C:\Scripts\script.ps1"Run remote script
77Get-Command -ComputerName Server01Run Get-Command on remote
78Restart-Computer -ComputerName Server01Restart remote computer
79Stop-Computer -ComputerName Server01Shutdown remote computer
80Test-WSMan -ComputerName Server01Test WinRM connectivity