Change Pagefile Settings: Unterschied zwischen den Versionen
Aus Wiki-WebPerfect
Admin (Diskussion | Beiträge) (Die Seite wurde neu angelegt: „== Deactivate Automatic Managed Pagefile == <source lang="Powershell> $computersys = Get-WmiObject Win32_ComputerSystem -EnableAllPrivileges; $computersys.Auto…“) |
Admin (Diskussion | Beiträge) |
||
Zeile 1: | Zeile 1: | ||
== Deactivate Automatic Managed Pagefile == | == Deactivate Automatic Managed Pagefile == | ||
− | <source lang=" | + | <source lang="powershell"> |
$computersys = Get-WmiObject Win32_ComputerSystem -EnableAllPrivileges; | $computersys = Get-WmiObject Win32_ComputerSystem -EnableAllPrivileges; | ||
$computersys.AutomaticManagedPagefile = $False; | $computersys.AutomaticManagedPagefile = $False; | ||
$computersys.Put(); | $computersys.Put(); | ||
</source> | </source> |
Version vom 27. April 2018, 07:25 Uhr
Deactivate Automatic Managed Pagefile
$computersys = Get-WmiObject Win32_ComputerSystem -EnableAllPrivileges; $computersys.AutomaticManagedPagefile = $False; $computersys.Put();