0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Windowsの仮想メモリ(ページングファイル)無効化

Last updated at Posted at 2024-11-29

PowerShell 版

PowerShell:管理者
# ページングファイルが自動管理されているか確認( True なら自動管理)
(Get-WmiObject -Class Win32_ComputerSystem).AutomaticManagedPagefile

# WMI からは不可・CIM を使う
# CIM インスタンスを取得
$cimInstance = Get-CimInstance -ClassName Win32_ComputerSystem
# プロパティを変更(システムによる自動管理を無効に)
$cimInstance.AutomaticManagedPagefile = $false
# 設定を反映
$cimInstance | Set-CimInstance

# 現状のページングファイルを確認
Get-WmiObject -Class Win32_PageFileSetting
# すでに作成されたページングファイルを削除
(Get-WmiObject -Class Win32_PageFileSetting).Delete()

# 詳細設定タブの「仮想メモリ」枠内を確認する
# ページングファイルなし になっていればОK
SystemPropertiesPerformance.exe

CMD 版

 wmic がプレインストールされなくなったのは 24H2 以降なのかな?

CMD:管理者
:: wmic をインストール(うまくいかない場合は PowerShell から実行してください)
PowerShell DISM.exe /Online /Add-Capability /CapabilityName:WMIC
:: DISM.exe /Online /Add-Capability /CapabilityName:WMIC~~~~

:: ページファイル無効化
wmic pagefileset list
wmic computersystem set AutomaticManagedPagefile=false
wmic pagefileset DELETE
wmic pagefileset list full

参考

利用可能なオンデマンド機能
[Full Guide] How to Get Back the Wmic Feature on Windows 11
Windows 設定のコマンド起動

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?