Now I found the reference:
http://support.microsoft.c
Main Topics
Browse All TopicsI'm trying to create a page file with VBScript that is set to zero and it's not working. I can change current size without a problem. Attached is the code I use to change the size:
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Now I found the reference:
http://support.microsoft.c
Have you tried this method? http://www.dbforums.com/ar
There is a minimum size of 2Mb of pagefile on the system drive to enable debugging in the case of a Windows error. However, the minimum size is 0 - it's just that if there isn't 2Mb available on the system drive, you won't get any error information recorded in the event of a blue screen.
Look in your server2003 for c:\windows\system32\pagefi
pagefileconfig.vbs" /create /I 3 /M 300 /vo C:
purplepomegranite: the code is only a different way to call the same wmi CLASS and is WRONG!!!
this code is slightly different ...
wmic path Win32_PageFileSetting set InitialSize=300,MaximumSiz
BUT is the same: a wmi call
Using Win32_PageFileSetting wmi class you can't create 0 byte a pagefile :you get error 0x8004102b
Hi Canali,
Ok, you've confused me now, lol. The code you've posted above is exactly the same as that I copied from the link above (except the lines have been sorted out - I didn't notice they'd copied funny)?
It makes sense that a WMI call to create a pagefile of 0Mb fails really - it is the same as not having a pagefile. My point above (which I should have thought about before I made it!) was because I thought you were referring to the warning you get when you remove the pagefile from the system volume (about requiring 2Mb minimum on the system volume for debugging info).
Business Accounts
Answer for Membership
by: canaliPosted on 2008-05-23 at 11:58:12ID: 21634807
The script is not working because the minimun size for page file is 2 (megabyte)
Bye Gas