Share via

Checking memory on remote PC

Anonymous
2010-06-03T17:00:38+00:00

How can I find out how much memory is installed on a remote PC under Windows 7?  I used to be able to do it in Windows XP Pro as follows: Right-click "my compuer" and select "manage." Right-click "computer management" and select "connect to another computer."  Enter the computer name. Now right-click "computer management" again and select "properties."  In a few seconds, you can see the amount of memory, as well as the CPU and other info.  If I try the same in Windows 7, I can't find "properties" when I right-click "computer management."  Thanks.

Windows for home | Previous Windows versions | Windows update

Locked Question. This question was migrated from the Microsoft Support Community. You can vote on whether it's helpful, but you can't add comments or replies or follow the question.

0 comments No comments

Answer accepted by question author

Anonymous
2010-06-08T14:38:14+00:00

Maybe check the event logs of the systems involved.

Else, it seems you could adapt the script here to get that detail...

Was this answer helpful?

6 people found this answer helpful.
0 comments No comments

12 additional answers

Sort by: Most helpful
  1. Anonymous
    2010-06-03T22:06:10+00:00

    Perhaps, run msinfo32.exe, then choose View->Remote Computer?

    Was this answer helpful?

    10+ people found this answer helpful.
    0 comments No comments
  2. Anonymous
    2014-09-10T19:02:58+00:00

    On Windows 7 - Start, Programs, Accessories, System Tools, System Information.

    View, Remote Computer, Remote Computer on the network and input pc name

    Was this answer helpful?

    4 people found this answer helpful.
    0 comments No comments
  3. Anonymous
    2012-12-19T12:52:00+00:00

    strong winds here :-)

    if you don't have already, install "Windows Management Framework 3.0" on your Windows 7 Machine

    Then Start "PowerShell ISE", type in what follows and hit return

    $x = read-host -prompt "Please enter the machine name: " 

    $colItems = get-wmiobject -class "Win32_ComputerSystem" -namespace "root\CIMV2" -computername $x

    foreach ($objItem in $colItems){

    $displayGB = [math]::round($objItem.TotalPhysicalMemory/1024/1024/1024, 0)

    write-host "Total Physical Memory: " $displayGB "GB"

    write-host "Model: " $objItem.Model

    }

    $colItems = get-wmiobject -class "Win32_Processor" -namespace "root\CIMV2" -computername $x

    foreach ($objItem in $colItems){

    write-host "System Name: " $objItem.SystemName

    }

    Was this answer helpful?

    2 people found this answer helpful.
    0 comments No comments
  4. Anonymous
    2010-06-03T17:47:00+00:00

    Click the Start button and then right-click on Computer and select Properties


    Carey Frisch

    Was this answer helpful?

    1 person found this answer helpful.
    0 comments No comments