Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

Symptoms

On a Windows-based computer, when you try to set a page file on a partition that is larger than 2 terabytes (TB), you receive the following error message:

Drive X: is too small for the maximum paging file size specified. Please enter a smaller number.




This problem occurs when you try to set page files in the Virtual Memory user interface in the Advanced System Settings. This is true regardless of whether the page file is a customized page file or a system-managed page file.

Cause

This problem occurs because the Virtual Memory user interface calculates incorrectly the maximum space that is required to create the page file.

Workaround

To work around this problem, use Windows Management Instrumentation (WMI) instead of the Virtual Memory user interface to set page files.

To create a page file, run the following command:

wmic.exe pagefileset create name="<X>:\\pagefile.sys" Note In this command, <X> is the letter of the drive on which you want to create the page file.

To set the size of the page file, run the following command:

wmic.exe pagefileset where name="<X>:\\pagefile.sys" set InitialSize=300000,MaximumSize=3000000 Note In this command, the page file size is set to 300,000 megabytes.

If you do not have to have the page file on drive C, run the following command to delete it:

wmic.exe pagefileset where name="C:\\pagefile.sys" delete

Status

Microsoft has confirmed that this is a problem in the Microsoft products that are listed in the "Applies to" section.

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×