Created
October 18, 2024 12:31
-
-
Save Csqhi515/80c83c2820c87ac7c437d1ba2568a1ca to your computer and use it in GitHub Desktop.
Script to compact vhd/vhdx.
This file contains 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 characters
@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 | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Credits: This is a slightly modified version of https://gist.github.com/hui-shao/ae616b7922bf862f471f085b594a6b75
WSL specific: CompactWSL.bat