Can you provide more information, such as your operating system, what is your total physical memory and the actual output of the PowerShell command?
, win32_OperatingSystem, , FreePhysicalMemory FreeVirtualMemory , , 1024.
, 4 (32- WinXP - OS ~ 3,5 ), PowerShell:
$test = gwmi win32_OperatingSystem
# verify the "visible" memory size to the Operating System
$test.TotalVisibleMemorySize
3652840
# check free memory
$test.FreePhysicalMemory
1872828
# divide by 1024 twice, once for KB -> MB, once for MB -> GB
($test.FreePhysicalMemory / 1024) / 1024
1.78606796264648
, , 1,786 . , Win7 x64.
MSDN WMI Win32_OperatingSystem: http://msdn.microsoft.com/en-us/library/aa394239.aspx