@WINMEMORY[n] : Returns the requested Windows memory information. All values except memory load are returned in bytes. n is a number specifying what to return:
n |
Information returned |
0 |
Memory load, % |
1 |
Total physical RAM |
2 |
Available physical RAM |
3 |
Total that can be stored in the page file |
4 |
Available page file |
5 |
Total virtual memory for process |
6 |
Total free virtual memory for process |
Examples:
echo %@winmemory[0]
51
echo %@winmemory[1]
34303373312
echo %@winmemory[2]
16620326912
echo %@winmemory[3]
75105562624
echo %@winmemory[4]
37333237760
echo %@winmemory[5]
140737488224256
echo %@winmemory[6]
138533536821248