Skip to content

Instantly share code, notes, and snippets.

@Csqhi515
Created October 18, 2024 12:31
Show Gist options
  • Save Csqhi515/80c83c2820c87ac7c437d1ba2568a1ca to your computer and use it in GitHub Desktop.
Save Csqhi515/80c83c2820c87ac7c437d1ba2568a1ca to your computer and use it in GitHub Desktop.
Script to compact vhd/vhdx.
@echo off
net session >nul 2>&1
if %errorlevel% neq 0 (
echo Requesting administrative privileges...
if "%*"=="" (powershell -Command "Start-Process '%~f0' -Verb RunAs") else (powershell -Command "Start-Process '%~f0' -ArgumentList '%*' -Verb RunAs")
exit /b
)
if [%1]==[] (
echo ========= Instructions =========
echo Please drag and drop files onto this batch.
pause
exit /B 1
) else (
(
echo select vdisk file="%1"
echo detach vdisk
echo attach vdisk readonly
echo compact vdisk
echo detach vdisk
) | diskpart
echo Finished.
pause
)
@Csqhi515
Copy link
Author

Csqhi515 commented Oct 18, 2024

Credits: This is a slightly modified version of https://gist.github.com/hui-shao/ae616b7922bf862f471f085b594a6b75

WSL specific: CompactWSL.bat

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment