gpt4 book ai didi

用于设置 pagefile.sys 大小的 PowerShell 脚本

转载 作者:行者123 更新时间:2023-12-04 01:56:52 28 4
gpt4 key购买 nike

如何通过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;

关于用于设置 pagefile.sys 大小的 PowerShell 脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37813441/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com