Rilasciato Microsoft Windows Dynamic Cache Service

Microsoft Windows Dynamic Cache Service will manage the working set size of the Windows System File Cache. For 64 bit systems this service helps to address the problem of excessive cached read I/O that could eventually consume all of physical memory. Sample source code and compiled files are included in the compressed file.

Per ulteriori informazioni si veda il post Too Much Cache?

Per l’installazine utilizzare la seguente procedura (che per sommi capi è riutilizzabile quando si deve creare un servizio):

  1. Copy DynCache.exe to %SystemRoot%\System32.
  2. From a command prompt, run:
    sc create DynCache binpath= %SystemRoot%\System32\DynCache.exe start= auto type= own DisplayName= “Dynamic Cache Service”
  3. Import the DynCache.reg registry file.  This registry file contains default settings that you will probably want to modify. 

Per la disinstallazione utilizzare la procedura (che anche in questo caso può essere riutilizzabile quando si deve eliminare un servizio):

  1. sc stop DynCache
  2. sc delete DynCache

Per le configurazioni da eseguire mediante chiavi di registro si veda il file ReadMe.docx, del servizio viene anche fornito il codice sorgente.