Skip to content

Commit bf01e99

Browse files
authored
Merge v1.3.2 into main
2 parents 2d2c63d + ab2d95b commit bf01e99

File tree

2 files changed

+36
-6
lines changed

2 files changed

+36
-6
lines changed

src/GetDiskInfoFromWmi/GetDiskInfoFromWmi.au3

+11-6
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#cs
99
===============================================================================================================================
1010
Title ...............: _GetDiskInfoFromWmi (GitHub: https://github.com/htcfreek/AutoIt-Scripts)
11-
Version .............: 1.4.1
11+
Version .............: 1.4.2
1212
License .............: GNU LGPLv3
1313
AutoIt Version ......: 3.3.14.5+
1414
Language ............: English
@@ -20,6 +20,10 @@
2020
===============================================================================================================================
2121
2222
CHANGELOG:
23+
2022-08-28 (v1.4.2)
24+
Fixed: Build warnings for non declared variables $sDiskHeader and $sPartitionHeader. (Github#28)
25+
Added: New Readme.txt for this script. (Github#29)
26+
2327
2021-07-06 (v1.4.1)
2428
Fixed: Code styling
2529
@@ -66,26 +70,27 @@ Global Const $DiskInfoWmi_DiskType_Unknown = "Unknown%"
6670
Func _GetDiskInfoFromWmi(ByRef $aDiskList, ByRef $aPartitionList, $bAddTableHeader = $DiskInfoWmi_TableHeader_Yes, $sFilterDiskType = $DiskInfoWmi_DiskType_All)
6771
; Name ...............: _GetDiskInfoFromWmi
6872
; Author .............: htcfreek (Heiko) - https://github.com/htcfreek
69-
; Input parameter ....: ByRef $aDiskList = Array var for list of disks.
70-
; ByRef $aPartitionList = Array var for list of partitions.
73+
; Input parameter ....: ByRef $aDiskList = Array variable for list of disks returned.
74+
; ByRef $aPartitionList = Array variable for list of partitions returned.
7175
; [$bAddTableHeader = $DiskInfoWmi_TableHeader_Yes] = Should array tables have a header row. (Values: 0|1 or $DiskInfoWmi_TableHeader_Yes|$DiskInfoWmi_TableHeader_No)
72-
; [$sFilterDiskType = $DiskInfoWmi_DiskType_All] = Which type of disk should be included in result. (Values: $DiskInfoWmi_DiskType_All|$DiskInfoWmi_DiskType_External|$DiskInfoWmi_DiskType_Removable|$DiskInfoWmi_DiskType_Fixed|$DiskInfoWmi_DiskType_Unknown)
76+
; [$sFilterDiskType = $DiskInfoWmi_DiskType_All] = Which type of disk should be included in the result. (Values: $DiskInfoWmi_DiskType_All|$DiskInfoWmi_DiskType_External|$DiskInfoWmi_DiskType_Removable|$DiskInfoWmi_DiskType_Fixed|$DiskInfoWmi_DiskType_Unknown)
7377
; Output parameter ...: none
7478
; On WMI-Error .......: @error = 1
7579

7680

7781
; Initialize function wide vars
7882
Local $aDisks[0][12]
7983
Local $aPartitions[0][13]
84+
8085
Local $iDiskArrayCount = 0 ; Initialize counter to write some disk data later in correct array row.
8186
Local $iPartArrayCount = 0 ; Initialize counter to write partition data later in correct array row.
8287

8388

8489
; Add Array header
8590
If ($bAddTableHeader = 1) Then
86-
$sDiskHeader = "DiskNum" & "||" & "DiskDeviceID" & "||" & "DiskManufacturer" & "||" & "DiskModel" & "||" & "DiskInterfaceType" & "||" & "DiskMediaType" & "||" & "DiskSerialNumber" & "||" & "DiskState" & "||" & "DiskSize" & "||" & "DiskInitType" & "||" & "DiskPartitionCount" & "||" & "WindowsRunningOnDisk (SystemDrive)"
91+
Local $sDiskHeader = "DiskNum" & "||" & "DiskDeviceID" & "||" & "DiskManufacturer" & "||" & "DiskModel" & "||" & "DiskInterfaceType" & "||" & "DiskMediaType" & "||" & "DiskSerialNumber" & "||" & "DiskState" & "||" & "DiskSize" & "||" & "DiskInitType" & "||" & "DiskPartitionCount" & "||" & "WindowsRunningOnDisk (SystemDrive)"
8792
_ArrayAdd($aDisks, $sDiskHeader, 0, "||")
88-
$sPartitionHeader = "DiskNum" & "||" & "PartitionNum" & "||" & "PartitionID" & "||" & "PartitionType" & "||" & "PartitionIsPrimary" & "||" & "PartitionIsBootPartition" & "||" & "PartitionLetter" & "||" & "PartitionLabel" & "||" & "PartitionFileSystem" & "||" & "PartitionSizeTotal" & "||" & "PartitionSizeUsed" & "||" & "PartitionSizeFree" & "||" & "PartitionIsSystemDrive"
93+
Local $sPartitionHeader = "DiskNum" & "||" & "PartitionNum" & "||" & "PartitionID" & "||" & "PartitionType" & "||" & "PartitionIsPrimary" & "||" & "PartitionIsBootPartition" & "||" & "PartitionLetter" & "||" & "PartitionLabel" & "||" & "PartitionFileSystem" & "||" & "PartitionSizeTotal" & "||" & "PartitionSizeUsed" & "||" & "PartitionSizeFree" & "||" & "PartitionIsSystemDrive"
8994
_ArrayAdd($aPartitions, $sPartitionHeader, 0, "||")
9095
$iDiskArrayCount += 1
9196
$iPartArrayCount += 1

src/GetDiskInfoFromWmi/Readme.txt

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
**********************************************************************
2+
* Name: _GetDiskInfoFromWmi *
3+
* Description: Returns disk and partition information from WMI. *
4+
* Author: htcfreek (Heiko) - https://github.com/htcfreek [original] *
5+
**********************************************************************
6+
7+
Detailed description:
8+
---------------------
9+
This function generates two arrays conatining the list of all disks on this computer and all partitions on this computer. The arrays are returned using the output parameters of the function.
10+
There are two more fucntion parameters you can use to control the output: One to decide if the array tables should have a header line and one to control which types of disks are returned.
11+
12+
Parameters:
13+
-----------
14+
1. ByRef $aDiskList : Array variable for list of disks returned.
15+
2. ByRef $aPartitionList : Array variable for list of partitions returned.
16+
3. $bAddTableHeader (Optional, Default value = $DiskInfoWmi_TableHeader_Yes) : Should array tables have a header row. (Values: 0|1 or $DiskInfoWmi_TableHeader_Yes|$DiskInfoWmi_TableHeader_No)
17+
4. $sFilterDiskType (Optional, Default value = $DiskInfoWmi_DiskType_All) : Which type of disk should be included in the result. (Values: $DiskInfoWmi_DiskType_All|$DiskInfoWmi_DiskType_External|$DiskInfoWmi_DiskType_Removable|$DiskInfoWmi_DiskType_Fixed|$DiskInfoWmi_DiskType_Unknown)
18+
19+
Output:
20+
-------
21+
Two array lists. One contains the disk information and one contains the partition information.
22+
23+
Usage example:
24+
--------------
25+
See the file 'UsageExample.au3' in this directory.

0 commit comments

Comments
 (0)