Sterge pagefile-ul din PowerShell

Configurare noua (How To)

Situatie

Sunt situatii cand ramanem fara spatiu pe partitia de sistem (C:)

In acest caz putem sterge pagefile-ul

Solutie

Se deschide PowerShell cu drepturi administrative (Run As Administrator)

Se tasteaza urmatoarea comanda:

Set-executionPolicy RemoteSigned -force $pf = gwmi Win32_ComputerSystem if ($pf.AutomaticManagedPagefile) { $pf.AutomaticManagedPagefile = $False $pf.Put() } $pg = gwmi win32_pagefilesetting if ($pg) { $pg.Delete() }

In acest moment pagefile-ul este sters (fisierul ascuns din radacina c:pagefile.sys)

 

 

Tip solutie

Permanent

Voteaza

(10 din 29 persoane apreciaza acest articol)

Despre Autor

Leave A Comment?