[新手上路]批处理新手入门导读[视频教程]批处理基础视频教程[视频教程]VBS基础视频教程[批处理精品]批处理版照片整理器
[批处理精品]纯批处理备份&还原驱动[批处理精品]CMD命令50条不能说的秘密[在线下载]第三方命令行工具[在线帮助]VBScript / JScript 在线参考
返回列表 发帖
回复 2# 小白龙


test-1.bat
  1. @echo off
  2. for /f "delims=" %%i in ('wmic Partition where "BootPartition='true'" get type /value ^| find "="') do (
  3.     echo,%%i | find "GPT" >nul
  4.     if errorlevel 1 (
  5.         echo MBR
  6.     ) else (
  7.         echo GPT
  8.     )
  9. )
  10. pause
复制代码
1

评分人数

我帮忙写的代码不需要付钱。如果一定要给,请在微信群或QQ群发给大家吧。
【微信公众号、微信群、QQ群】http://bbs.bathome.net/thread-3473-1-1.html
【支持批处理之家,加入VIP会员!】http://bbs.bathome.net/thread-67716-1-1.html

TOP

下面是一言的回答, 报错
  1. @echo off  
  2. set disk=  
  3. set /p disk=请输入磁盘的设备ID(例如:0):  
  4. set partitions=  
  5. for /f "tokens=1" %%a in ('wmic diskdrive where deviceid="%disk%" get deviceid') do (  
  6.     set partitions=%%a  
  7. )  
  8. if defined partitions (  
  9.     for /f "tokens=1" %%a in ('wmic partition where deviceid="%partitions%" get deviceid') do (  
  10.         set volumes=%%a  
  11.     )  
  12.     for /f "tokens=2 delims=," %%b in ('vol %volumes%') do (  
  13.         set drive_type=%%b  
  14.     )  
  15.     if /i "%drive_type%"=="MBR" (  
  16.         echo The partition form of the disk is: MBR  
  17.     ) else (  
  18.         echo The partition form of the disk is: GPT  
  19.     )  
  20. ) else (  
  21.     echo Cannot find the specified disk.  
  22. )
  23. pause
复制代码

TOP

返回列表