Timestamp - property in ROOT\MicrosoftDNS namespace

Timestamp in other namespaces

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

propertyClassOrigin
TimestampMicrosoftDNS_ResourceRecordMicrosoftDNS_ResourceRecord

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

propertyClassOrigin
TimestampMicrosoftDNS_AAAATypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_AFSDBTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_ATMATypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_ATypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_CNAMETypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_HINFOTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_ISDNTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_KEYTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_MBTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_MDTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_MFTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_MGTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_MINFOTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_MRTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_MXTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_NSTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_NXTTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_PTRTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_RPTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_RTTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_SIGTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_SOATypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_SRVTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_TXTTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_WINSRTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_WINSTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_WKSTypeMicrosoftDNS_ResourceRecord
TimestampMicrosoftDNS_X25TypeMicrosoftDNS_ResourceRecord

Code samples for Timestamp property

Get instance of WMI class using GetObject, Timestamp 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.Timestamp 'or other property name, see properties
See more VBS samples of MicrosoftDNS_AType class

WMI query - sample windows WQL with C#, Timestamp 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("Timestamp : {0}", m["Timestamp"]);
  
}

WMI query - sample windows WQL with VB.Net, Timestamp 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("Timestamp : {0}", mObject("Timestamp"))
Next
comments powered by Disqus
WUtils.com