12.02.23

Disable memory compression in Win 10/11

While RAM compression can be useful to avoid using swap/page file on your storage, it uses CPU resources to do compression/decompression. This can make noticeable computer slowdowns after prolonged use, e.g. after weeks of computer usage where computer was not shutdown but put in standby/hibernation in between.

Start PowerShell as admin. To check status of RAM compression:

To disable memory compression:


Disable-MMAgent –MemoryCompression

To re-enable memory compression:


Enable-MMAgent -MemoryCompression

For change to be applied, computer restart is needed.

Yeah, one more example of stupid and unmemorable PowerShell cmdlets naming conventions …

Posted in Windows | Comments Off on Disable memory compression in Win 10/11
11.02.23

Windows 11 – Always show all icons in system tray area

Open Regedit, then go here:

[HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]

Look for EnableAutoTray and set the value from 0 to 1

Then run this cmd:

explorer shell:::{05d7b0f4-2121-4eff-bf6b-ed3f69b894d9}

The check box for showing all items should be interactable.

Posted in Windows | Comments Off on Windows 11 – Always show all icons in system tray area