PowerShellを介してWindows(pagefile.sys)でページファイルのサイズを設定するにはどうすればよいですか?
これは、PowerShellを介してpagefile.sysのサイズを更新する方法です。
# PowerShell Script to set the size of pagefile.sys
$computersys = Get-WmiObject Win32_ComputerSystem -EnableAllPrivileges;
$computersys.AutomaticManagedPagefile = $False;
$computersys.Put();
$pagefile = Get-WmiObject -Query "Select * From Win32_PageFileSetting Where Name like '%pagefile.sys'";
$pagefile.InitialSize = <New_Value_For_Size_In_MB>;
$pagefile.MaximumSize = <New_Value_For_Size_In_MB>;
$pagefile.Put();
次のようにスクリプトを実行します。
PS> .\update_pagefile_size.ps1;
変更を有効にするには、再起動する必要があることに注意してください