Caption - property in ROOT\CIMV2\TerminalServices namespace

Caption in other namespaces

List of classes with Caption local property in ROOT\CIMV2\TerminalServices namespace

propertyClassOrigin
CaptionCIM_ManagedSystemElementCIM_ManagedSystemElement

List of classes with Caption derived property in ROOT\CIMV2\TerminalServices namespace

propertyClassOrigin
CaptionCIM_ElementSettingCIM_ManagedSystemElement
CaptionCIM_LogicalElementCIM_ManagedSystemElement
CaptionCIM_SettingCIM_ManagedSystemElement
CaptionWin32_RDCentralPublishedDeploymentSettingsCIM_ManagedSystemElement
CaptionWin32_RDCentralPublishedFarmCIM_ManagedSystemElement
CaptionWin32_RDCentralPublishedRemoteApplicationCIM_ManagedSystemElement
CaptionWin32_RDCentralPublishedRemoteDesktopCIM_ManagedSystemElement
CaptionWin32_RDPersonalDesktopAssignmentCIM_ManagedSystemElement
CaptionWin32_TerminalCIM_ManagedSystemElement
CaptionWin32_TerminalServiceSettingCIM_ManagedSystemElement
CaptionWin32_TerminalServiceToSettingCIM_ManagedSystemElement
CaptionWin32_TerminalSettingCIM_ManagedSystemElement
CaptionWin32_TerminalTerminalSettingCIM_ManagedSystemElement
CaptionWin32_TSAccountCIM_ManagedSystemElement
CaptionWin32_TSApplicationFileExtensionsCIM_ManagedSystemElement
CaptionWin32_TSClientSettingCIM_ManagedSystemElement
CaptionWin32_TSCPubPluginCIM_ManagedSystemElement
CaptionWin32_TSDeploymentLicensingCIM_ManagedSystemElement
CaptionWin32_TSDeploymentSettingsCIM_ManagedSystemElement
CaptionWin32_TSEnvironmentSettingCIM_ManagedSystemElement
CaptionWin32_TSExpandEnvironmentVariablesCIM_ManagedSystemElement
CaptionWin32_TSGeneralSettingCIM_ManagedSystemElement
CaptionWin32_TSGetIconCIM_ManagedSystemElement
CaptionWin32_TSLegacyPluginCIM_ManagedSystemElement
CaptionWin32_TSLogonSettingCIM_ManagedSystemElement
CaptionWin32_TSNetworkAdapterListSettingCIM_ManagedSystemElement
CaptionWin32_TSNetworkAdapterSettingCIM_ManagedSystemElement
CaptionWin32_TSPermissionsSettingCIM_ManagedSystemElement
CaptionWin32_TSPublishedApplicationCIM_ManagedSystemElement
CaptionWin32_TSPublishedApplicationListCIM_ManagedSystemElement
CaptionWin32_TSRemoteControlSettingCIM_ManagedSystemElement
CaptionWin32_TSRemoteDesktopCIM_ManagedSystemElement
CaptionWin32_TSSessionDirectoryCIM_ManagedSystemElement
CaptionWin32_TSSessionDirectorySettingCIM_ManagedSystemElement
CaptionWin32_TSSessionSettingCIM_ManagedSystemElement
CaptionWin32_TSStartMenuApplicationCIM_ManagedSystemElement
CaptionWin32_TSSystemInfoCIM_ManagedSystemElement
CaptionWin32_TSVirtualIPCIM_ManagedSystemElement
CaptionWin32_TSVirtualIPSettingCIM_ManagedSystemElement
CaptionWin32_TSVmCIM_ManagedSystemElement
CaptionWin32_TSVmMetadataItemCIM_ManagedSystemElement
CaptionWin32_WorkspaceCIM_ManagedSystemElement

Code samples for Caption property

Get instance of WMI class using GetObject, Caption property of Win32_TerminalServiceToSetting

Short VBS code - get a single specified instance of Win32_TerminalServiceToSetting 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\CIMV2\TerminalServices:" + _
 "Win32_TerminalServiceToSetting.Element=""Path to Win32_TerminalService"",Setting=""Path to Win32_TerminalServiceSetting""")
Wscript.Echo wmiObject.Caption 'or other property name, see properties
See more VBS samples of Win32_TerminalServiceToSetting class

WMI query - sample windows WQL with C#, Caption property of Win32_TerminalServiceToSetting

Get a specified instance of Win32_TerminalServiceToSetting 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\\CIMV2\\TerminalServices");

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

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

WMI query - sample windows WQL with VB.Net, Caption property of Win32_TerminalServiceToSetting

Get a specified instance of Win32_TerminalServiceToSetting 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\CIMV2\TerminalServices")

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

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