EDITBIN Option /WS

This option adds the WS_AGGRESSIVE property to your application's image. It has the following form:

/WS:AGGRESSIVE

In Windows NT 4 and Windows 2000, the loader recognizes this property and aggressively trims the working set of the process when the process is inactive. This has the same effect as using the following call throughout your application:

   SetProcessWorkingSetSize(hThisProcess, -1, -1)

Use /WS:AGGRESSIVE for applications such as services and screen savers that must have a low impact on the system's memory pool. If the speed of your application matters, do not use /WS:AGGRESSIVE without testing the resulting performance.