polmkrBaseHash - property in ROOT\RSOP\User\S_1_5_21_4251975986_251742880_3643873951_1002 namespace

polmkrBaseHash in other namespaces

List of classes with polmkrBaseHash local property in ROOT\RSOP\User\S_1_5_21_4251975986_251742880_3643873951_1002 namespace

propertyClassOrigin
polmkrBaseHashRSOP_PolmkrSettingRSOP_PolmkrSetting

List of classes with polmkrBaseHash derived property in ROOT\RSOP\User\S_1_5_21_4251975986_251742880_3643873951_1002 namespace

propertyClassOrigin
polmkrBaseHashRSOP_PolmkrApplicationSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrDataSourceSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrDeviceSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrDialupOptionSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrDriveSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrEnvironmentSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrFileSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrFolderOptionSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrFolderOptionSettingVistaRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrFolderOptionsSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrFolderSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrIE7SettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrImmediateTaskSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrImmediateTaskV2SettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrIniFileSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrInternetSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrLocalGroupsSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrLocalPrinterSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrLocalUsersAndGroupsSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrLocalUsersSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrNetworkOptionSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrNtServiceSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrOpenWithSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrPortPrinterSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrPowerOptionsSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrPowerOptionsV2SettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrPowerSchemeSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrPowerSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrPrinterSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrProfileSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrProSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrRegionOptionSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrRegistrySettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrSchedTaskSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrSchedTaskV2SettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrServerSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrSharedPrinterSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrShortcutSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrStartMenuSettingRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrStartMenuSettingVistaRSOP_PolmkrSetting
polmkrBaseHashRSOP_PolmkrTaskSettingRSOP_PolmkrSetting

Code samples for polmkrBaseHash property

Get instance of WMI class using GetObject, polmkrBaseHash property of RSOP_PolmkrFolderOptionsSetting

Short VBS code - get a single specified instance of RSOP_PolmkrFolderOptionsSetting 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\RSOP\User\S_1_5_21_4251975986_251742880_3643873951_1002:" + _
 "RSOP_PolmkrFolderOptionsSetting.id=""Value"",precedence=Value")
Wscript.Echo wmiObject.polmkrBaseHash 'or other property name, see properties
See more VBS samples of RSOP_PolmkrFolderOptionsSetting class

WMI query - sample windows WQL with C#, polmkrBaseHash property of RSOP_PolmkrFolderOptionsSetting

Get a specified instance of RSOP_PolmkrFolderOptionsSetting 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\\RSOP\\User\\S_1_5_21_4251975986_251742880_3643873951_1002");

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

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

WMI query - sample windows WQL with VB.Net, polmkrBaseHash property of RSOP_PolmkrFolderOptionsSetting

Get a specified instance of RSOP_PolmkrFolderOptionsSetting 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\RSOP\User\S_1_5_21_4251975986_251742880_3643873951_1002")

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

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