VBS(VBScript)によるドライブとパーティションの関連情報を参照する方法を紹介
WMIを使って、ドライブとパーティションの関連情報を参照(パーティション、ドライブ)
サンプルソース
※取得可能なプロパティ(情報)は、以下手順で取得可能⇒WMIのクラス・プロパティ一覧の確認
※「型が一致しません」のエラーが出る場合⇒VBSのWMIの出力で、型が一致しませんのエラーが出る場合
(入力:cscript)
Dim qu,cl,swbe,service,sms1,sms2
Set swbe = WScript.CreateObject("WbemScripting.SWbemLocator")
Set service = swbe.ConnectServer
Set qu = service.ExecQuery("Select * From Win32_LogicalDiskToPartition")
For Each cl In qu
sms1 = cl.Antecedent
sms2 = cl.Dependent
Wscript.Echo "Antecedent:" & sms1
Wscript.Echo "Dependent:"& sms2
Wscript.Echo
Next
(出力)
Antecedent : \\HOSTNAME\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #1"
Dependent : \\HOSTNAME\root\cimv2:Win32_LogicalDisk.DeviceID="C:"
Antecedent : \\HOSTNAME\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #2"
Dependent : \\HOSTNAME\root\cimv2:Win32_LogicalDisk.DeviceID="E:"
Antecedent : \\HOSTNAME\root\cimv2:Win32_DiskPartition.DeviceID="Disk #0, Partition #2"
Dependent : \\HOSTNAME\root\cimv2:Win32_LogicalDisk.DeviceID="F:"