w10install/scripts/remove-drive-letter.cmd

28 lines
488 B
Batchfile
Raw Normal View History

2024-12-02 12:02:18 +01:00
@echo off
2024-12-02 12:16:45 +01:00
set T=%SystemDrive%\TEMP
2024-12-02 12:02:18 +01:00
set DPARTSCRIPT=%T%\diskpart.txt
2024-12-02 12:16:45 +01:00
echo ####### %0 #######
2024-12-02 12:02:18 +01:00
> %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
2024-12-02 12:16:45 +01:00
echo ####### %0 #######
2024-12-02 12:02:18 +01:00