Open PowerShell as an Administrator and type in this command:
Invoke-Command -ComputerName ‘%PC_NAME%’ -ScriptBlock { Get-ComputerInfo }
This will output all the information relating to target computer in PowerShell. This is a basic command but powerful when doing diagnostics or troubleshooting network issues.
If you want to view the information of multiple computers just run the command with multiple names as shown below.
Invoke-Command -ComputerName ‘%PC_NAME_1%’,‘%PC_NAME_2%’ -ScriptBlock { Get-ComputerInfo }
