$FHD=FileOpen("t.txt",0)
$line=FileReadLine($FHD)
While 1
$line=FileReadLine($FHD)
If @error=-1 Then ExitLoop
$STRs=StringRegExp($line,"(\S+)\s+\d+\s+\d+\s*$",3)
MsgBox(0,0,$STRs[0])
WEnd
$DRIs=DriveGetDrive ( "FIXED" )
If Not @error Then
For $i=1 to $DRIs[0]
$VL=DriveGetLabel($DRIs[$i]&"")
If $VL="" Then $VL="本地磁盘"
MsgBox(0,0,"分区"&StringUpper($DRIs[$i])&"的卷标是“"&$VL&"”")
Next
EndIf