I have a PowerShell script that consumes RAM usage to prove that Windows 11 has no upper limit preventing use of ALL of your RAM.
The fact is that Windows 11 is much better at resource usage than Windows 10 was, so comparing them is not the same. thing.
There are tools to help. You can use Resource Monitor by running
resmon.exe
Sort the columns under Memory
You can use
RAMMap from Microsoft to dig into how memory is being allocated on your system.
My system test using PowerShell to consume memory
PHYSICAL MEMORY CONSUMPTION TEST
Total visible memory : 65,220 MB
Currently in use : 13,843 MB
Currently available : 51,377 MB
Safety reserve : 2,048 MB
Hold duration : 30 seconds
Target allocation : approximately 49,329 MB
Allocating and touching physical memory...
Allocated: 49,329 MB | In use: 61,011 MB | Available: 4,209 MB
Allocated by test : 49,329 MB
Physical memory in use: 61,011 MB
Physical memory usage : 93.5%
Physical available : 4,209 MB
Holding memory for 30 seconds. Watch Task Manager now.
Releasing memory in 1 seconds...
Releasing allocated memory...
Memory currently in use: 11,602 MB
Memory now available : 53,618 MB
Test complete.
View attachment 178508
View attachment 178509