@echo off
for /f "tokens=4,5 skip=1 delims=\" %%a in ('wmic os get Name') do set dis=%%a& set par=%%b
)
echo select volume C > bpt.scr
echo list part >> bpt.scr
diskpart /s bpt.scr > bp1.txt
find "MB " bp1.txt > bp2.txt
set BOOTPART=
for /f "tokens=1-4 usebackq" %%a in ("bp2.txt") do (
set BOOTPART=%%b
)
)
if exist bpt.scr del bpt.scr
if exist bp1.txt del bp1.txt
if exist bp2.txt del bp2.txt
echo.&echo.&echo.
echo %dis:Harddisk=% 번 디스크
echo.
set par=%par:Partition=%
echo %par: =% 번 파티션-윈도우
echo.
echo. %BOOTPART% 번 파티션-부팅 파티션
pause >nul
exit
'유용한 배치파일' 카테고리의 다른 글
디스크 번호별 간단한 정보 (1) | 2023.04.06 |
---|---|
DPI-설정 (0) | 2022.12.01 |
AnyDesk 잔존파일 삭제 (15) | 2022.06.18 |
진행 바 (Progress bar) (6) | 2022.03.18 |
SDI 자동 설치 스크립트 (1) | 2022.03.18 |