PINTO1927 Posted November 16, 2016 Posted November 16, 2016 Hello guys, I would need to check the total disk capacity c:\ (@HomeDrive). Through "DriveSpaceTotal" command I can get only the part allocated and not allocated one. I need to know the full capabilities of Disk 0. Can you help me?
jguinch Posted November 16, 2016 Posted November 16, 2016 with WMI : Local $oWMI = ObjGet("winmgmts:root\CIMV2") Local $oDisks = $oWMI.ExecQuery("select * from WIN32_DiskDrive") For $oDisk In $oDisks ConsoleWrite( "Disk " & $oDisk.Index & @TAB & "Model " &$oDisk.Model & @TAB & "Size " & $oDisk.Size & @CRLF) Next meoit 1 Spoiler Network configuration UDF, _DirGetSizeByExtension, _UninstallList Firefox ConfigurationArray multi-dimensions, Printer Management UDF
PINTO1927 Posted November 16, 2016 Author Posted November 16, 2016 if you wanted to have information only on Disk 0?
PINTO1927 Posted November 16, 2016 Author Posted November 16, 2016 solved: Quote select * from WIN32_DiskDrive WHERE DeviceID='\\\\.\\PHYSICALDRIVE0'"
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now