SPACES_PhysicalDisk, ROOT\Microsoft\Windows\Storage\providers_v2, VBScript samples

Class | Methods (6) | Properties (34) | Qualifiers (3) | Instances (1) | Namespaces (1)
Samples: VB Script | C# | VB.Net | Search on:Microsoft

SPACES_PhysicalDisk - VB Script code samples

Get instance of WMI class using GetObject, AllocatedSize property of SPACES_PhysicalDisk

Short VBS code - get a single specified instance of SPACES_PhysicalDisk class or get a default unnamed instance (singleton) of the class, using one single command GetObject with exact path of the wmi object.
	
	'https://wutils.com/wmi/
	Dim wmiObject
	Set wmiObject = GetObject( _
	 "WINMGMTS:\\.\ROOT\Microsoft\Windows\Storage\providers_v2:" + _
	 "SPACES_PhysicalDisk.ObjectId=""{6e015502-45ee-11e4-80b5-806e6f6e6963}:PD:{e39eb6eb-5385-fafb-dfcf-27297ddd5fd8}""")
	Wscript.Echo wmiObject.AllocatedSize 'or other property name, see properties
	

Alternative codes

SWbemServices.Get

Quickest and most efficient VB Script code to get a single instance by a key - SWbemServices.Get
	'https://wutils.com/wmi/
	Dim oWMI, Instance
	
	'Get base WMI object, "." means computer name (local)
	Set oWMI = GetObject("WINMGMTS:\\.\ROOT\Microsoft\Windows\Storage\providers_v2")
	
	Do
	  'Get the instance of SPACES_PhysicalDisk 
	  Set Instance = oWMI.Get("SPACES_PhysicalDisk.ObjectId=""{6e015502-45ee-11e4-80b5-806e6f6e6963}:PD:{e39eb6eb-5385-fafb-dfcf-27297ddd5fd8}""")
	                    
	  'Do something with the instance
	  Wscript.Echo Instance.AllocatedSize 'or other property name, see properties
	
	  'Wait for some time to get next value
	  Wscript.Sleep 1000
	Loop While True  
	  
	

WMI query - sample windows WQL

Get a specified instance of SPACES_PhysicalDisk by a key, get a default unnamed instance (singleton) of the class or list instances of the class by wmi query using this VB Script.
See in another language: C#, VB.Net.
	'https://wutils.com/wmi/
	Dim oWMI, WQL, Instances, Instance
	
	'Get base WMI object, "." means computer name (local)
	Set oWMI = GetObject("WINMGMTS:\\.\ROOT\Microsoft\Windows\Storage\providers_v2")
	
	'Create a WMI query text 
	WQL = "Select * from SPACES_PhysicalDisk Where ObjectId=""{6e015502-45ee-11e4-80b5-806e6f6e6963}:PD:{e39eb6eb-5385-fafb-dfcf-27297ddd5fd8}"""
	
	'Get instances of SPACES_PhysicalDisk 
	Set Instances = oWMI.ExecQuery(WQL)
	                    
	'Enumerate instances  
	For Each Instance In Instances 
	  'Do something with the instance
	  Wscript.Echo Instance.AllocatedSize 'or other property name
	Next 'Instance
	

InstancesOf

List of all instances, wmi class SPACES_PhysicalDisk.
	'https://wutils.com/wmi/
	Dim oWMI, Instances, Instance
	
	'Get base WMI object, "." means computer name (local)
	Set oWMI = GetObject("WINMGMTS:\\.\ROOT\Microsoft\Windows\Storage\providers_v2")
	
	'Get instances of SPACES_PhysicalDisk - all instances of this class and derived classes 
	'Set Instances = oWMI.InstancesOf("SPACES_PhysicalDisk")
	
	'Get instances of SPACES_PhysicalDisk 
	Set Instances = oWMI.InstancesOf("SPACES_PhysicalDisk", 1)
	
	
	'Enumerate instances  
	For Each Instance In Instances 
	  'Do something with the instance
	  Wscript.Echo Instance.AllocatedSize 'or other property name
	Next 'Instance
	

WMI remote scripting - Locator, Connect

Get WMI management object using SWbemLocator.ConnectServer method. You can connect to a remote computer and specify Username/Password for the WMI connection.
	'https://wutils.com/wmi/
	Dim Locator, oWMI, WQL, Instances, Instance
	
	'Create Locator object
	Set Locator = CreateObject("WbemScripting.SWbemLocator")
	
	'Get base WMI object
	Set oWMI = Locator.ConnectServer("MachineName", "ROOT\Microsoft\Windows\Storage\providers_v2", "MachineName\administrator", "Password")
	 
	'.... continue using oWMI object
	
	
WUtils.com
online utility - toplist