Win32_SoftwareFeatureAction, ROOT\cimv2, VB Net samples

Class | Methods | Properties (2) | Qualifiers (7) | Instances (999) | Namespaces (2)
Samples: VB Script | C# | VB.Net | Search on:Microsoft

Win32_SoftwareFeatureAction - VB.Net code samples

WMI query - sample windows WQL with VB.Net, Action property of Win32_SoftwareFeatureAction

Get a specified instance of Win32_SoftwareFeatureAction by a key, get a default unnamed instance (singleton) of the class or list instances of the class by wmi query using this VB.Net sample code.
See in another language: VBScript, C#
	'Project -> Add reference -> System.Management
	'Imports System.Management
	
	'Get the namespace management scope
	Dim Scope As New ManagementScope("\\.\ROOT\cimv2")
	
	'Get a result of WML query 
	Dim Query As New ObjectQuery("SELECT * FROM Win32_SoftwareFeatureAction Where Action="Win32_ClassInfoAction.ActionID=\"{AC0714F6-3D04-11D1-AE7D-00A0C90F26F4}InprocServer32{D64B6984-242F-32BC-B008-752806E5FC44}\""Element="Win32_SoftwareFeature.IdentifyingNumber=\"{D64B6984-242F-32BC-B008-752806E5FC44}\",Name=\"VS_APPENVBIG_x86_enu\",ProductName=\"Microsoft Visual Studio 2010 Shell (Isolated) - ENU\",Version=\"10.0.40219\""")
	
	'Create object searcher
	Dim Searcher As New ManagementObjectSearcher(Scope, Query)
	
	'Get a collection of WMI objects
	Dim queryCollection As ManagementObjectCollection = Searcher.Get
	
	'Enumerate wmi object 
	For Each mObject As ManagementObject In queryCollection
	  'write out some property value
	  Console.WriteLine("Action : {0}", mObject("Action"))
	Next
	

WMI query - list of class instances

List of all instances of Win32_SoftwareFeatureAction class in C#.
See in another language: VBScript, VB.Net.
	//https://wutils.com/wmi/
	
	//Project -> Add reference -> System.Management
	//using System.Management;
	
	//set the class name and namespace
	string NamespacePath = "\\\\.\\ROOT\\cimv2";
	string ClassName = "Win32_SoftwareFeatureAction";
	
	//Create ManagementClass
	ManagementClass oClass = new ManagementClass(NamespacePath + ":" + ClassName);
	
	//Get all instances of the class and enumerate them
	foreach (ManagementObject oObject in oClass.GetInstances())
	{
		//access a property of the Management object
		Console.WriteLine("Action : {0}", oObject["Action"]);
	}
	
comments powered by Disqus
WUtils.com