Is this possible with a script Page File question
Can WMI do this?
Set the page file so the system will manage it. I found this script but, it hard sets the page file.
VB Code:
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colPageFiles = objWMIService.ExecQuery _
("Select * from Win32_PageFileSetting")
For Each objPageFile in colPageFiles
objPageFile.InitialSize = 300
objPageFile.MaximumSize = 600
objPageFile.Put_
Next
Re: Is this possible with a script Page File question
strComputer = "."
Set objWMIService = GetObject("winmgmts:" _
& "{impersonationLevel=impersonate}!\\" & strComputer & "\root\cimv2")
Set colPageFiles = objWMIService.ExecQuery _
("Select * from Win32_PageFileSetting")
For Each objPageFile in colPageFiles
objPageFile.InitialSize = 0
objPageFile.MaximumSize = 0
objPageFile.Put_
Next
Setting both the InitialSize and MaxSize to 0 lets windows manage the swap file. I figured this out by trying it out :) HURRAY