Change Pagefile Settings: Unterschied zwischen den Versionen

Aus Wiki-WebPerfect
Wechseln zu: Navigation, Suche
(Die Seite wurde neu angelegt: „== Deactivate Automatic Managed Pagefile == <source lang="Powershell> $computersys = Get-WmiObject Win32_ComputerSystem -EnableAllPrivileges; $computersys.Auto…“)
 
 
(Eine dazwischenliegende Version des gleichen Benutzers werden nicht angezeigt)
Zeile 1: Zeile 1:
 
== Deactivate Automatic Managed Pagefile ==
 
== Deactivate Automatic Managed Pagefile ==
<source lang="Powershell>
+
<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>
 +
 +
 +
 +
[[Kategorie:Windows]]

Aktuelle Version vom 12. Juli 2021, 12:15 Uhr

Deactivate Automatic Managed Pagefile

$computersys = Get-WmiObject Win32_ComputerSystem -EnableAllPrivileges;
$computersys.AutomaticManagedPagefile = $False;
$computersys.Put();