OwnerName - property in ROOT\MicrosoftDNS namespace

OwnerName in other namespaces

List of classes with OwnerName local property in ROOT\MicrosoftDNS namespace

propertyClassOrigin
OwnerNameMicrosoftDNS_ResourceRecordMicrosoftDNS_ResourceRecord

List of classes with OwnerName derived property in ROOT\MicrosoftDNS namespace

propertyClassOrigin
OwnerNameMicrosoftDNS_AAAATypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_AFSDBTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_ATMATypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_ATypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_CNAMETypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_HINFOTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_ISDNTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_KEYTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_MBTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_MDTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_MFTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_MGTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_MINFOTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_MRTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_MXTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_NSTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_NXTTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_PTRTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_RPTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_RTTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_SIGTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_SOATypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_SRVTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_TXTTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_WINSRTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_WINSTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_WKSTypeMicrosoftDNS_ResourceRecord
OwnerNameMicrosoftDNS_X25TypeMicrosoftDNS_ResourceRecord

Code samples for OwnerName property

Get instance of WMI class using GetObject, OwnerName property of MicrosoftDNS_AType

Short VBS code - get a single specified instance of MicrosoftDNS_AType 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\MicrosoftDNS:" + _
 "MicrosoftDNS_AType.ContainerName=""..RootHints"",DnsServerName=""..rootdomain.com"",DomainName=""in-addr-servers.arpa."",OwnerName=""a.in-addr-servers.arpa."",RecordClass=1,RecordData=""199.212.0.73""")
Wscript.Echo wmiObject.OwnerName 'or other property name, see properties
See more VBS samples of MicrosoftDNS_AType class

WMI query - sample windows WQL with C#, OwnerName property of MicrosoftDNS_AType

Get a specified instance of MicrosoftDNS_AType 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\\MicrosoftDNS");

//create object query
ObjectQuery query = new ObjectQuery("SELECT * FROM MicrosoftDNS_AType Where ContainerName=\"..RootHints\"DnsServerName=\"W2012SDC.rootdomain.com\"DomainName=\"in-addr-servers.arpa.\"OwnerName=\"a.in-addr-servers.arpa.\"RecordClass=\"1\"RecordData=\"199.212.0.73\"");

//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("OwnerName : {0}", m["OwnerName"]);
  
}

WMI query - sample windows WQL with VB.Net, OwnerName property of MicrosoftDNS_AType

Get a specified instance of MicrosoftDNS_AType 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\MicrosoftDNS")

'Get a result of WML query 
Dim Query As New ObjectQuery("SELECT * FROM MicrosoftDNS_AType Where ContainerName="..RootHints"DnsServerName="W2012SDC.rootdomain.com"DomainName="in-addr-servers.arpa."OwnerName="a.in-addr-servers.arpa."RecordClass="1"RecordData="199.212.0.73"")

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