Pagefile Error Server 2012
i trying set page file microsoft recommended settings. server has 64gb of memory setting itial size 98304mb , max 196608mb vm sees 174063mb of available space i error message don't have enough disk space. false have 2 tb of disk space. came across article not working: http://support.microsoft.com/kb/973423/en-us work around problem, use windows management instrumentation (wmi) instead of virtual memory user interface set page files. create page file, run following command: wmic.exe pagefileset create name="<var>x</var>:\pagefile.sys" note in command, <var>x</var> letter of drive on want create page file. set size of page file, run following command: wmic.exe pagefileset name="<var>x</var>:\\pagefile.sys" set initialsize=300000,maximumsize=3000000 note in command, page file size set 300,000 megabytes. if not need page file on drive c, run following command delete it: wmic.exe pagefiles...