I use a batch file to get information about the hard disk and partition, but I don't know how to get this information into QM,I hope someone can help me, thanks
info.bat
My idea: get the information in the command line, output it to QM, and then retrieve the fields of the hard disk and the fields of the partition.
info.bat
@echo off
(echo list disk
echo sel disk 0
echo list part
echo list disk
echo sel disk 1
echo list part)>a.txt
diskpart /s a.txt
pause
My idea: get the information in the command line, output it to QM, and then retrieve the fields of the hard disk and the fields of the partition.