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

polmkrBaseGpoGuid in other namespaces

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

propertyClassOrigin
polmkrBaseGpoGuidRSOP_PolmkrSettingRSOP_PolmkrSetting

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

propertyClassOrigin
polmkrBaseGpoGuidRSOP_PolmkrApplicationSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrDataSourceSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrDeviceSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrDialupOptionSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrDriveSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrEnvironmentSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrFileSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrFolderOptionSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrFolderOptionSettingVistaRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrFolderOptionsSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrFolderSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrIE7SettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrImmediateTaskSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrImmediateTaskV2SettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrIniFileSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrInternetSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrLocalGroupsSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrLocalPrinterSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrLocalUsersAndGroupsSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrLocalUsersSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrNetworkOptionSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrNtServiceSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrOpenWithSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrPortPrinterSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrPowerOptionsSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrPowerOptionsV2SettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrPowerSchemeSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrPowerSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrPrinterSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrProfileSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrProSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrRegionOptionSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrRegistrySettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrSchedTaskSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrSchedTaskV2SettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrServerSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrSharedPrinterSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrShortcutSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrStartMenuSettingRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrStartMenuSettingVistaRSOP_PolmkrSetting
polmkrBaseGpoGuidRSOP_PolmkrTaskSettingRSOP_PolmkrSetting

Code samples for polmkrBaseGpoGuid property

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

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

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