w10install/scripts/remove-drive-letter.cmd
Michael H.G. Schmidt b7cf3825b5 .
2024-12-02 12:16:45 +01:00

30 lines
522 B
Batchfile

@echo off
set T=%SystemDrive%\TEMP
set DPARTSCRIPT=%T%\diskpart.txt
echo ####### %0 #######
echo Removing drive letter ...
> %DPARTSCRIPT% (
@echo.select disk 0
@echo.select partition 2
@echo.remove all dismount
@echo.exit
@echo.
)
diskpart /s %DPARTSCRIPT%
if %ERRORLEVEL% NEQ 0 (
echo ERROR: while removing the drive letter!
del /F %DPARTSCRIPT% 1>nul 2>nul
exit /b
)
echo Drive letter removed.
rem cleanup ...
del /F %DPARTSCRIPT% 1>nul 2>nul
echo ####### %0 #######