web-dev-qa-db-ja.com

pagefile.sysのサイズを設定するPowerShellスクリプト

PowerShellを介してWindows(pagefile.sys)でページファイルのサイズを設定するにはどうすればよいですか?

7
Jayu

これは、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;
14
Pratik Patil

変更を有効にするには、再起動する必要があることに注意してください

0
djik