SECURITY_DESCRIPTOR - property in ROOT\snmp\SMIR namespace

SECURITY_DESCRIPTOR in other namespaces

List of classes with SECURITY_DESCRIPTOR local property in ROOT\snmp\SMIR namespace

propertyClassOrigin
SECURITY_DESCRIPTOR__Event__Event
SECURITY_DESCRIPTOR__thisNAMESPACE__thisNAMESPACE

List of classes with SECURITY_DESCRIPTOR derived property in ROOT\snmp\SMIR namespace

propertyClassOrigin
SECURITY_DESCRIPTOR__ClassCreationEvent__Event
SECURITY_DESCRIPTOR__ClassDeletionEvent__Event
SECURITY_DESCRIPTOR__ClassModificationEvent__Event
SECURITY_DESCRIPTOR__ClassOperationEvent__Event
SECURITY_DESCRIPTOR__ConsumerFailureEvent__Event
SECURITY_DESCRIPTOR__EventDroppedEvent__Event
SECURITY_DESCRIPTOR__EventQueueOverflowEvent__Event
SECURITY_DESCRIPTOR__ExtrinsicEvent__Event
SECURITY_DESCRIPTOR__InstanceCreationEvent__Event
SECURITY_DESCRIPTOR__InstanceDeletionEvent__Event
SECURITY_DESCRIPTOR__InstanceModificationEvent__Event
SECURITY_DESCRIPTOR__InstanceOperationEvent__Event
SECURITY_DESCRIPTOR__MethodInvocationEvent__Event
SECURITY_DESCRIPTOR__NamespaceCreationEvent__Event
SECURITY_DESCRIPTOR__NamespaceDeletionEvent__Event
SECURITY_DESCRIPTOR__NamespaceModificationEvent__Event
SECURITY_DESCRIPTOR__NamespaceOperationEvent__Event
SECURITY_DESCRIPTOR__QOSFailureEvent__Event
SECURITY_DESCRIPTOR__SystemEvent__Event
SECURITY_DESCRIPTOR__TimerEvent__Event
SECURITY_DESCRIPTORSnmpAuthenticationFailureExtendedNotification__Event
SECURITY_DESCRIPTORSnmpAuthenticationFailureNotification__Event
SECURITY_DESCRIPTORSnmpColdStartExtendedNotification__Event
SECURITY_DESCRIPTORSnmpColdStartNotification__Event
SECURITY_DESCRIPTORSnmpEGPNeighborLossExtendedNotification__Event
SECURITY_DESCRIPTORSnmpEGPNeighborLossNotification__Event
SECURITY_DESCRIPTORSnmpExtendedNotification__Event
SECURITY_DESCRIPTORSnmpLinkDownExtendedNotification__Event
SECURITY_DESCRIPTORSnmpLinkDownNotification__Event
SECURITY_DESCRIPTORSnmpLinkUpExtendedNotification__Event
SECURITY_DESCRIPTORSnmpLinkUpNotification__Event
SECURITY_DESCRIPTORSnmpNotification__Event
SECURITY_DESCRIPTORSnmpV1ExtendedNotification__Event
SECURITY_DESCRIPTORSnmpV1Notification__Event
SECURITY_DESCRIPTORSnmpV2ExtendedNotification__Event
SECURITY_DESCRIPTORSnmpV2Notification__Event
SECURITY_DESCRIPTORSnmpWarmStartExtendedNotification__Event
SECURITY_DESCRIPTORSnmpWarmStartNotification__Event

Code samples for SECURITY_DESCRIPTOR property

Get instance of WMI class using GetObject, SECURITY_DESCRIPTOR property of __thisNAMESPACE

Short VBS code - get a single specified instance of __thisNAMESPACE 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\snmp\SMIR:" + _
 "__thisNAMESPACE=@")
Wscript.Echo wmiObject.SECURITY_DESCRIPTOR 'or other property name, see properties
See more VBS samples of __thisNAMESPACE class

WMI query - sample windows WQL with C#, SECURITY_DESCRIPTOR property of __thisNAMESPACE

Get a specified instance of __thisNAMESPACE by a key, get a default unnamed instance (singleton) of the class or list instances of the class by wmi query using this c# sample code.
See in another language: VBScript, VB.Net.
//https://wutils.com/wmi/

//Project -> Add reference -> System.Management
//using System.Management;

//create a management scope object
ManagementScope scope = new ManagementScope("\\\\.\\ROOT\\snmp\\SMIR");

//create object query
ObjectQuery query = new ObjectQuery("SELECT * FROM __thisNAMESPACE");

//create object searcher
ManagementObjectSearcher searcher =
                        new ManagementObjectSearcher(scope, query);

//get a collection of WMI objects
ManagementObjectCollection queryCollection = searcher.Get();

//enumerate the collection.
foreach (ManagementObject m in queryCollection) 
{
  // access properties of the WMI object
  Console.WriteLine("SECURITY_DESCRIPTOR : {0}", m["SECURITY_DESCRIPTOR"]);
  
}

WMI query - sample windows WQL with VB.Net, SECURITY_DESCRIPTOR property of __thisNAMESPACE

Get a specified instance of __thisNAMESPACE 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\snmp\SMIR")

'Get a result of WML query 
Dim Query As New ObjectQuery("SELECT * FROM __thisNAMESPACE")

'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("SECURITY_DESCRIPTOR : {0}", mObject("SECURITY_DESCRIPTOR"))
Next
comments powered by Disqus
WUtils.com