There are quite a few posts that recommend using SetProcessWorkingSetSize to trim your process working set, usually in the SetProcessWorkingSetSize(ProcessHandle, -1, -1) form: [WayBack] SetProcessWorkingSetSize function (winbase.h) | Microsoft Docs Sets the minimum and maximum working set sizes for the specified process. BOOL SetProcessWorkingSetSize(
HANDLE hProcess, SIZE_T dwMinimumWorkingSetSize, SIZE_T dwMaximumWorkingSetSize ); The working set of […]
Weiterlesen...