InstallDate - property in ROOT\StandardCimv2\MS_409 namespace

InstallDate in other namespaces

List of classes with InstallDate local property in ROOT\StandardCimv2\MS_409 namespace

propertyClassOrigin
InstallDateCIM_ManagedSystemElementCIM_ManagedSystemElement

List of classes with InstallDate derived property in ROOT\StandardCimv2\MS_409 namespace

propertyClassOrigin
InstallDateCIM_ConcreteJobCIM_ManagedSystemElement
InstallDateCIM_EnabledLogicalElementCIM_ManagedSystemElement
InstallDateCIM_FilterEntryBaseCIM_ManagedSystemElement
InstallDateCIM_IKESAEndpointCIM_ManagedSystemElement
InstallDateCIM_IPProtocolEndpointCIM_ManagedSystemElement
InstallDateCIM_IPsecSAEndpointCIM_ManagedSystemElement
InstallDateCIM_JobCIM_ManagedSystemElement
InstallDateCIM_LANEndpointCIM_ManagedSystemElement
InstallDateCIM_LogicalDeviceCIM_ManagedSystemElement
InstallDateCIM_LogicalElementCIM_ManagedSystemElement
InstallDateCIM_LogicalPortCIM_ManagedSystemElement
InstallDateCIM_NetworkPipeCIM_ManagedSystemElement
InstallDateCIM_NetworkPortCIM_ManagedSystemElement
InstallDateCIM_ProtocolEndpointCIM_ManagedSystemElement
InstallDateCIM_RemoteServiceAccessPointCIM_ManagedSystemElement
InstallDateCIM_SecurityAssociationEndpointCIM_ManagedSystemElement
InstallDateCIM_ServiceAccessPointCIM_ManagedSystemElement
InstallDateMSFT_LocalPrinterPortCIM_ManagedSystemElement
InstallDateMSFT_LprPrinterPortCIM_ManagedSystemElement
InstallDateMSFT_NetAdapterCIM_ManagedSystemElement
InstallDateMSFT_NetAddressFilterCIM_ManagedSystemElement
InstallDateMSFT_NetApplicationFilterCIM_ManagedSystemElement
InstallDateMSFT_NetBaseIPProtocolCIM_ManagedSystemElement
InstallDateMSFT_NetBranchCacheCacheCIM_ManagedSystemElement
InstallDateMSFT_NetBranchCacheDataCacheCIM_ManagedSystemElement
InstallDateMSFT_NetBranchCacheDataCacheExtensionCIM_ManagedSystemElement
InstallDateMSFT_NetBranchCacheHashCacheCIM_ManagedSystemElement
InstallDateMSFT_NetBranchCachePrimaryCacheCIM_ManagedSystemElement
InstallDateMSFT_NetBranchCacheSecondaryCacheCIM_ManagedSystemElement
InstallDateMSFT_NetBranchCacheStatusCIM_ManagedSystemElement
InstallDateMSFT_NetEventNetworkAdapterCIM_ManagedSystemElement
InstallDateMSFT_NetEventPacketCaptureProviderCIM_ManagedSystemElement
InstallDateMSFT_NetEventPacketCaptureTargetCIM_ManagedSystemElement
InstallDateMSFT_NetEventProviderCIM_ManagedSystemElement
InstallDateMSFT_NetEventProviderBaseCIM_ManagedSystemElement
InstallDateMSFT_NetEventSessionCIM_ManagedSystemElement
InstallDateMSFT_NetEventVmNetworkAdapterCIM_ManagedSystemElement
InstallDateMSFT_NetEventVmSwitchCIM_ManagedSystemElement
InstallDateMSFT_NetInterfaceFilterCIM_ManagedSystemElement
InstallDateMSFT_NetInterfaceTypeFilterCIM_ManagedSystemElement
InstallDateMSFT_NetIPAddressCIM_ManagedSystemElement
InstallDateMSFT_NetIPInterfaceCIM_ManagedSystemElement
InstallDateMSFT_NetIPv4ProtocolCIM_ManagedSystemElement
InstallDateMSFT_NetIPv6ProtocolCIM_ManagedSystemElement
InstallDateMSFT_NetMainModeSACIM_ManagedSystemElement
InstallDateMSFT_NetNeighborCIM_ManagedSystemElement
InstallDateMSFT_NetNetworkLayerSecurityFilterCIM_ManagedSystemElement
InstallDateMSFT_NetProtocolPortFilterCIM_ManagedSystemElement
InstallDateMSFT_NetQuickModeSACIM_ManagedSystemElement
InstallDateMSFT_NetServiceFilterCIM_ManagedSystemElement
InstallDateMSFT_NetTCPConnectionCIM_ManagedSystemElement
InstallDateMSFT_NetTransportConnectionCIM_ManagedSystemElement
InstallDateMSFT_NetTransportFilterCIM_ManagedSystemElement
InstallDateMSFT_NetUDPEndpointCIM_ManagedSystemElement
InstallDateMSFT_PrinterCIM_ManagedSystemElement
InstallDateMSFT_PrinterDriverCIM_ManagedSystemElement
InstallDateMSFT_PrinterPortCIM_ManagedSystemElement
InstallDateMSFT_PrintJobCIM_ManagedSystemElement
InstallDateMSFT_TcpIpPrinterPortCIM_ManagedSystemElement
InstallDateMSFT_WsdPrinterPortCIM_ManagedSystemElement

Code samples for InstallDate property

Get instance of WMI class using GetObject, InstallDate property of CIM_NetworkPipe

Short VBS code - get a single specified instance of CIM_NetworkPipe 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\StandardCimv2\MS_409:" + _
 "CIM_NetworkPipe.InstanceID=""Value""")
Wscript.Echo wmiObject.InstallDate 'or other property name, see properties
See more VBS samples of CIM_NetworkPipe class

WMI query - sample windows WQL with C#, InstallDate property of CIM_NetworkPipe

Get a specified instance of CIM_NetworkPipe 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\\StandardCimv2\\MS_409");

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

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

WMI query - sample windows WQL with VB.Net, InstallDate property of CIM_NetworkPipe

Get a specified instance of CIM_NetworkPipe 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\StandardCimv2\MS_409")

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

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