Server : Apache/2.4.43 (Win64) OpenSSL/1.1.1g PHP/7.4.6
System : Windows NT USER-PC 6.1 build 7601 (Windows 7 Professional Edition Service Pack 1) AMD64
User : User ( 0)
PHP Version : 7.4.6
Disable Function : NONE
Directory :  C:/Windows/SysWOW64/wbem/
Upload File :
Current Directory [ Writeable ] Root Directory [ Writeable ]


Current File : C:/Windows/SysWOW64/wbem/scersop.mof
// Copyright (c) 2000-2004 Microsoft Corporation
// WMI Class Definitions for RSOP security settings extension
// Version 1.0

#pragma autorecover
#pragma classflags("forceupdate")

#pragma namespace("\\\\.\\root")

instance of __Namespace
{
        Name = "RSOP";
};

#pragma namespace("\\\\.\\root\\RSOP")

instance of __Namespace
{
        Name = "Computer";
};


#pragma namespace("\\\\.\\root\\RSOP\\Computer")



class RSOP_SecuritySettings : RSOP_PolicySetting
{
                        uint32  Status;
                        uint32  ErrorCode;
};

//******************** password, lockout, kerberos, and other policies *****************

class RSOP_SecuritySettingNumeric : RSOP_SecuritySettings
{
     [key]              uint32  precedence = 0;
     [key]              string  KeyName = NULL;
                        uint32  Setting;
};

class RSOP_SecuritySettingBoolean : RSOP_SecuritySettings
{
     [key]              uint32  precedence = 0;
     [key]              string  KeyName = NULL;
                        boolean Setting;
};

class RSOP_SecuritySettingString : RSOP_SecuritySettings
{
     [key]              uint32  precedence = 0;
     [key]              string  KeyName = NULL;
                        string  Setting;
};


//******************** RSOP_AuditPolicy ************************************

class RSOP_AuditPolicy : RSOP_SecuritySettings
{
        [key]           uint32  precedence = 0;
        [key]           string  Category = NULL;
        [NotNull]       boolean Success;
        [NotNull]       boolean Failure;
};

//******************** Esc_EventLog ***************************************

class RSOP_SecurityEventLogSettingNumeric : RSOP_SecuritySettings
{
     [key]              uint32  precedence = 0;
     [key]              string  KeyName = NULL;
     [key]              string  Type = NULL;
                        uint32  Setting;
};

class RSOP_SecurityEventLogSettingBoolean : RSOP_SecuritySettings
{
     [key]              uint32  precedence = 0;
     [key]              string  KeyName = NULL;
     [key]              string  Type = NULL;
                        boolean Setting;
};

//******************** rsop_RegistryValue ***************************************

class RSOP_RegistryValue : RSOP_SecuritySettings
{
        [key]           uint32  precedence = 0;
        [key]           string  Path = NULL;
        [ValueMap {"1","2","3","4","7"}, Values {"REG_SZ", "REG_EXPAND_SZ", "REG_BINARY", "REG_DWORD", "REG_MULTI_SZ"}, NotNull]
                        uint32      Type;
        [NotNull]       string  Data;
};

//******************** RSOP_UserPrivilegeRight **********************************

class RSOP_UserPrivilegeRight : RSOP_SecuritySettings
{
     [key]              uint32  precedence = 0;
     [key]              string  UserRight;
                        string  AccountList[];
};

//******************** RSOP_RestrictedGroup **********************************

class RSOP_RestrictedGroup : RSOP_SecuritySettings
{
     [key]              uint32  precedence = 0;
     [key]              string  GroupName = NULL;
                        string  Members[];
};

//******************** RSOP_SystemService *************************************

class RSOP_SystemService : RSOP_SecuritySettings
{
        [key]           uint32  precedence = 0;
        [key]           string  Service = NULL;
        [ValueMap {"2", "3", "4"}, Values {"Automatic", "Manual", "Disabled"}]
                        uint32  StartupMode;
                        string  SDDLString;
};

//******************** RSOP_Object *************************************

class RSOP_File : RSOP_SecuritySettings
{
        [key]           uint32  precedence = 0;
        [key]           string  Path = NULL;
                        string  OriginalPath;
        [Values {"Inherit", "Ignore", "Overwrite"}]
                        uint32  Mode;
                        string  SDDLString;
};

class RSOP_RegistryKey : RSOP_SecuritySettings
{
        [key]           uint32  precedence = 0;
        [key]           string  Path;
        [Values {"Inherit", "Ignore", "Overwrite"}]
                        uint32  Mode;
                        string  SDDLString;
};