wmic change system page file size and location

July 1st, 2019 | Tags:

我们通过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
No comments yet.