uptimesoftware / monitor-citrix-xenapp

Launches an ICO session to test connectivity. If successful, gathers XenApp metrics.
4 stars 0 forks source link

What is the supported XenApp version for this plugin? #1

Open pc2550 opened 7 years ago

pc2550 commented 7 years ago

It seems like this plugin is looking for legacy performance counters: Win32_PerfFormattedData_MetaFrameXP_CitrixMetaFramePresentationServer

Which do not appear on servers with XenApp 7.6 components.

robertvandervoort commented 7 years ago

Your observation is correct. I would be a versions prior to 6.5 for sure.

If you can run the following Powershell on your XenApp server, it would be possible for me to re-write what we have here.

Gwmi -list -Namespace root\citrix | select | ? {$_.__PROPERTY_COUNT -gt 0} | Out-File root_citrix_output.txt Gwmi -list -Namespace root\citrix\hdx | select | ? {$_.__PROPERTY_COUNT -gt 0} | Out-File root_citrix_hdxoutput.txt Gwmi -list -Namespace root\citrix\Management | select * | ? {$.__PROPERTY_COUNT -gt 0} | Out-File root_citrix_management_output.txt

Then attach the files or email to me robertv@idera.com and I can see if there are direct equivalents and if not figure out what would make the most sense to include in a new plugin. Powershell, on that note, looks promising for monitoring as well in general but I'm not sure if Powershell on Linux is 100% compatible as I've not tested it.

pc2550 commented 7 years ago

Hi Robert,

These scripts all error out:

PS C:\Windows\system32> Gwmi -list -Namespace root\citrix | select * | ? {$.PROPERTY_COUNT -gt 0} | Out-File root_citr ix_output.txt $.__PROPERTY_COUNT : The term '$.PROPERTY_COUNT' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:51

PS C:\Windows\system32> Gwmi -list -Namespace root\citrix\hdx | select * | ? {$.__PROPERTY_COUNT -gt 0} | Out-File root_ citrix_hdx_output.txt $.__PROPERTY_COUNT : The term '$.__PROPERTY_COUNT' is not recognized as the name of a cmdlet, function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try again. At line:1 char:55 + Gwmi -list -Namespace root\citrix\hdx | select * | ? {$.__PROPERTY_COUNT -gt 0} ... + ~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: ($.__PROPERTY_COUNT:String) [], CommandNotFoundException + FullyQualifiedErrorId : CommandNotFoundException PS C:\Windows\system32> Gwmi -list -Namespace root\citrix\Management | select * | ? {$_.__PROPERTY_COUNT -gt 0} | Out-Fi le root_citrix_management_output.txt Gwmi : Could not get objects from namespace root\citrix\Management. Invalid namespace At line:1 char:1 + Gwmi -list -Namespace root\citrix\Management | select * | ? {$_.__PROPERTY_COUNT ... + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : ObjectNotFound: (:) [Get-WmiObject], ManagementException + FullyQualifiedErrorId : INVALID_NAMESPACE_IDENTIFIER,Microsoft.PowerShell.Commands.GetWmiObjectCommand Thank you, Paul Czopowik Senior Systems Administrator Columbia University College of Dental Medicine pc2550@cumc.columbia.edu From: Robert Vandervoort [mailto:notifications@github.com] Sent: Monday, January 9, 2017 6:30 PM To: uptimesoftware/monitor-citrix-xenapp Cc: Paweł Czopowik ; Author Subject: Re: [uptimesoftware/monitor-citrix-xenapp] What is the supported XenApp version for this plugin? (#1) Your observation is correct. I would be a versions prior to 6.5 for sure. If you can run the following Powershell on your XenApp server, it would be possible for me to re-write what we have here. Gwmi -list -Namespace root\citrix | select * | ? {$.__PROPERTY_COUNT -gt 0} | Out-File root_citrix_output.txt Gwmi -list -Namespace root\citrix\hdx | select * | ? {$.__PROPERTY_COUNT -gt 0} | Out-File root_citrix_hdx_output.txt Gwmi -list -Namespace root\citrix\Management | select * | ? {$_.__PROPERTY_COUNT -gt 0} | Out-File root_citrix_management_output.txt Then attach the files or email to me robertv@idera.com and I can see if there are direct equivalents and if not figure out what would make the most sense to include in a new plugin. Powershell, on that note, looks promising for monitoring as well in general but I'm not sure if Powershell on Linux is 100% compatible as I've not tested it. — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or mute the thread.
robertvandervoort commented 7 years ago

intersting... its a system property that tells how many properties are in each object. ok so we'll take those out.. they were just there to eliminate empty objects which WMI tends to have lots of...

Gwmi -list -Namespace root\citrix | select | Out-File root_citrix_output.txt Gwmi -list -Namespace root\citrix\hdx | select | Out-File root_citrix_hdx_output.txt Gwmi -list -Namespace root\citrix\Management | select * | Out-File root_citrix_management_output.txt

pc2550 commented 7 years ago

Hi Robert,

I’m attaching the 2 of 3 output files, the 3rd errored out:

PS C:\Users\pc2550da\Documents> Gwmi -list -Namespace root\citrix\Management | select * | Out-File root_citrix_management_output.txt Gwmi : Could not get objects from namespace root\citrix\Management. Invalid namespace At line:1 char:1

Thank you, Paul Czopowik Senior Systems Administrator Columbia University College of Dental Medicine pc2550@cumc.columbia.edumailto:pc2550@cumc.columbia.edu

From: Robert Vandervoort [mailto:notifications@github.com] Sent: Tuesday, January 10, 2017 11:02 AM To: uptimesoftware/monitor-citrix-xenapp monitor-citrix-xenapp@noreply.github.com Cc: Paweł Czopowik pc2550@columbia.edu; Author author@noreply.github.com Subject: Re: [uptimesoftware/monitor-citrix-xenapp] What is the supported XenApp version for this plugin? (#1)

intersting... its a system property that tells how many properties are in each object. ok so we'll take those out.. they were just there to eliminate empty objects which WMI tends to have lots of...

Gwmi -list -Namespace root\citrix | select | Out-File root_citrix_output.txt Gwmi -list -Namespace root\citrix\hdx | select | Out-File root_citrix_hdx_output.txt Gwmi -list -Namespace root\citrix\Management | select * | Out-File root_citrix_management_output.txt

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHubhttps://github.com/uptimesoftware/monitor-citrix-xenapp/issues/1#issuecomment-271615447, or mute the threadhttps://github.com/notifications/unsubscribe-auth/ABrzl4LaAxvn5mNuJENXQ9mvc6AWRR8Vks5rQ6t8gaJpZM4LErWA.



PSComputerName : CDM-VCTXVDA01T Name : CIM_Indication GENUS : 1 CLASS : CIM_Indication SUPERCLASS : DYNASTY : CIM_Indication RELPATH : CIM_Indication __PROPERTY_COUNT : 8 DERIVATION : {} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix __PATH : \CDM-VCTXVDA01T\ROOT\citrix:CIM_Indication Path : \CDM-VCTXVDA01T\ROOT\citrix:CIM_Indication Derivation : {} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:CIM_Indication Properties : {CorrelatedIndications, IndicationFilterName, IndicationIdentifier, IndicationTime...} SystemProperties : {GENUS, CLASS, SUPERCLASS, DYNASTY...} Qualifiers : {Abstract, Description, Indication, UMLPackagePath...} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : CIM_ClassIndication GENUS : 1 CLASS : CIM_ClassIndication SUPERCLASS : CIM_Indication __DYNASTY : CIM_Indication RELPATH : CIM_ClassIndication PROPERTY_COUNT : 9 __DERIVATION : {CIM_Indication} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:CIM_ClassIndication Path : \CDM-VCTXVDA01T\ROOT\citrix:CIM_ClassIndication Derivation : {CIM_Indication} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:CIM_ClassIndication Properties : {ClassDefinition, CorrelatedIndications, IndicationFilterName, IndicationIdentifier...} SystemProperties : {GENUS, CLASS, SUPERCLASS, DYNASTY...} Qualifiers : {Abstract, Description, Indication, UMLPackagePath...} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : CIM_ClassDeletion GENUS : 1 CLASS : CIM_ClassDeletion SUPERCLASS : CIM_ClassIndication __DYNASTY : CIM_Indication RELPATH : CIM_ClassDeletion PROPERTY_COUNT : 9 DERIVATION : {CIM_ClassIndication, CIM_Indication} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:CIM_ClassDeletion Path : \CDM-VCTXVDA01T\ROOT\citrix:CIM_ClassDeletion Derivation : {CIM_ClassIndication, CIM_Indication} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:CIM_ClassDeletion Properties : {ClassDefinition, CorrelatedIndications, IndicationFilterName, IndicationIdentifier...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {Description, Indication, UMLPackagePath, Version} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : CIM_ClassCreation GENUS : 1 CLASS : CIM_ClassCreation SUPERCLASS : CIM_ClassIndication __DYNASTY : CIM_Indication RELPATH : CIM_ClassCreation PROPERTY_COUNT : 9 DERIVATION : {CIM_ClassIndication, CIM_Indication} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:CIM_ClassCreation Path : \CDM-VCTXVDA01T\ROOT\citrix:CIM_ClassCreation Derivation : {CIM_ClassIndication, CIM_Indication} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:CIM_ClassCreation Properties : {ClassDefinition, CorrelatedIndications, IndicationFilterName, IndicationIdentifier...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {Description, Indication, UMLPackagePath, Version} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : CIM_ClassModification GENUS : 1 CLASS : CIM_ClassModification SUPERCLASS : CIM_ClassIndication __DYNASTY : CIM_Indication RELPATH : CIM_ClassModification PROPERTY_COUNT : 10 DERIVATION : {CIM_ClassIndication, CIM_Indication} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:CIM_ClassModification Path : \CDM-VCTXVDA01T\ROOT\citrix:CIM_ClassModification Derivation : {CIM_ClassIndication, CIM_Indication} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:CIM_ClassModification Properties : {ClassDefinition, CorrelatedIndications, IndicationFilterName, IndicationIdentifier...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {Description, Indication, UMLPackagePath, Version} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : CIM_InstIndication GENUS : 1 CLASS : CIM_InstIndication SUPERCLASS : CIM_Indication __DYNASTY : CIM_Indication RELPATH : CIM_InstIndication PROPERTY_COUNT : 11 __DERIVATION : {CIM_Indication} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:CIM_InstIndication Path : \CDM-VCTXVDA01T\ROOT\citrix:CIM_InstIndication Derivation : {CIM_Indication} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:CIM_InstIndication Properties : {CorrelatedIndications, IndicationFilterName, IndicationIdentifier, IndicationTime...} SystemProperties : {GENUS, CLASS, SUPERCLASS, DYNASTY...} Qualifiers : {Abstract, Description, Indication, UMLPackagePath...} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : CIM_InstCreation GENUS : 1 CLASS : CIM_InstCreation SUPERCLASS : CIM_InstIndication __DYNASTY : CIM_Indication RELPATH : CIM_InstCreation PROPERTY_COUNT : 11 DERIVATION : {CIM_InstIndication, CIM_Indication} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:CIM_InstCreation Path : \CDM-VCTXVDA01T\ROOT\citrix:CIM_InstCreation Derivation : {CIM_InstIndication, CIM_Indication} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:CIM_InstCreation Properties : {CorrelatedIndications, IndicationFilterName, IndicationIdentifier, IndicationTime...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {Description, Indication, UMLPackagePath, Version} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : CIM_InstModification GENUS : 1 CLASS : CIM_InstModification SUPERCLASS : CIM_InstIndication __DYNASTY : CIM_Indication RELPATH : CIM_InstModification PROPERTY_COUNT : 12 DERIVATION : {CIM_InstIndication, CIM_Indication} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:CIM_InstModification Path : \CDM-VCTXVDA01T\ROOT\citrix:CIM_InstModification Derivation : {CIM_InstIndication, CIM_Indication} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:CIM_InstModification Properties : {CorrelatedIndications, IndicationFilterName, IndicationIdentifier, IndicationTime...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {Description, Indication, UMLPackagePath, Version} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : CIM_InstDeletion GENUS : 1 CLASS : CIM_InstDeletion SUPERCLASS : CIM_InstIndication __DYNASTY : CIM_Indication RELPATH : CIM_InstDeletion PROPERTY_COUNT : 11 DERIVATION : {CIM_InstIndication, CIM_Indication} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:CIM_InstDeletion Path : \CDM-VCTXVDA01T\ROOT\citrix:CIM_InstDeletion Derivation : {CIM_InstIndication, CIM_Indication} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:CIM_InstDeletion Properties : {CorrelatedIndications, IndicationFilterName, IndicationIdentifier, IndicationTime...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {Description, Indication, UMLPackagePath, Version} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : NotifyStatus GENUS : 1 CLASS : NotifyStatus SUPERCLASS : DYNASTY : NotifyStatus RELPATH : NotifyStatus PROPERTY_COUNT : 1 DERIVATION : {} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:NotifyStatus Path : \CDM-VCTXVDA01T\ROOT\citrix:NotifyStatus Derivation : {} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:NotifyStatus Properties : {StatusCode} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : ExtendedStatus GENUS : 1 CLASS : ExtendedStatus SUPERCLASS : NotifyStatus DYNASTY : NotifyStatus RELPATH : ExtendedStatus __PROPERTY_COUNT : 5 DERIVATION : {NotifyStatus} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:ExtendedStatus Path : \CDM-VCTXVDA01T\ROOT\citrix:ExtendedStatus Derivation : {NotifyStatus} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:ExtendedStatus Properties : {Description, Operation, ParameterInfo, ProviderName...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : CIM_Error GENUS : 1 CLASS : CIM_Error SUPERCLASS : DYNASTY : CIM_Error RELPATH : CIM_Error __PROPERTY_COUNT : 15 DERIVATION : {} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix __PATH : \CDM-VCTXVDA01T\ROOT\citrix:CIM_Error Path : \CDM-VCTXVDA01T\ROOT\citrix:CIM_Error Derivation : {} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:CIM_Error Properties : {CIMStatusCode, CIMStatusCodeDescription, ErrorSource, ErrorSourceFormat...} SystemProperties : {GENUS, CLASS, SUPERCLASS, DYNASTY...} Qualifiers : {Description, Exception, Indication, UMLPackagePath...} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : MSFT_WmiError GENUS : 1 CLASS : MSFT_WmiError SUPERCLASS : CIM_Error __DYNASTY : CIM_Error RELPATH : MSFT_WmiError PROPERTY_COUNT : 19 __DERIVATION : {CIM_Error} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:MSFT_WmiError Path : \CDM-VCTXVDA01T\ROOT\citrix:MSFT_WmiError Derivation : {CIM_Error} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:MSFT_WmiError Properties : {CIMStatusCode, CIMStatusCodeDescription, error_Category, error_Code...} SystemProperties : {GENUS, CLASS, SUPERCLASS, DYNASTY...} Qualifiers : {Description, Exception, Indication} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : MSFT_ExtendedStatus GENUS : 1 CLASS : MSFT_ExtendedStatus SUPERCLASS : MSFT_WmiError __DYNASTY : CIM_Error RELPATH : MSFT_ExtendedStatus PROPERTY_COUNT : 20 DERIVATION : {MSFT_WmiError, CIM_Error} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:MSFT_ExtendedStatus Path : \CDM-VCTXVDA01T\ROOT\citrix:MSFT_ExtendedStatus Derivation : {MSFT_WmiError, CIM_Error} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:MSFT_ExtendedStatus Properties : {CIMStatusCode, CIMStatusCodeDescription, error_Category, error_Code...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {Description, Exception, Indication} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : SecurityRelatedClass GENUS : 1 CLASS : SecurityRelatedClass SUPERCLASS : DYNASTY : SecurityRelatedClass RELPATH : SecurityRelatedClass PROPERTY_COUNT : 0 DERIVATION : {} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:SecurityRelatedClass Path : \CDM-VCTXVDA01T\ROOT\citrix:SecurityRelatedClass Derivation : {} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:SecurityRelatedClass Properties : {} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : Trustee GENUS : 1 CLASS : Trustee SUPERCLASS : SecurityRelatedClass DYNASTY : SecurityRelatedClass RELPATH : Trustee __PROPERTY_COUNT : 6 DERIVATION : {SecurityRelatedClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:Trustee Path : \CDM-VCTXVDA01T\ROOT\citrix:Trustee Derivation : {SecurityRelatedClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:Trustee Properties : {Domain, Name, SID, SidLength...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : NTLMUser9X GENUS : 1 CLASS : NTLMUser9X SUPERCLASS : SecurityRelatedClass DYNASTY : SecurityRelatedClass RELPATH : NTLMUser9X __PROPERTY_COUNT : 5 DERIVATION : {SecurityRelatedClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:NTLMUser9X Path : \CDM-VCTXVDA01T\ROOT\citrix:NTLMUser9X Derivation : {SecurityRelatedClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:NTLMUser9X Properties : {Authority, Flags, Mask, Name...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : ACE GENUS : 1 CLASS : ACE SUPERCLASS : SecurityRelatedClass DYNASTY : SecurityRelatedClass RELPATH : ACE __PROPERTY_COUNT : 7 DERIVATION : {SecurityRelatedClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:ACE Path : \CDM-VCTXVDA01T\ROOT\citrix:ACE Derivation : {SecurityRelatedClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:ACE Properties : {AccessMask, AceFlags, AceType, GuidInheritedObjectType...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : SecurityDescriptor GENUS : 1 CLASS : SecurityDescriptor SUPERCLASS : SecurityRelatedClass DYNASTY : SecurityRelatedClass RELPATH : SecurityDescriptor __PROPERTY_COUNT : 6 DERIVATION : {SecurityRelatedClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:SecurityDescriptor Path : \CDM-VCTXVDA01T\ROOT\citrix:SecurityDescriptor Derivation : {SecurityRelatedClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:SecurityDescriptor Properties : {ControlFlags, DACL, Group, Owner...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : PARAMETERS GENUS : 1 CLASS : PARAMETERS SUPERCLASS : DYNASTY : PARAMETERS RELPATH : PARAMETERS PROPERTY_COUNT : 0 DERIVATION : {} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:PARAMETERS Path : \CDM-VCTXVDA01T\ROOT\citrix:PARAMETERS Derivation : {} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:PARAMETERS Properties : {} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : SystemClass GENUS : 1 CLASS : SystemClass SUPERCLASS : DYNASTY : SystemClass RELPATH : SystemClass PROPERTY_COUNT : 0 DERIVATION : {} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:SystemClass Path : \CDM-VCTXVDA01T\ROOT\citrix:SystemClass Derivation : {} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:SystemClass Properties : {} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : ProviderRegistration GENUS : 1 CLASS : ProviderRegistration SUPERCLASS : SystemClass DYNASTY : SystemClass RELPATH : ProviderRegistration __PROPERTY_COUNT : 1 DERIVATION : {SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:ProviderRegistration Path : \CDM-VCTXVDA01T\ROOT\citrix:ProviderRegistration Derivation : {SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:ProviderRegistration Properties : {provider} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : EventProviderRegistration GENUS : 1 CLASS : EventProviderRegistration SUPERCLASS : ProviderRegistration DYNASTY : SystemClass RELPATH : EventProviderRegistration __PROPERTY_COUNT : 2 DERIVATION : {ProviderRegistration, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:EventProviderRegistration Path : \CDM-VCTXVDA01T\ROOT\citrix:EventProviderRegistration Derivation : {ProviderRegistration, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:EventProviderRegistration Properties : {EventQueryList, provider} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : ObjectProviderRegistration GENUS : 1 CLASS : ObjectProviderRegistration SUPERCLASS : ProviderRegistration DYNASTY : SystemClass RELPATH : ObjectProviderRegistration __PROPERTY_COUNT : 9 DERIVATION : {ProviderRegistration, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:ObjectProviderRegistration Path : \CDM-VCTXVDA01T\ROOT\citrix:ObjectProviderRegistration Derivation : {ProviderRegistration, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:ObjectProviderRegistration Properties : {InteractionType, provider, QuerySupportLevels, SupportsBatching...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : ClassProviderRegistration GENUS : 1 CLASS : ClassProviderRegistration SUPERCLASS : ObjectProviderRegistration DYNASTY : SystemClass RELPATH : ClassProviderRegistration __PROPERTY_COUNT : 16 DERIVATION : {ObjectProviderRegistration, ProviderRegistration, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:ClassProviderRegistration Path : \CDM-VCTXVDA01T\ROOT\citrix:ClassProviderRegistration Derivation : {ObjectProviderRegistration, ProviderRegistration, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:ClassProviderRegistration Properties : {CacheRefreshInterval, InteractionType, PerUserSchema, provider...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : InstanceProviderRegistration GENUS : 1 CLASS : InstanceProviderRegistration SUPERCLASS : ObjectProviderRegistration DYNASTY : SystemClass RELPATH : InstanceProviderRegistration __PROPERTY_COUNT : 9 DERIVATION : {ObjectProviderRegistration, ProviderRegistration, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:InstanceProviderRegistration Path : \CDM-VCTXVDA01T\ROOT\citrix:InstanceProviderRegistration Derivation : {ObjectProviderRegistration, ProviderRegistration, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:InstanceProviderRegistration Properties : {InteractionType, provider, QuerySupportLevels, SupportsBatching...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : MethodProviderRegistration GENUS : 1 CLASS : MethodProviderRegistration SUPERCLASS : ProviderRegistration DYNASTY : SystemClass RELPATH : MethodProviderRegistration __PROPERTY_COUNT : 1 DERIVATION : {ProviderRegistration, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:MethodProviderRegistration Path : \CDM-VCTXVDA01T\ROOT\citrix:MethodProviderRegistration Derivation : {ProviderRegistration, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:MethodProviderRegistration Properties : {provider} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : PropertyProviderRegistration GENUS : 1 CLASS : PropertyProviderRegistration SUPERCLASS : ProviderRegistration DYNASTY : SystemClass RELPATH : PropertyProviderRegistration __PROPERTY_COUNT : 3 DERIVATION : {ProviderRegistration, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:PropertyProviderRegistration Path : \CDM-VCTXVDA01T\ROOT\citrix:PropertyProviderRegistration Derivation : {ProviderRegistration, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:PropertyProviderRegistration Properties : {provider, SupportsGet, SupportsPut} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : EventConsumerProviderRegistration GENUS : 1 CLASS : EventConsumerProviderRegistration SUPERCLASS : ProviderRegistration DYNASTY : SystemClass RELPATH : EventConsumerProviderRegistration __PROPERTY_COUNT : 2 DERIVATION : {ProviderRegistration, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:EventConsumerProviderRegistration Path : \CDM-VCTXVDA01T\ROOT\citrix:EventConsumerProviderRegistration Derivation : {ProviderRegistration, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:EventConsumerProviderRegistration Properties : {ConsumerClassNames, provider} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : thisNAMESPACE GENUS : 1 CLASS : thisNAMESPACE SUPERCLASS : SystemClass DYNASTY : SystemClass RELPATH : thisNAMESPACE PROPERTY_COUNT : 1 DERIVATION : {SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:thisNAMESPACE Path : \CDM-VCTXVDA01T\ROOT\citrix:thisNAMESPACE Derivation : {SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:__thisNAMESPACE Properties : {SECURITY_DESCRIPTOR} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {singleton} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : NAMESPACE GENUS : 1 CLASS : NAMESPACE SUPERCLASS : SystemClass DYNASTY : SystemClass RELPATH : NAMESPACE __PROPERTY_COUNT : 1 DERIVATION : {SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:NAMESPACE Path : \CDM-VCTXVDA01T\ROOT\citrix:NAMESPACE Derivation : {SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:NAMESPACE Properties : {Name} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : IndicationRelated GENUS : 1 CLASS : IndicationRelated SUPERCLASS : SystemClass DYNASTY : SystemClass RELPATH : IndicationRelated __PROPERTY_COUNT : 0 DERIVATION : {SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:IndicationRelated Path : \CDM-VCTXVDA01T\ROOT\citrix:IndicationRelated Derivation : {SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:IndicationRelated Properties : {} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : FilterToConsumerBinding GENUS : 1 CLASS : FilterToConsumerBinding SUPERCLASS : IndicationRelated DYNASTY : SystemClass RELPATH : FilterToConsumerBinding __PROPERTY_COUNT : 7 DERIVATION : {IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:FilterToConsumerBinding Path : \CDM-VCTXVDA01T\ROOT\citrix:FilterToConsumerBinding Derivation : {IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:FilterToConsumerBinding Properties : {Consumer, CreatorSID, DeliverSynchronously, DeliveryQoS...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {Association} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : EventConsumer GENUS : 1 CLASS : EventConsumer SUPERCLASS : IndicationRelated DYNASTY : SystemClass RELPATH : EventConsumer __PROPERTY_COUNT : 3 DERIVATION : {IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:EventConsumer Path : \CDM-VCTXVDA01T\ROOT\citrix:EventConsumer Derivation : {IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:EventConsumer Properties : {CreatorSID, MachineName, MaximumQueueSize} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : AggregateEvent GENUS : 1 CLASS : AggregateEvent SUPERCLASS : IndicationRelated DYNASTY : SystemClass RELPATH : AggregateEvent __PROPERTY_COUNT : 2 DERIVATION : {IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:AggregateEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:AggregateEvent Derivation : {IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:AggregateEvent Properties : {NumberOfEvents, Representative} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : TimerNextFiring GENUS : 1 CLASS : TimerNextFiring SUPERCLASS : IndicationRelated DYNASTY : SystemClass RELPATH : TimerNextFiring __PROPERTY_COUNT : 2 DERIVATION : {IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:TimerNextFiring Path : \CDM-VCTXVDA01T\ROOT\citrix:TimerNextFiring Derivation : {IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:TimerNextFiring Properties : {NextEvent64BitTime, TimerId} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : EventFilter GENUS : 1 CLASS : EventFilter SUPERCLASS : IndicationRelated DYNASTY : SystemClass RELPATH : EventFilter __PROPERTY_COUNT : 6 DERIVATION : {IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:EventFilter Path : \CDM-VCTXVDA01T\ROOT\citrix:EventFilter Derivation : {IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:EventFilter Properties : {CreatorSID, EventAccess, EventNamespace, Name...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : Event GENUS : 1 CLASS : Event SUPERCLASS : IndicationRelated DYNASTY : SystemClass RELPATH : Event __PROPERTY_COUNT : 2 DERIVATION : {IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:Event Path : \CDM-VCTXVDA01T\ROOT\citrix:Event Derivation : {IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:Event Properties : {SECURITY_DESCRIPTOR, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : NamespaceOperationEvent GENUS : 1 CLASS : NamespaceOperationEvent SUPERCLASS : Event DYNASTY : SystemClass RELPATH : NamespaceOperationEvent __PROPERTY_COUNT : 3 DERIVATION : {Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:NamespaceOperationEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:NamespaceOperationEvent Derivation : {Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:NamespaceOperationEvent Properties : {SECURITY_DESCRIPTOR, TargetNamespace, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : NamespaceModificationEvent GENUS : 1 CLASS : NamespaceModificationEvent SUPERCLASS : NamespaceOperationEvent DYNASTY : SystemClass RELPATH : NamespaceModificationEvent __PROPERTY_COUNT : 4 DERIVATION : {NamespaceOperationEvent, Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:NamespaceModificationEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:NamespaceModificationEvent Derivation : {NamespaceOperationEvent, Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:NamespaceModificationEvent Properties : {PreviousNamespace, SECURITY_DESCRIPTOR, TargetNamespace, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : NamespaceDeletionEvent GENUS : 1 CLASS : NamespaceDeletionEvent SUPERCLASS : NamespaceOperationEvent DYNASTY : SystemClass RELPATH : NamespaceDeletionEvent __PROPERTY_COUNT : 3 DERIVATION : {NamespaceOperationEvent, Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:NamespaceDeletionEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:NamespaceDeletionEvent Derivation : {NamespaceOperationEvent, Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:NamespaceDeletionEvent Properties : {SECURITY_DESCRIPTOR, TargetNamespace, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : NamespaceCreationEvent GENUS : 1 CLASS : NamespaceCreationEvent SUPERCLASS : NamespaceOperationEvent DYNASTY : SystemClass RELPATH : NamespaceCreationEvent __PROPERTY_COUNT : 3 DERIVATION : {NamespaceOperationEvent, Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:NamespaceCreationEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:NamespaceCreationEvent Derivation : {NamespaceOperationEvent, Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:NamespaceCreationEvent Properties : {SECURITY_DESCRIPTOR, TargetNamespace, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : ClassOperationEvent GENUS : 1 CLASS : ClassOperationEvent SUPERCLASS : Event DYNASTY : SystemClass RELPATH : ClassOperationEvent __PROPERTY_COUNT : 3 DERIVATION : {Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:ClassOperationEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:ClassOperationEvent Derivation : {Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:ClassOperationEvent Properties : {SECURITY_DESCRIPTOR, TargetClass, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : ClassDeletionEvent GENUS : 1 CLASS : ClassDeletionEvent SUPERCLASS : ClassOperationEvent DYNASTY : SystemClass RELPATH : ClassDeletionEvent __PROPERTY_COUNT : 3 DERIVATION : {ClassOperationEvent, Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:ClassDeletionEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:ClassDeletionEvent Derivation : {ClassOperationEvent, Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:ClassDeletionEvent Properties : {SECURITY_DESCRIPTOR, TargetClass, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : ClassModificationEvent GENUS : 1 CLASS : ClassModificationEvent SUPERCLASS : ClassOperationEvent DYNASTY : SystemClass RELPATH : ClassModificationEvent __PROPERTY_COUNT : 4 DERIVATION : {ClassOperationEvent, Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:ClassModificationEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:ClassModificationEvent Derivation : {ClassOperationEvent, Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:ClassModificationEvent Properties : {PreviousClass, SECURITY_DESCRIPTOR, TargetClass, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : ClassCreationEvent GENUS : 1 CLASS : ClassCreationEvent SUPERCLASS : ClassOperationEvent DYNASTY : SystemClass RELPATH : ClassCreationEvent __PROPERTY_COUNT : 3 DERIVATION : {ClassOperationEvent, Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:ClassCreationEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:ClassCreationEvent Derivation : {ClassOperationEvent, Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:ClassCreationEvent Properties : {SECURITY_DESCRIPTOR, TargetClass, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : InstanceOperationEvent GENUS : 1 CLASS : InstanceOperationEvent SUPERCLASS : Event DYNASTY : SystemClass RELPATH : InstanceOperationEvent __PROPERTY_COUNT : 3 DERIVATION : {Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:InstanceOperationEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:InstanceOperationEvent Derivation : {Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:InstanceOperationEvent Properties : {SECURITY_DESCRIPTOR, TargetInstance, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : InstanceCreationEvent GENUS : 1 CLASS : InstanceCreationEvent SUPERCLASS : InstanceOperationEvent DYNASTY : SystemClass RELPATH : InstanceCreationEvent __PROPERTY_COUNT : 3 DERIVATION : {InstanceOperationEvent, Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:InstanceCreationEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:InstanceCreationEvent Derivation : {InstanceOperationEvent, Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:InstanceCreationEvent Properties : {SECURITY_DESCRIPTOR, TargetInstance, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : MethodInvocationEvent GENUS : 1 CLASS : MethodInvocationEvent SUPERCLASS : InstanceOperationEvent DYNASTY : SystemClass RELPATH : MethodInvocationEvent PROPERTY_COUNT : 6 DERIVATION : {InstanceOperationEvent, Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:MethodInvocationEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:MethodInvocationEvent Derivation : {InstanceOperationEvent, Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:__MethodInvocationEvent Properties : {Method, Parameters, PreCall, SECURITY_DESCRIPTOR...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : InstanceModificationEvent GENUS : 1 CLASS : InstanceModificationEvent SUPERCLASS : InstanceOperationEvent DYNASTY : SystemClass RELPATH : InstanceModificationEvent __PROPERTY_COUNT : 4 DERIVATION : {InstanceOperationEvent, Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:InstanceModificationEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:InstanceModificationEvent Derivation : {InstanceOperationEvent, Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:InstanceModificationEvent Properties : {PreviousInstance, SECURITY_DESCRIPTOR, TargetInstance, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : InstanceDeletionEvent GENUS : 1 CLASS : InstanceDeletionEvent SUPERCLASS : InstanceOperationEvent DYNASTY : SystemClass RELPATH : InstanceDeletionEvent __PROPERTY_COUNT : 3 DERIVATION : {InstanceOperationEvent, Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:InstanceDeletionEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:InstanceDeletionEvent Derivation : {InstanceOperationEvent, Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:InstanceDeletionEvent Properties : {SECURITY_DESCRIPTOR, TargetInstance, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : TimerEvent GENUS : 1 CLASS : TimerEvent SUPERCLASS : Event DYNASTY : SystemClass RELPATH : TimerEvent __PROPERTY_COUNT : 4 DERIVATION : {Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:TimerEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:TimerEvent Derivation : {Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:TimerEvent Properties : {NumFirings, SECURITY_DESCRIPTOR, TIME_CREATED, TimerId} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : ExtrinsicEvent GENUS : 1 CLASS : ExtrinsicEvent SUPERCLASS : Event DYNASTY : SystemClass RELPATH : ExtrinsicEvent __PROPERTY_COUNT : 2 DERIVATION : {Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:ExtrinsicEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:ExtrinsicEvent Derivation : {Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:ExtrinsicEvent Properties : {SECURITY_DESCRIPTOR, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : SystemEvent GENUS : 1 CLASS : SystemEvent SUPERCLASS : ExtrinsicEvent DYNASTY : SystemClass RELPATH : SystemEvent __PROPERTY_COUNT : 2 DERIVATION : {ExtrinsicEvent, Event, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:SystemEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:SystemEvent Derivation : {ExtrinsicEvent, Event, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:SystemEvent Properties : {SECURITY_DESCRIPTOR, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : EventDroppedEvent GENUS : 1 CLASS : EventDroppedEvent SUPERCLASS : SystemEvent DYNASTY : SystemClass RELPATH : EventDroppedEvent __PROPERTY_COUNT : 4 DERIVATION : {SystemEvent, ExtrinsicEvent, Event, IndicationRelated...} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:EventDroppedEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:EventDroppedEvent Derivation : {SystemEvent, ExtrinsicEvent, Event, IndicationRelated...} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:EventDroppedEvent Properties : {Event, IntendedConsumer, SECURITY_DESCRIPTOR, TIME_CREATED} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : EventQueueOverflowEvent GENUS : 1 CLASS : EventQueueOverflowEvent SUPERCLASS : EventDroppedEvent DYNASTY : SystemClass RELPATH : EventQueueOverflowEvent PROPERTY_COUNT : 5 DERIVATION : {EventDroppedEvent, SystemEvent, ExtrinsicEvent, Event...} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:EventQueueOverflowEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:EventQueueOverflowEvent Derivation : {EventDroppedEvent, SystemEvent, ExtrinsicEvent, Event...} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:__EventQueueOverflowEvent Properties : {CurrentQueueSize, Event, IntendedConsumer, SECURITY_DESCRIPTOR...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : QOSFailureEvent GENUS : 1 CLASS : QOSFailureEvent SUPERCLASS : EventDroppedEvent DYNASTY : SystemClass RELPATH : QOSFailureEvent __PROPERTY_COUNT : 6 DERIVATION : {EventDroppedEvent, SystemEvent, ExtrinsicEvent, Event...} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:QOSFailureEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:QOSFailureEvent Derivation : {EventDroppedEvent, SystemEvent, ExtrinsicEvent, Event...} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:QOSFailureEvent Properties : {ErrorCode, ErrorDescription, Event, IntendedConsumer...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : ConsumerFailureEvent GENUS : 1 CLASS : ConsumerFailureEvent SUPERCLASS : EventDroppedEvent DYNASTY : SystemClass RELPATH : ConsumerFailureEvent __PROPERTY_COUNT : 7 DERIVATION : {EventDroppedEvent, SystemEvent, ExtrinsicEvent, Event...} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:ConsumerFailureEvent Path : \CDM-VCTXVDA01T\ROOT\citrix:ConsumerFailureEvent Derivation : {EventDroppedEvent, SystemEvent, ExtrinsicEvent, Event...} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:ConsumerFailureEvent Properties : {ErrorCode, ErrorDescription, ErrorObject, Event...} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : EventGenerator GENUS : 1 CLASS : EventGenerator SUPERCLASS : IndicationRelated DYNASTY : SystemClass RELPATH : EventGenerator __PROPERTY_COUNT : 0 DERIVATION : {IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:EventGenerator Path : \CDM-VCTXVDA01T\ROOT\citrix:EventGenerator Derivation : {IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:EventGenerator Properties : {} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : TimerInstruction GENUS : 1 CLASS : TimerInstruction SUPERCLASS : EventGenerator DYNASTY : SystemClass RELPATH : TimerInstruction __PROPERTY_COUNT : 2 DERIVATION : {EventGenerator, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:TimerInstruction Path : \CDM-VCTXVDA01T\ROOT\citrix:TimerInstruction Derivation : {EventGenerator, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:TimerInstruction Properties : {SkipIfPassed, TimerId} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {abstract} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : AbsoluteTimerInstruction GENUS : 1 CLASS : AbsoluteTimerInstruction SUPERCLASS : TimerInstruction DYNASTY : SystemClass RELPATH : AbsoluteTimerInstruction __PROPERTY_COUNT : 3 DERIVATION : {TimerInstruction, EventGenerator, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:AbsoluteTimerInstruction Path : \CDM-VCTXVDA01T\ROOT\citrix:AbsoluteTimerInstruction Derivation : {TimerInstruction, EventGenerator, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:AbsoluteTimerInstruction Properties : {EventDateTime, SkipIfPassed, TimerId} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : IntervalTimerInstruction GENUS : 1 CLASS : IntervalTimerInstruction SUPERCLASS : TimerInstruction DYNASTY : SystemClass RELPATH : IntervalTimerInstruction __PROPERTY_COUNT : 3 DERIVATION : {TimerInstruction, EventGenerator, IndicationRelated, SystemClass} SERVER : CDM-VCTXVDA01T NAMESPACE : ROOT\citrix PATH : \CDM-VCTXVDA01T\ROOT\citrix:IntervalTimerInstruction Path : \CDM-VCTXVDA01T\ROOT\citrix:IntervalTimerInstruction Derivation : {TimerInstruction, EventGenerator, IndicationRelated, SystemClass} Methods : {} Scope : System.Management.ManagementScope Options : System.Management.ObjectGetOptions ClassPath : \CDM-VCTXVDA01T\ROOT\citrix:IntervalTimerInstruction Properties : {IntervalBetweenEvents, SkipIfPassed, TimerId} SystemProperties : {GENUS, CLASS, SUPERCLASS, __DYNASTY...} Qualifiers : {} Site : Container :

PSComputerName : CDM-VCTXVDA01T Name : Provider GENUS : 1 CLASS : Provider SUPERCLASS : SystemClass DYNASTY : SystemClass RELPATH : Provider __PROPERTY_COUNT : 1 DERIVATION : {SystemCl

robertvandervoort commented 7 years ago

Paul,

I don't see the attachements... I see the long list there but nothing from root\citrix\hdx... can you email them to my work email?

Thanks, and sorry for the hassle.