reinstall/windows-resize.bat

8 lines
350 B
Batchfile
Raw Permalink Normal View History

@echo off
2024-03-22 20:05:53 +08:00
mode con cp select=437 >nul
2024-03-19 21:36:21 +08:00
set C=%SystemDrive:~0,1%
for /f "tokens=2" %%a in ('echo list vol ^| diskpart ^| findstr "\<installer\>"') do (echo select vol %%a & echo delete partition) | diskpart
for /f "tokens=2" %%a in ('echo list vol ^| diskpart ^| findstr "\<%C%\>"') do (echo select vol %%a & echo extend) | diskpart
del "%~f0"