wmic change system page file size and location

我们通过wmic 命令来将虚拟内存设置在D盘最小8G最大16G并删除C盘的虚拟内存文件 pagefile.sys.

wmic PageFileSet create name="D:\\pagefile.sys",InitialSize="8096",MaximumSize="16384"
wmic PageFileSet where "name='C:\\pagefile.sys'" delete

Leave a Reply

Your email address will not be published. Required fields are marked *