-
-
Save vyach-vasiliev/2c66f152f7ebeba94d4b1e7e373ac55f to your computer and use it in GitHub Desktop.
Revisions
-
Csqhi515 created this gist
Oct 18, 2024 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,30 @@ @echo off net session >nul 2>&1 if %errorlevel% neq 0 ( echo Requesting administrative privileges... powershell -Command "Start-Process '%~f0' -Verb RunAs" exit /b ) wsl sudo fstrim --all; echo "Exit status: $?"; wsl --shutdown :: ========= Instructions ========= :: Please define your list of files here. set fileList=("%LOCALAPPDATA%\Packages\CanonicalGroupLimited.Ubuntu_79rhkp1fndgsc\LocalState\ext4.vhdx" "%LOCALAPPDATA%\Docker\wsl\data\ext4.vhdx") :: Process each file in the list. for %%F in %fileList% do ( echo Processing %%F using diskpart compact. ( echo select vdisk file=%%F echo detach vdisk echo attach vdisk readonly echo compact vdisk echo detach vdisk ) | diskpart ) echo Finished. pause