// // This file defines the default contents of the THE_USER hive in the Windows NT // registry. // // // ***** ATTENTION ********************************************************************* // * // * THIS FILE CONTAINS STRINGS THAT NEED TO BE LOCALIZED. THESE STRINGS ARE // * VALUE ENTRIES THAT REPRESENT GROUP OR ITEMS THAT ARE UNDER "START MENU\PROGRAMS" // * THESE STRINGS MUST BE TRANSLATED TO THE SAME NAMES USED IN SYSSETUP.INF. // * // * The name of the value entries that contain strings to be localized is always 'Item' // * and they are always value entries of a subkey of 'Files'. Near these strings you will // * always find the comment 'LOCALIZE' to warn the localization people that the string // * needs to be localized. // * // ************************************************************************************** // // Get user definitions // // #ifndef _GENERAL_PURPOSE_ // #include // #endif // ndef _GENERAL_PURPOSE_ // // predefined ACEs for creating ACLs // R == Read (values & subkeys) // W == Write (values & subkeys, create keys) // D == Delete keys // Full == All access // #define AdminFull 1 #define AdminR 2 #define AdminRW 3 #define AdminRWD 4 #define CreatorFull 5 #define CreatorRW 6 #define WorldFull 7 #define WorldR 8 #define WorldRW 9 #define WorldRWD 10 #define PowerFull 11 #define PowerRW 12 #define PowerRWD 13 #define SystemOpFull 14 #define SystemOpRW 15 #define SystemOpRWD 16 #define SystemFull 17 #define SystemRW 18 #define SystemR 19 #define AdminRWX 20 #define InteractiveFull 21 #define InteractiveR 22 #define InteractiveRW 23 #define InteractiveRWD 24 // // The following comment is an example on how to the define keys and values // in the userdiff hive. UserDiff is the root of userdiff hive. // // Subkeys of UserDiff indicate the build number // // UserDiff // // // // The children of UserDiff must have a name that indicates the build # // // where the changes were introduced // // // 1000 // // // // // // // Files // // // // The subkeys of UserDiff\\Files should a have a name // // that indicates the order in which the change needs to be applied. // // ( 1 = first, 2 = second, etc ) // // // // 1 // // // // A value entry with the name _REM indicates that the data in // // this entry is just a comment (not a command). It should be used // // to document this particular modification // // // _REM = REG_SZ "Add new Program item from Default user (cmd)" // // // // The data of the entry 'Action' indicates the command to // // be performed: // // // // 1 = Add new program group // // 2 = Delete program group // // 3 = Add new program item // // 4 = Delete program item // // // Action = REG_DWORD 3 // // // // The data in 'Item' indicates the name of the item that needs to // // be created. Note that the group (directory) where the item is to // // be created must exit or be created before the item gets created. // // If the group does not exist, the item will not be created. // // LOCALIZE: The data in this value entry should be localized using // // the same names defined on syssetup.inf // // // Item = REG_SZ "main\cmd.lnk" // // // // This is an optional value entry that indicates if the change // // needs to be applied to the Workstation, Server, or both products. // // If the value entry is not present, then the change will be applied // // to both workstation and server. If the value entry is present, then // // its data will indicate the type of product to apply the change, // // as follows: // // // // 0 = All products (workstation, standalone server, and domain controllers) // // 1 = All server products (standalone server and domain controllers) // // 2 = Workstation only // // 3 = Standalone server only (servernt) // // 4 = Domain Controller only (lanmannt) // // // Product = REG_DWORD 0 // // // 2 // _REM = REG_SZ "This command deletes an existing item (foobar)" // Action = REG_DWORD 4 // // // // LOCALIZE: The data in this value entry should be localized using // // the same names defined on syssetup.inf // // // Item = REG_SZ "main\foobar.lnk" // // 3 // _REM = REG_SZ "This command creates a new Program group (MyApps)" // Action = REG_DWORD 1 // // // // LOCALIZE: The data in this value entry should be localized using // // the same names defined on syssetup.inf // // // Item = REG_SZ "MyApps" // // 4 // _REM = REG_SZ "This command deletes an existing Program group (Dummy)" // Action = REG_DWORD 2 // // // // LOCALIZE: The data in this value entry should be localized using // // the same names defined on syssetup.inf // // // Item = REG_SZ "MyApps" // // // // // The subkeys of 'Hive' indicates the changes that need to be done in the user's hive // // // Hive // // // // The subkeys of UserDiff\\Hive should a have a name // // that indicates the order in which the change needs to be applied. // // ( 1 = first, 2 = second, etc ) // // // 1 // // // // A value entry with the name _REM indicates that the data in // // this entry is just a comment (not a command). It should be used // // to document this particular modification // // // _REM = REG_SZ "Add new key to user's hive" // // // // The data of the entry 'Action' indicates the command to // // be performed: // // // // 1 = Add new key // // 2 = Delete a key, and all its values and subkeys // // 3 = Add new value entry to a key. The is created if it doesn't exist // // 4 = Delete a value or a list or values from an existing key. // // // Action = REG_DWORD 1 // // // // The data of the entry 'KeyName' contains the name of the key to be // // created (full path). // // // KeyName = REG_SZ "Software\Control Panel\Desktop\Colors" // 2 // _REM = REG_SZ "This command creates a new value entry called 'Menu Color' of type REG_SZ, and sets it to 128" // Action = REG_DWORD 3 // KeyName = REG_SZ "Software\Control Panel\Desktop\Colors" // ValueName = REG_SZ "Menu Color" // Value = REG_SZ 128 // // 3 // _REM = REG_SZ "This command deletes a key, its values, and all its subkeys" // Action = REG_DWORD 2 // KeyName = REG_SZ "Software\Microsoft\Windows NT" // 4 // _REM = REG_SZ "This command deletes value entries" // Action = REG_DWORD 4 // KeyName = REG_SZ "Software\Microsoft\Windows NT" // // // // The data on 'Flags' indicates how the command is to be executed: // // 0/not present..... Delete all values whose names are listed in 'ValueNames' // // 1................. Delete all values whose names are listed in 'ValueNames' and the // // value with no name (Win 3.1 compatible value entry) // // 2................. Delete all value entries // // // Flags = REG_DWORD 1 // // // // The data on 'ValueNames' indicates the name of the value entries to be deleted. // // // // // ValueNames = REG_MULTI_SZ "FooBar FooBar1" // // // // // The subkeys of 'Execute' indicates the programs that need to be executed // // // Execute // // // // The subkeys of UserDiff\\Execute should a have a name // // that indicates the order in which the change needs to be applied. // // ( 1 = first, 2 = second, etc ) // // // 1 // // // // A value entry with the name _REM indicates that the data in // // this entry is just a comment (not a command). It should be used // // to document this particular modification // // // _REM = REG_SZ "Execute shell migration program" // // // // Program to execute. Environment variables will be expanded before // // CreateProcess is called. Programs are spawned synchronously. // // // CommandLine = REG_EXPAND_SZ "%SystemRoot%\system32\shmgrate.exe W" // // // UserDiff // // The children of UserDiff must have a name that indicates the build # // where the changes were introduced // 1137 Execute 1 // // *** THIS HAS TO BE DONE FIRST *** // // shmgrate.exe will set the special folder locations // used by everything after this. // CommandLine = REG_EXPAND_SZ "%SystemRoot%\system32\shmgrate.exe Fix-Folders" 2 // // This converts the User's NT 3.51 personal groups // to links on the start menu. // CommandLine = REG_EXPAND_SZ "grpconv -p" 1138 Hive 1 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Colors" ValueName = REG_SZ "InactiveTitle" Value = REG_SZ "128 128 128" 2 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Colors" ValueName = REG_SZ "InactiveTitleText" Value = REG_SZ "255 255 255" 3 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Colors" ValueName = REG_SZ Menu Value = REG_SZ "192 192 192" 4 Action = REG_DWORD 3 KeyName = REG_SZ "SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Explorer" ValueName = REG_SZ "NoDriveTypeAutoRun" Value = REG_DWORD 0x95 5 Action = REG_DWORD 1 KeyName = REG_SZ "Control Panel\Desktop\WindowMetrics" 1140 Hive 1 Action = REG_DWORD 1 KeyName = REG_SZ "Control Panel\Appearance\Schemes" 1156 Hive 1 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Desktop" ValueName = REG_SZ FontSmoothing Value = REG_SZ 0 1169 Hive 1 Action = REG_DWORD 2 KeyName = REG_SZ "Control Panel\Color Schemes" 1174 Hive 1 Action = REG_DWORD 4 KeyName = REG_SZ "Control Panel\Desktop" Flags = REG_DWORD 0 ValueNames = REG_MULTI_SZ "BorderWidth" 2 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Desktop\WindowMetrics" ValueName = REG_SZ BorderWidth Value = REG_SZ 1 Files 1 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "main\Introducing Windows NT.lnk" 2 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "main\Introducing Windows NT.pif" 3 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "main\PIF Editor.lnk" 4 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "main\Control Panel.lnk" 5 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "main\File Manager.lnk" 6 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "main\Command Prompt.lnk" 7 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "main\Windows NT Setup.lnk" 8 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "main\Read Me.lnk" 9 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "main\Windows NT Help.lnk" 10 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "main\ClipBook Viewer.lnk" 11 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "main\Print Manager.lnk" 12 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "main\Books Online.lnk" 13 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "games\Solitaire.lnk" 14 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "games\Minesweeper.lnk" 15 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "games\Freecell.lnk" 16 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\Media Player.lnk" 17 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\Sound Recorder.lnk" 18 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\Volume Control.lnk" 19 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\CD Player.lnk" 20 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\Paintbrush.lnk" 21 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\Paint.lnk" 22 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\ClipBook Viewer.lnk" 23 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\Print Manager.lnk" 24 Action = REG_DWORD 1 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Accessories\Games" 25 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\games\Solitaire.lnk" 26 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\games\Minesweeper.lnk" 27 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\games\Freecell.lnk" 28 Action = REG_DWORD 1 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Accessories\Multimedia" 29 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\multimedia\Media Player.lnk" 30 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\multimedia\Sound Recorder.lnk" 31 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\multimedia\Volume Control.lnk" 32 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\multimedia\CD Player.lnk" 33 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Command Prompt.lnk" 1175 Hive 1 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Colors" ValueName = REG_SZ ButtonLight Value = REG_SZ "192 192 192" 1180 Execute 1 // "Execute shell migration program (Win95->NT4.0)" CommandLine = REG_EXPAND_SZ "%SystemRoot%\system32\shmgrate.exe W" 2 // "Execute shell migration program (NT3.51->NT4.0)" CommandLine = REG_EXPAND_SZ "%SystemRoot%\system32\shmgrate.exe Cvt-Curs" 3 // "Execute shell migration program" CommandLine = REG_EXPAND_SZ "%SystemRoot%\system32\shmgrate.exe Fix-Curs" 1181 Files 1 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Windows NT Explorer.lnk" 2 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Windows NT Explorer.lnk" 1182 Hive 1 Action = REG_DWORD 1 KeyName = REG_SZ "Control Panel\Appearance\Schemes" 2 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Brick Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000D \ 0x0000000D 0x00000012 0x00000012 0xFFFFFFF4 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x77F09A58 0x003F003F 0x003F003F \ 0x00000000 0x00000000 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000F 0x0000000F \ 0xFFFFFFF7 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x00000000 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x00000000 \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x001400B8 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x00000000 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02D2E0E1 0x00000042 0x02000080 \ 0x0261898D 0x02A5BFC2 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02D2E0E1 0x02A5BFC2 \ 0x02A5BFC2 0x02D2E0E1 0x0261898D 0x02FFFFFF \ 0x02A5BFC2 0x0261898D 0x0261898D 0x02000000 \ 0x02D2E0E1 0x02D2E0E1 0x02000000 0x02A5BFC2 \ 0x02000080 0x02D2E0E1 3 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Maple Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000D \ 0x0000000D 0x00000012 0x00000012 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x00000000 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000F 0x0000000F \ 0xFFFFFFF7 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x00000000 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x00000000 \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x001400B8 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x00000000 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02D7ECF2 0x02000000 0x0246A6C6 \ 0x02A4A0A0 0x02AED8E6 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02AED8E6 \ 0x02AED8E6 0x02D7ECF2 0x0246A6C6 0x02000000 \ 0x02AED8E6 0x0246A6C6 0x0246A6C6 0x02000000 \ 0x02D7ECF2 0x02D7ECF2 0x02000000 0x02AED8E6 \ 0x02000000 0x02FFFFFF 4 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Spruce Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000F \ 0x0000000F 0x00000012 0x00000012 0xFFFFFFF4 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x00000000 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000F 0x0000000F \ 0xFFFFFFF7 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x00000000 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x00000000 \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x001400B8 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x00000000 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02D3E3D0 0x00213F21 0x02649759 \ 0x02808080 0x02A9C8A2 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02A9C8A2 \ 0x02A9C8A2 0x02D3E3D0 0x02649759 0x02FFFFFF \ 0x02A9C8A2 0x02649759 0x02649759 0x02000000 \ 0x02D3E3D0 0x02D3E3D0 0x02000000 0x02A9C8A2 \ 0x02000000 0x02FFFFFF 5 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Teal (VGA) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000D \ 0x0000000D 0x00000012 0x00000012 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x00000000 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000F 0x0000000F \ 0xFFFFFFF7 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x00000000 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x00000000 \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x001400B8 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x00000000 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02C0C0C0 0x00404000 0x02808000 \ 0x02808080 0x02C0C0C0 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02C0C0C0 \ 0x02C0C0C0 0x02808080 0x02808000 0x02FFFFFF \ 0x02C0C0C0 0x02808080 0x02808080 0x02000000 \ 0x02F0FBFF 0x02FFFFFF 0x02000000 0x02C0C0C0 \ 0x02000000 0x02FFFFFF 6 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Red, White, and Blue (VGA) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000D \ 0x0000000D 0x00000013 0x00000013 0xFFFFFFF1 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x00690054 0x0065006D \ 0x00200073 0x0065004E 0x00200077 0x006F0052 \ 0x0061006D 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x00000011 0x00000011 \ 0xFFFFFFF3 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x00690054 \ 0x0065006D 0x00200073 0x0065004E 0x00200077 \ 0x006F0052 0x0061006D 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF3 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x00690054 0x0065006D 0x00200073 0x0065004E \ 0x00200077 0x006F0052 0x0061006D 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF3 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x00690054 \ 0x0065006D 0x00200073 0x0065004E 0x00200077 \ 0x006F0052 0x0061006D 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF3 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x00690054 0x0065006D \ 0x00200073 0x0065004E 0x00200077 0x006F0052 \ 0x0061006D 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02C0C0C0 0x00420000 0x02000080 \ 0x02808080 0x02C0C0C0 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02C0C0C0 \ 0x02C0C0C0 0x02FFFFFF 0x02000080 0x02FFFFFF \ 0x02C0C0C0 0x02808080 0x02808080 0x02000000 \ 0x02C0C0C0 0x02FFFFFF 0x02000000 0x02C0C0C0 \ 0x02800000 0x02FFFFFF 7 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Wheat Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000D \ 0x0000000D 0x00000012 0x00000012 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000F 0x0000000F \ 0xFFFFFFF7 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02D0EEEE 0x001D4000 0x02008080 \ 0x0241BCBC 0x02A0DEDE 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02A0DEDE \ 0x02A0DEDE 0x02D0EEEE 0x02008080 0x02FFFFFF \ 0x02A0DEDE 0x0241BCBC 0x0241BCBC 0x02000000 \ 0x02FFFFFF 0x02D0EEEE 0x02000000 0x02A0DEDE \ 0x02000000 0x02FFFFFF 8 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Pumpkin (large) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x00000015 \ 0x00000015 0x0000001A 0x0000001A 0xFFFFFFED \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x00000016 0x00000016 \ 0xFFFFFFF0 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000016 \ 0x00000016 0xFFFFFFF0 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF3 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF0 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF0 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02CFEAF5 0x00420042 0x022FA5D7 \ 0x02A4A0A0 0x029DD5EC 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x029DD5EC \ 0x029DD5EC 0x02CFEAF5 0x02800080 0x02FFFFFF \ 0x029DD5EC 0x022FA5D7 0x022FA5D7 0x02000000 \ 0x02CFEAF5 0x02CFEAF5 0x02000000 0x029DD5EC \ 0x02800080 0x02FFFFFF 9 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Eggplant Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x00000010 \ 0x00000010 0x00000013 0x00000013 0xFFFFFFF1 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x00690054 0x0065006D \ 0x00200073 0x0065004E 0x00200077 0x006F0052 \ 0x0061006D 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x00000011 0x00000011 \ 0xFFFFFFF3 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x00690054 \ 0x0065006D 0x00200073 0x0065004E 0x00200077 \ 0x006F0052 0x0061006D 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF3 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x00690054 0x0065006D 0x00200073 0x0065004E \ 0x00200077 0x006F0052 0x0061006D 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF3 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x00690054 \ 0x0065006D 0x00200073 0x0065004E 0x00200077 \ 0x006F0052 0x0061006D 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF3 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x00690054 0x0065006D \ 0x00200073 0x0065004E 0x00200077 0x006F0052 \ 0x0061006D 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02A8B090 0x00400040 0x02788058 \ 0x02A8B090 0x02A8B090 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02A8B090 \ 0x02A8B090 0x02808080 0x02788058 0x02FFFFFF \ 0x02A8B090 0x02788058 0x02788058 0x02000000 \ 0x02788058 0x02D8D8C8 0x02000000 0x02A8B090 \ 0x02800080 0x02FFFFFF 10 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Rainy Day Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000D \ 0x0000000D 0x00000012 0x00000012 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000F 0x0000000F \ 0xFFFFFFF7 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02D9CCC1 0x02000000 0x027D654F \ 0x02808080 0x02B19983 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02B19983 \ 0x02B19983 0x02808080 0x027D654F 0x02FFFFFF \ 0x02B19983 0x027D654F 0x027D654F 0x02000000 \ 0x02D9CCC1 0x02D9CCC1 0x02000000 0x02B19983 \ 0x02000000 0x02FFFFFF 11 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Desert Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000D \ 0x0000000D 0x00000012 0x00000012 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000F 0x0000000F \ 0xFFFFFFF7 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02DDE6EA 0x02688DA2 0x02808000 \ 0x02688DA2 0x02BBCCD5 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02BBCCD5 \ 0x02BBCCD5 0x02688DA2 0x02808000 0x02FFFFFF \ 0x02BBCCD5 0x02688DA2 0x02688DA2 0x02000000 \ 0x02FFFFFF 0x02DDE6EA 0x02000000 0x02BBCCD5 \ 0x02000000 0x02FFFFFF 12 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Marine (high color) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000D \ 0x0000000D 0x00000012 0x00000012 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000D 0x0000000D \ 0xFFFFFFF7 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x006D0053 \ 0x006C0061 0x0020006C 0x006F0046 0x0074006E \ 0x00000073 0x00000066 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02D8E0C8 0x00474E2C 0x02800000 \ 0x02889048 0x02B8C088 0x02D8E0C8 0x02000000 \ 0x02000000 0x02000000 0x02C0C0C0 0x02B8C088 \ 0x02B8C088 0x00848D4B 0x02800000 0x02FFFFFF \ 0x02B8C088 0x02889048 0x02889048 0x02000000 \ 0x02C0C0C0 0x02D8E0C8 0x02000000 0x02B8C088 \ 0x02000000 0x02D8E0C8 13 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Windows Standard (extra large) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x00000015 \ 0x00000015 0x00000018 0x00000018 0xFFFFFFED \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x00000012 0x00000012 \ 0xFFFFFFF3 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x006F0046 0x0074006E \ 0x00000073 0x00000066 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000015 \ 0x00000015 0xFFFFFFF0 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x00720041 0x00610069 0x0000006C 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF3 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF0 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF0 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x00720041 0x00610069 0x0000006C \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02C0C0C0 0x02808000 0x02800000 \ 0x02808080 0x02C0C0C0 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02C0C0C0 \ 0x02C0C0C0 0x02808080 0x02800000 0x02FFFFFF \ 0x02C0C0C0 0x02808080 0x02808080 0x02000000 \ 0x02C0C0C0 0x02FFFFFF 0x02000000 0x02DFDFDF \ 0x02000000 0x00E1FFFF 14 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Storm (VGA) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000D \ 0x0000000D 0x00000012 0x00000012 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000F 0x0000000F \ 0xFFFFFFF7 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x00720041 0x00610069 0x0000006C 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF5 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x00720041 0x00610069 0x0000006C \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02C0C0C0 0x02000000 0x02800080 \ 0x02808080 0x02C0C0C0 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02C0C0C0 \ 0x02C0C0C0 0x02808080 0x02800080 0x02FFFFFF \ 0x02C0C0C0 0x02808080 0x02808080 0x02000000 \ 0x02000000 0x02FFFFFF 0x02000000 0x02C0C0C0 \ 0x02800080 0x02FFFFFF 15 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Windows Standard Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x00000010 \ 0x00000010 0x00000012 0x00000012 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000F 0x0000000F \ 0xFFFFFFF8 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02C0C0C0 0x02808000 0x02800000 \ 0x02808080 0x02C0C0C0 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02C0C0C0 \ 0x02C0C0C0 0x02808080 0x02800000 0x02FFFFFF \ 0x02C0C0C0 0x02808080 0x02808080 0x02000000 \ 0x02C0C0C0 0x02FFFFFF 0x02000000 0x02DFDFDF \ 0x02000000 0x00E1FFFF 16 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Windows Standard (large) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x00000012 \ 0x00000012 0x00000016 0x00000016 0xFFFFFFF0 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x00000012 0x00000012 \ 0xFFFFFFF3 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF3 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF3 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF3 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF3 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02C0C0C0 0x02808000 0x02800000 \ 0x02808080 0x02C0C0C0 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02C0C0C0 \ 0x02C0C0C0 0x02808080 0x02800000 0x02FFFFFF \ 0x02C0C0C0 0x02808080 0x02808080 0x02000000 \ 0x02C0C0C0 0x02FFFFFF 0x02000000 0x02DFDFDF \ 0x02000000 0x02E1FFFF 17 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Rose Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000F \ 0x0000000F 0x00000017 0x00000017 0xFFFFFFED \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x00690054 0x0065006D \ 0x00200073 0x0065004E 0x00200077 0x006F0052 \ 0x0061006D 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x00000011 0x00000011 \ 0xFFFFFFF3 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x00690054 \ 0x0065006D 0x00200073 0x0065004E 0x00200077 \ 0x006F0052 0x0061006D 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02B7AFCF 0x02808080 0x0270609F \ 0x02A4A0A0 0x02B7AFCF 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02B7AFCF \ 0x02B7AFCF 0x0270609F 0x0270609F 0x02FFFFFF \ 0x02B7AFCF 0x0270609F 0x0270609F 0x02000000 \ 0x02000000 0x02DCD8E7 0x02000000 0x02B7AFCF \ 0x02000000 0x02FFFFFF 18 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ High Contrast Black (large) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000006 0x0000001C \ 0x0000001C 0x0000001F 0x0000001F 0xFFFFFFE8 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x0065004E 0x00200077 0x006F0052 \ 0x0061006D 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000001A 0x0000001A \ 0xFFFFFFEC 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x0065004E 0x00200077 \ 0x006F0052 0x0061006D 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x0000001E \ 0x0000001E 0xFFFFFFE8 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x00720041 0x00610069 0x0000006C 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFEC 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFE8 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFEC 0x00000000 \ 0x00000000 0x00000000 0x000002BC 0x00000000 \ 0x00000000 0x00720041 0x00610069 0x0000006C \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02000000 0x02000000 0x02800080 \ 0x02008000 0x02000000 0x02000000 0x02FFFFFF \ 0x02FFFFFF 0x02FFFFFF 0x02FFFFFF 0x0200FFFF \ 0x02008000 0x02000000 0x02800080 0x02FFFFFF \ 0x02000000 0x02808080 0x0200FF00 0x02FFFFFF \ 0x02FFFFFF 0x02C0C0C0 0x02FFFFFF 0x02FFFFFF \ 0x02FFFFFF 0x02000000 19 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ High Contrast Black (extra large) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000006 0x00000020 \ 0x00000020 0x00000025 0x00000025 0xFFFFFFE2 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x0065004E 0x00200077 0x006F0052 \ 0x0061006D 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000001C 0x0000001C \ 0xFFFFFFE9 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x0065004E 0x00200077 \ 0x006F0052 0x0061006D 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000026 \ 0x00000026 0xFFFFFFE2 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x00720041 0x00610069 0x0000006C 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFE9 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFE1 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFE9 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x00720041 0x00610069 0x0000006C \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02000000 0x02000000 0x02800080 \ 0x02008000 0x02000000 0x02000000 0x02FFFFFF \ 0x02FFFFFF 0x02FFFFFF 0x02FFFFFF 0x0200FFFF \ 0x02008000 0x02000000 0x02800080 0x02FFFFFF \ 0x02000000 0x02808080 0x0200FF00 0x02FFFFFF \ 0x02FFFFFF 0x02C0C0C0 0x02FFFFFF 0x02FFFFFF \ 0x02FFFFFF 0x02000000 20 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ High Contrast White (large) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000007 0x0000001A \ 0x0000001A 0x00000025 0x00000025 0xFFFFFFE8 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x0065004E 0x00200077 0x006F0052 \ 0x0061006D 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000001C 0x0000001C \ 0xFFFFFFED 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x0065004E 0x00200077 \ 0x006F0052 0x0061006D 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x0000001B \ 0x0000001B 0xFFFFFFEB 0x00000000 0x00000000 \ 0x00000000 0x000002BC 0x00000000 0x00000000 \ 0x00720041 0x00610069 0x0000006C 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFED 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFEB \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFEC 0x00000000 \ 0x00000000 0x00000000 0x000002BC 0x00000000 \ 0x00000000 0x00720041 0x00610069 0x0000006C \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02FFFFFF 0x02FFFFFF 0x02000000 \ 0x02FFFFFF 0x02FFFFFF 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02808080 \ 0x02C0C0C0 0x02808080 0x02000000 0x02FFFFFF \ 0x02FFFFFF 0x02808080 0x0200FF00 0x02000000 \ 0x02000000 0x02C0C0C0 0x02000000 0x02C0C0C0 \ 0x02000000 0x02FFFFFF 21 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ High Contrast White (extra large) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000006 0x0000001E \ 0x0000001E 0x00000026 0x00000026 0xFFFFFFE2 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x0065004E 0x00200077 0x006F0052 \ 0x0061006D 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000001C 0x0000001C \ 0xFFFFFFE9 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x0065004E 0x00200077 \ 0x006F0052 0x0061006D 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000026 \ 0x00000026 0xFFFFFFE2 0x00000000 0x00000000 \ 0x00000000 0x000002BC 0x00000000 0x00000000 \ 0x00720041 0x00610069 0x0000006C 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFE9 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFEB \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFE9 0x00000000 \ 0x00000000 0x00000000 0x000002BC 0x00000000 \ 0x00000000 0x00720041 0x00610069 0x0000006C \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02FFFFFF 0x02FFFFFF 0x02000000 \ 0x02FFFFFF 0x02FFFFFF 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02808080 \ 0x02C0C0C0 0x02808080 0x02000000 0x02FFFFFF \ 0x02FFFFFF 0x02808080 0x0200FF00 0x02000000 \ 0x02000000 0x02C0C0C0 0x02000000 0x02C0C0C0 \ 0x02000000 0x02FFFFFF 22 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Rose (large) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000002 0x00000011 \ 0x00000011 0x0000001C 0x0000001C 0xFFFFFFE9 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x00690054 0x0065006D \ 0x00200073 0x0065004E 0x00200077 0x006F0052 \ 0x0061006D 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x00000015 0x00000015 \ 0xFFFFFFF0 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x00690054 \ 0x0065006D 0x00200073 0x0065004E 0x00200077 \ 0x006F0052 0x0061006D 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000016 \ 0x00000016 0xFFFFFFEF 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF0 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFEF \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFEF 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02C0C0C0 0x02808080 0x027060A0 \ 0x02A4A0A0 0x02B8B0D0 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02B8B0D0 \ 0x02B8B0D0 0x02E0D8E8 0x027060A0 0x02FFFFFF \ 0x02B8B0D0 0x027060A0 0x027060A0 0x02000000 \ 0x02000000 0x02E0D8E8 0x02000000 0x02B8B0D0 \ 0x02000000 0x02FFFFFF 23 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Lilac Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000F \ 0x0000000F 0x00000016 0x00000016 0xFFFFFFF0 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x0065004E 0x00200077 0x006F0052 \ 0x0061006D 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x00000010 0x00000010 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x0065004E 0x00200077 \ 0x006F0052 0x0061006D 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF3 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x00720041 0x00610069 0x0000006C 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF3 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF5 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x00720041 0x00610069 0x0000006C \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02D9A8AE 0x02000000 0x02B14E5A \ 0x02808080 0x02D9A8AE 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02D9A8AE \ 0x02D9A8AE 0x02B14E5A 0x02B14E5A 0x02FFFFFF \ 0x02D9A8AE 0x02B14E5A 0x02B14E5A 0x02000000 \ 0x02FFFFFF 0x02ECD5D8 0x02000000 0x02D9A8AE \ 0x02000000 0x02FFFFFF 24 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Lilac (large) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000F \ 0x0000000F 0x0000001D 0x0000001D 0xFFFFFFE9 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x0065004E 0x00200077 0x006F0052 \ 0x0061006D 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x00000015 0x00000015 \ 0xFFFFFFF0 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x0065004E 0x00200077 \ 0x006F0052 0x0061006D 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000015 \ 0x00000015 0xFFFFFFF0 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x00720041 0x00610069 0x0000006C 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF0 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x00720041 \ 0x00610069 0x0000006C 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFEF \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x00720041 0x00610069 \ 0x0000006C 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF0 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x00720041 0x00610069 0x0000006C \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02D9A8AE 0x02000000 0x02B14E5A \ 0x02808080 0x02D9A8AE 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02D9A8AE \ 0x02D9A8AE 0x02B14E5A 0x02B14E5A 0x02FFFFFF \ 0x02D9A8AE 0x02B14E5A 0x02B14E5A 0x02000000 \ 0x02FFFFFF 0x02ECD5D8 0x02000000 0x02D9A8AE \ 0x02000000 0x02FFFFFF 25 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Slate Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000D \ 0x0000000D 0x00000012 0x00000012 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000F 0x0000000F \ 0xFFFFFFF7 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02E3DCCE 0x00414141 0x02978055 \ 0x02808080 0x02C8B99D 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02C8B99D \ 0x02C8B99D 0x00424242 0x02978055 0x02FFFFFF \ 0x02C8B99D 0x02978055 0x02978055 0x02000000 \ 0x02C0C0C0 0x02E3DCCE 0x02000000 0x02C8B99D \ 0x02000000 0x02FFFFFF 26 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ Plum (high color) Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x0000000D \ 0x0000000D 0x00000012 0x00000012 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000F 0x0000000F \ 0xFFFFFFF7 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF8 0x00000000 \ 0x00000000 0x00000000 0x00000190 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x00C8D0D8 0x00402840 0x00604048 \ 0x00586078 0x009098A8 0x00C8D0D8 0x00000000 \ 0x00000000 0x00000000 0x00C8D0D8 0x009098A8 \ 0x009098A8 0x005A6374 0x00484828 0x00C8D0D8 \ 0x009098A8 0x00586078 0x00586078 0x00000000 \ 0x009098A8 0x00C8D0D8 0x00000000 0x009098A8 \ 0x00580030 0x00C8CCD5 27 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ High Contrast Black Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x00000011 \ 0x00000011 0x00000014 0x00000014 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000F 0x0000000F \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x00000190 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x00000190 \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF5 0x00000000 \ 0x00000000 0x00000000 0x000002BC 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02000000 0x02000000 0x02800080 \ 0x02008000 0x02000000 0x02000000 0x02FFFFFF \ 0x02FFFFFF 0x02FFFFFF 0x02FFFFFF 0x0200FFFF \ 0x02008000 0x02000000 0x02800080 0x02FFFFFF \ 0x02000000 0x02808080 0x0200FF00 0x02FFFFFF \ 0x02FFFFFF 0x02C0C0C0 0x02FFFFFF 0x02FFFFFF \ 0x02FFFFFF 0x02000000 28 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Appearance\Schemes" ValueName = REG_SZ High Contrast White Value = REG_BINARY 0x2B8 0x00000002 0x000001F4 0x00000001 0x00000011 \ 0x00000011 0x00000014 0x00000014 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000000 0x00780000 \ 0x7FFC101C 0x7FFC1422 0x0012FEB0 0x00000000 \ 0x00000000 0x77EB2398 0x0000000F 0x0000000F \ 0xFFFFFFF8 0x00000000 0x00000000 0x00000000 \ 0x000002BC 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x00000000 \ 0x00142000 0x77F0B9AC 0x00142000 0x10000000 \ 0x00140580 0x00141FF0 0x00140000 0x00000012 \ 0x00000012 0xFFFFFFF5 0x00000000 0x00000000 \ 0x00000000 0x000002BC 0x00000000 0x00000000 \ 0x0053004D 0x00530020 0x006E0061 0x00200073 \ 0x00650053 0x00690072 0x00000066 0x0000006E \ 0x00000000 0x00000000 0x00140580 0x77E8FB88 \ 0x00000202 0x77F0B9AC 0x00000000 0x00000020 \ 0xFFFFFFF5 0x00000000 0x00000000 0x00000000 \ 0x00000190 0x00000000 0x00000000 0x0053004D \ 0x00530020 0x006E0061 0x00200073 0x00650053 \ 0x00690072 0x00000066 0x0000006E 0x77F0C0B4 \ 0x00000000 0x00000000 0x00000000 0x00000000 \ 0x00000000 0x77E86B7C 0x00000000 0xFFFFFFF5 \ 0x00000000 0x00000000 0x00000000 0x000002BC \ 0x00000000 0x00000000 0x0053004D 0x00530020 \ 0x006E0061 0x00200073 0x00650053 0x00690072 \ 0x00000066 0x0000006E 0x00000BC8 0x00000000 \ 0x00000008 0x00000006 0x00000018 0xFFFFFFFF \ 0xFC214BF0 0x77F0C400 0xFFFFFFF5 0x00000000 \ 0x00000000 0x00000000 0x000002BC 0x00000000 \ 0x00000000 0x0053004D 0x00530020 0x006E0061 \ 0x00200073 0x00650053 0x00690072 0x00000066 \ 0x00000000 0x00000000 0x00000000 0x00141DC0 \ 0x0000000B 0x0012FF00 0x00000050 0x0012FEC0 \ 0x0100100C 0x02FFFFFF 0x02FFFFFF 0x02000000 \ 0x02FFFFFF 0x02FFFFFF 0x02FFFFFF 0x02000000 \ 0x02000000 0x02000000 0x02FFFFFF 0x02808080 \ 0x02C0C0C0 0x02808080 0x02000000 0x02FFFFFF \ 0x02FFFFFF 0x02808080 0x0200FF00 0x02000000 \ 0x02000000 0x02C0C0C0 0x02000000 0x02C0C0C0 \ 0x02000000 0x02FFFFFF 1191 Hive 1 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Desktop" ValueName = REG_SZ "CoolSwitchRows" Value = REG_SZ 3 2 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Desktop" ValueName = REG_SZ "CoolSwitchColumns" Value = REG_SZ 7 1197 Files 1 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Accessories\Terminal.lnk" 2 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Accessories\HyperTerminal.lnk" 1224 Files 1 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Accessories\Phone Dialer.lnk" 1228 Hive 1 Action = REG_DWORD 1 KeyName = REG_SZ "Software\Microsoft\Windows\CurrentVersion\Telephony\HandoffPriorities" 2 Action = REG_DWORD 3 KeyName = REG_SZ "Software\Microsoft\Windows\CurrentVersion\Telephony\HandoffPriorities" ValueName = REG_SZ "RequestMakeCall" Value = REG_SZ dialer.exe 1235 Execute 1 // "Execute shell migration program (Fix special folder names)" CommandLine = REG_EXPAND_SZ "%SystemRoot%\system32\shmgrate.exe Fix-Folders" 1248 Hive 1 Action = REG_DWORD 4 KeyName = REG_SZ "Control Panel\Colors" Flags = REG_DWORD 0 ValueNames = REG_MULTI_SZ "Inactive Title Text" 2 Action = REG_DWORD 4 KeyName = REG_SZ "Control Panel\Colors" Flags = REG_DWORD 0 ValueNames = REG_MULTI_SZ "Inactive Title" 1257 Files 1 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "accessories\Print Manager.lnk" Hive 1 Action = REG_DWORD 1 KeyName = REG_SZ "Control Panel\Accessibility" 2 Action = REG_DWORD 1 KeyName = REG_SZ "Control Panel\Accessibility\Keyboard Response" 3 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\Keyboard Response" ValueName = REG_SZ AutoRepeatDelay Value = REG_SZ 1000 4 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\Keyboard Response" ValueName = REG_SZ AutoRepeatRate Value = REG_SZ 500 5 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\Keyboard Response" ValueName = REG_SZ BounceTime Value = REG_SZ 0 6 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\Keyboard Response" ValueName = REG_SZ DelayBeforeAcceptance Value = REG_SZ 1000 7 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\Keyboard Response" ValueName = REG_SZ Flags Value = REG_SZ 82 8 Action = REG_DWORD 1 KeyName = REG_SZ "Control Panel\Accessibility\MouseKeys" 9 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\MouseKeys" ValueName = REG_SZ Flags Value = REG_SZ 18 10 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\MouseKeys" ValueName = REG_SZ MaximumSpeed Value = REG_SZ 40 11 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\MouseKeys" ValueName = REG_SZ TimeToMaximumSpeed Value = REG_SZ 3000 12 Action = REG_DWORD 1 KeyName = REG_SZ "Control Panel\Accessibility\ShowSounds" 13 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\ShowSounds" ValueName = REG_SZ On Value = REG_SZ 0 14 Action = REG_DWORD 1 KeyName = REG_SZ "Control Panel\Accessibility\SoundSentry" 15 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\SoundSentry" ValueName = REG_SZ Flags Value = REG_SZ 2 16 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\SoundSentry" ValueName = REG_SZ FSTextEffect Value = REG_SZ 0 17 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\SoundSentry" ValueName = REG_SZ WindowsEffect Value = REG_SZ 0 18 Action = REG_DWORD 1 KeyName = REG_SZ "Control Panel\Accessibility\StickyKeys" 19 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\StickyKeys" ValueName = REG_SZ Flags Value = REG_SZ 466 20 Action = REG_DWORD 1 KeyName = REG_SZ "Control Panel\Accessibility\TimeOut" 21 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\TimeOut" ValueName = REG_SZ Flags Value = REG_SZ 2 22 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\TimeOut" ValueName = REG_SZ TimeToWait Value = REG_SZ 300000 23 Action = REG_DWORD 1 KeyName = REG_SZ "Control Panel\Accessibility\ToggleKeys" 24 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Accessibility\ToggleKeys" ValueName = REG_SZ Flags Value = REG_SZ 18 1262 Hive 1 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Mouse" ValueName = REG_SZ DoubleClickSpeed Value = REG_SZ 500 2 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Desktop" ValueName = REG_SZ MenuShowDelay Value = REG_SZ 400 1271 Hive 1 Action = REG_DWORD 3 KeyName = REG_SZ "AppEvents\Schemes\Apps\.Default\SystemStart\.Current" ValueName = REG_SZ "" Value = REG_SZ "Windows NT Logon Sound.wav" 2 Action = REG_DWORD 3 KeyName = REG_SZ "AppEvents\Schemes\Apps\.Default\SystemExit\.Current" ValueName = REG_SZ "" Value = REG_SZ "Windows NT Logoff Sound.wav" Files 1 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\Remote Access Admin.lnk" 2 Action = REG_DWORD 3 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Accessories\Dial-up Networking.lnk" 1291 Files 1 Action = REG_DWORD 4 Product = REG_DWORD 0 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\Disk Administrator.lnk" 2 Action = REG_DWORD 4 Product = REG_DWORD 0 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\Performance Monitor.lnk" 3 Action = REG_DWORD 4 Product = REG_DWORD 0 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\Backup.lnk" 4 Action = REG_DWORD 4 Product = REG_DWORD 0 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\Event Viewer.lnk" 5 Action = REG_DWORD 4 Product = REG_DWORD 0 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\Windows NT Diagnostics.lnk" 6 Action = REG_DWORD 4 Product = REG_DWORD 0 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\Remote Access Admin.lnk" 7 Action = REG_DWORD 4 Product = REG_DWORD 1 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\User Manager for Domains.lnk" 8 Action = REG_DWORD 4 Product = REG_DWORD 1 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\Server Manager.lnk" 9 Action = REG_DWORD 4 Product = REG_DWORD 1 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\Migration Tool for NetWare.lnk" 10 Action = REG_DWORD 4 Product = REG_DWORD 1 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\User Profile Editor.lnk" 11 Action = REG_DWORD 4 Product = REG_DWORD 0 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\User Manager.lnk" 12 Action = REG_DWORD 4 Product = REG_DWORD 0 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\DCOM Configuration.lnk" 13 Action = REG_DWORD 4 Product = REG_DWORD 1 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Administrative Tools\Administrative Wizards.lnk" 14 Action = REG_DWORD 4 Product = REG_DWORD 1 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Network Administration\Network Client Administrator.lnk" 15 Action = REG_DWORD 4 Product = REG_DWORD 1 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Network Administration\License Manager.lnk" 16 Action = REG_DWORD 4 Product = REG_DWORD 2 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Books Online.lnk" 1292 Execute 1 // "Execute shell migration program (Fix special folder names)" CommandLine = REG_EXPAND_SZ "%SystemRoot%\system32\shmgrate.exe Fix-Folders" 1324 Hive 1 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Desktop" ValueName = REG_SZ DragHeight Value = REG_SZ 2 2 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Desktop" ValueName = REG_SZ DragWidth Value = REG_SZ 2 3 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Desktop" ValueName = REG_SZ WheelScrollLines Value = REG_SZ 3 1342 Hive 1 Action = REG_DWORD 3 KeyName = REG_SZ "Control Panel\Mouse" ValueName = REG_SZ ActiveWindowTracking Value = REG_DWORD 0x00000000 1348 Execute 1 // "Execute shell migration program (Fix policy security) CommandLine = REG_EXPAND_SZ "%SystemRoot%\system32\shmgrate.exe Fix-User-Security" 1370 Files 1 Action = REG_DWORD 4 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Accessories\Write.lnk" 1372 Files 1 Action = REG_DWORD 3 Product = REG_DWORD 1 // // LOCALIZE: The data in this value entry should be localized using // the same names defined on syssetup.inf // Item = REG_SZ "Books Online.lnk"