G
Guest
Hello out there
I just noticed that Windows 2000 and also windows 2003 server incorrectly
reports how much physical memory there is installed in a server - You can
either see it as the properties on "This computer", taskmanager or f.ex. this
small script with the cscript engine:
strComputer = "."
Set objSWbemServices = GetObject("winmgmts:\\" & strComputer)
Set colSWbemObjectSet = _
objSWbemServices.InstancesOf("Win32_LogicalMemoryConfiguration")
For Each objSWbemObject In colSWbemObjectSet
Wscript.Echo "Total Physical Memory (kb): " & _
objSWbemObject.TotalPhysicalMemory
Next
it reports 3.2GB mem in a Dell 2800 server with 4GB RAM - I have run this
script on several different hw-platforms with similary result. Anyone got an
idea why?
regards /ti
I just noticed that Windows 2000 and also windows 2003 server incorrectly
reports how much physical memory there is installed in a server - You can
either see it as the properties on "This computer", taskmanager or f.ex. this
small script with the cscript engine:
strComputer = "."
Set objSWbemServices = GetObject("winmgmts:\\" & strComputer)
Set colSWbemObjectSet = _
objSWbemServices.InstancesOf("Win32_LogicalMemoryConfiguration")
For Each objSWbemObject In colSWbemObjectSet
Wscript.Echo "Total Physical Memory (kb): " & _
objSWbemObject.TotalPhysicalMemory
Next
it reports 3.2GB mem in a Dell 2800 server with 4GB RAM - I have run this
script on several different hw-platforms with similary result. Anyone got an
idea why?
regards /ti