Board logo

标题: [系统相关] 批处理如果判断盘符是不是系统盘? [打印本页]

作者: 天花板愤怒    时间: 2023-5-27 23:46     标题: 批处理如果判断盘符是不是系统盘?

请教各位大佬 如何通过diskindex 判断这块盘是不是系统盘?
我看python代码是套循环取数据  不知道bat wmic 怎么弄?
  1. for physical_disk in c.Win32_DiskDrive():
  2.   for Partition in physical_disk.associators("Win32_DiskDriveToDiskPartition"):
  3.      for logical_disk in Partition.associators("Win32_LogicalDiskToPartition"):
复制代码
或者有没有更简便得方法判断是不是系统磁盘?
作者: 天花板愤怒    时间: 2023-5-27 23:53

是不是可以通过Bootable 为TURE判断是不是正在运行得系统盘?
作者: czjt1234    时间: 2023-5-28 06:23

%windir% 可以读取系统目录,也就可以判断盘符
作者: LTSC1809    时间: 2023-5-28 08:17

本帖最后由 LTSC1809 于 2023-5-28 08:25 编辑

楼上所说的%windir%确实可以,判断当前批处理文件所在的目录是否为系统盘,则代码如下
  1. @echo off
  2. for %%i in (%windir%) do set drive=%%~di
  3. if %drive% equ %~d0 (echo 当前盘符为系统盘) else (echo 当前盘符不是系统盘)
  4. pause
复制代码
如果需要输入盘符判断,则代码如下:
  1. @echo off
  2. for %%i in (%windir%) do set drive=%%~di
  3. set /p input=请输入盘符:
  4. if %drive% equ %input% (echo 输入盘符为系统盘) else (echo 输入盘符不是系统盘)
  5. pause
复制代码

作者: buyiyang    时间: 2023-5-28 08:25

%SystemDrive%
作者: 天花板愤怒    时间: 2023-5-28 10:54

回复 3# czjt1234

大佬能说的具体点吗?
或者有没有方法获取这块磁盘得分区 然后看有没有C盘就知道了吧
作者: 天花板愤怒    时间: 2023-5-28 11:00

回复 4# LTSC1809

  
   不管输入啥都是 输入盘符不是系统盘
   我需要的是通过硬盘得index(disk0 or disk1) 来判断它是否是当前正在运行得系统磁盘
作者: 天花板愤怒    时间: 2023-5-28 11:03

回复 5# buyiyang


    额 这不就是c:  我如何我知道我选择得磁盘有没有c分区
    wmic 如何获取指定磁盘上分区
作者: smss    时间: 2023-5-28 11:54

  1. @echo off
  2. for %%i in (Z Y X W V U T S R Q P O N M L K J I H G F E D C)do if exist %%i: if %%i:==%SystemDrive% (echo %%i是系统盘)else echo %%i不是
  3. pause
复制代码

作者: 天花板愤怒    时间: 2023-5-28 11:57

回复 9# smss


    这有啥用?
作者: Batcher    时间: 2023-5-28 12:29

回复 1# 天花板愤怒


看不懂你想表达什么意思

执行命令:
wmic path Win32_DiskPartition get * /value > 1.txt
看看 1.txt 的全部内容是否有你需要的东西?

这个命令怎么样:
wmic path Win32_DiskPartition where "Bootable='TRUE'" get DiskIndex /value
作者: Batcher    时间: 2023-5-28 12:32

回复 1# 天花板愤怒


echo list disk | diskpart
可以获得 Disk Index 假设有0和1,分别执行:
  1. (
  2.     echo list disk
  3.     echo select disk 0
  4.     echo detail disk
  5. )|diskpart
复制代码
  1. (
  2.     echo list disk
  3.     echo select disk 1
  4.     echo detail disk
  5. )|diskpart
复制代码
有没有你需要的内容?
作者: buyiyang    时间: 2023-5-28 12:38

回复  buyiyang
wmic 如何获取指定磁盘上分区
天花板愤怒 发表于 2023-5-28 11:03
  1. @echo off
  2. set index=0
  3. for /f tokens^=2^,4^ delims^=^" %%i in ('wmic path Win32_LogicalDiskToPartition get Dependent^,Antecedent ^| find /i "Disk #%index%"') do echo,%%i------%%j
  4. pause
复制代码
看来你对系统盘的理解跟大家不太一样
作者: 天花板愤怒    时间: 2023-5-28 13:55

回复 11# Batcher


    非常感谢
    我昨天想到就是这个,后来又想到如果我拿一个有系统得磁盘 当数据盘 这个值会是TURE吗?本来准备明天验证下得
作者: 天花板愤怒    时间: 2023-5-28 14:04

回复 13# buyiyang

  非常感谢
  这确实实现获取指定磁盘得分区,我只要判断有没有C: 我就能指定它是不是系统盘了
作者: 天花板愤怒    时间: 2023-5-28 14:08     标题: RE: 批处理如果判断盘符是不是系统盘?

回复 12# Batcher


    原来还可以这样用,之前一直用的/s 调用文本。。
     学到了
作者: 天花板愤怒    时间: 2023-5-28 14:10     标题: RE: [已解决]批处理如果判断盘符是不是系统盘?

看来你对系统盘的理解跟大家不太一样
buyiyang 发表于 2023-5-28 12:38



    非常感谢




欢迎光临 批处理之家 (http://bbs.bathome.net/) Powered by Discuz! 7.2