Windows Registry Hacks/Printable version


Windows Registry Hacks

The current, editable version of this book is available in Wikibooks, the open-content textbooks collection, at
https://en.wikibooks.org/wiki/Windows_Registry_Hacks

Permission is granted to copy, distribute, and/or modify this document under the terms of the Creative Commons Attribution-ShareAlike 3.0 License.

Visual enhancement tweaks

This section deals with registry hacks which enhance the experience of using Windows.


Custom encrypted and compressed folder color edit

Description: Windows displays encrypted and compressed folders in green and blue color respectively.

HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer
Setting Value Type
Compressed folders AltColor REG_BINARY
Encrypted folders AltEncryptionColor REG_BINARY


The format for colors is

 0xRR 0xGG 0xBB 0x00
Sample Registry key to change encrypted folders to red.
Key HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer
Value Name REG_BINARY
Data Type AltEncryptionColor
Data 0xFF 0x00 0x00 0x00


Custom hot tracking color edit

Description: If single click navigation is enabled then on hovering folders, they are shown in a blue color by default. Format for colors is

 RRR GGG BBB 
Sample Registry to change hot-tracking color to purple.
Key HKCU\Control Panel\Colors
Value Name HotTrackingColor
Data Type REG_SZ
Data 128 128 0

Smooth scrolling edit

Description: Smooth scrolling changes the way windows scrolling works.Turning it ON may consume resources.

Key HKCU\Control Panel\Desktop
Value Name SmoothScroll
Data Type REG_DWORD
Data 0 OR 1

Reorganizing control panel edit

Description: The default category view in Windows Xp categorizes certain control panel icons in one category. This categorization can be controlled by adding a REG_DWORD value to the required category ID.

HKLM\Software\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\
{305CA226-D286-468e-B848-2B2E8E697B74} 2


Sample registry to move time-date control panel (timedate.cpl) to appearance and themes category
Key HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Control Panel\Extended Properties\
{305CA226-D286-468e-B848-2B2E8E697B74} 2
Value Name %SystemRoot%\system32\timedate.cpl
Data Type REG_DWORD
Data 0x00000001


0x00000000 Other options (any tool which doesn't provide category is placed here)
0x00000001 Appearance and Themes
0x00000002 Printers and Other Hardware
0x00000003 Network and Internet Connections
0x00000004 Sounds, Speech, and Audio Devices
0x00000005 Performance and Maintenance
0x00000006 Date, Time, Language, and Regional Options
0x00000007 Accessibility Options
0xFFFFFFFF No category. Such tools are started directly e.g. Add/Remove programs


Other miscellaneous tweaks

Adding Resize option to images edit

This hack will allow any JPG file to be resized from the context-menu. First: get ImageMagick toolkit for windows from This site and install it. Next: create a cmd file (a batch file for windows NT,XP, Vista) with the following contents:

@echo off
set CONVERTPATH="C:\Program Files\ImageMagick-6.3.7-Q16\"
if "%2"=="" goto NoSizeArgument
set SizeVariable=%1
set FileOnly=%~n2
set FileExtension=%~x2
set FilePath=%~p2
set DriveLetter=%~d2
goto DoConvert
:noSizeArgument
set SizeVariable=1024
set FileOnly=%~n1
set FileExtension=%~x1
set FilePath=%~p1
set DriveLetter=%~d1
:DoConvert
%CONVERTPATH%convert.exe -resize "%SizeVariable%x%SizeVariable%>" "%DriveLetter%%FilePath%%FileOnly%%FileExtension%" "%DriveLetter%%FilePath%%FileOnly%_%SizeVariable%%FileExtension%"
echo resized %FileOnly%%FileExtension% to %FileOnly%_%SizeVariable%%FileExtension%

Let's say we name this file C:\Program Files\ImageMagick-6.3.7-Q16\convert1024.cmd Now we have the command at hand to resize an arbitrary image to max dimensions of 1024x1024, keeping the aspect ratio intact. Here's how we add this command to the context menu:

  1. Open any folder (e.g. My Documents)
  2. Go to Tools | Folder Options...
  3. On the opened dialog, go to the File Types tabsheet
  4. Select in the "registered file types" the file type you want to add the resize option for. E.g. choose JPG for the most commonly used file format.
  5. Click the 'Advanced' button.
  6. In the dialog that just opened, click the 'New...' button
  7. In 'Action' fill in the description of the resize action. E.g. enter 'Re&size to 1024x1024 max'
  8. Click the browse button, and navigate to the cmd file we created in the beginning. Select it, and Click OK to confirm it all.
  9. Close the File Types dialog, and presto: you now have a resize command at the ready.


Internet software tweaks

Multiple instances of Yahoo! messenger edit

Description: The default behavior of Yahoo! messenger is such that only one instance can run at one time. But sometimes logging in from multiple IDs maybe required.

Registry to run multiple yahoo messenger instances
Key HKCU\Software\yahoo\pager\test
Value Name REG_DWORD
Data Type Plural
Data 2


Internet Explorer

This chapter deals with tweaks related to visual enhancement, performance and miscellaneous factors related to Internet Explorer


Custom Information pages edit

There are 10 information pages in total which include "navigation failure", "web page unavailable", "about:tabs" etc. The pages along with their default paths are:


Value Default Data ( in IE 6) Default Data ( in IE 7)
blank res://mshtml.dll/blank.htm res://mshtml.dll/blank.htm
NavigationFailure res://shdoclc.dll/navcancl.htm res://ieframe.dll/navcancl.htm
DesktopItemNavigationFailure res://shdoclc.dll/navcancl.htm res://ieframe.dll/navcancl.htm
NavigationCanceled res://shdoclc.dll/navcancl.htm res://ieframe.dll/navcancl.htm
OfflineInformation res://shdoclc.dll/offcancl.htm res://ieframe.dll/offcancl.htm
PostNotCached res://mshtml.dll/repost.htm res://ieframe.dll/repost.htm
NoAdd-ons value not available res://ieframe.dll/noaddon.htm
NoAdd-onsInfo value not available res://ieframe.dll/noaddoninfo.htm
SecurityRisk value not available res://ieframe.dll/securityatrisk.htm
Tabs value not available res://ieframe.dll/tabswelcome.htm

Note: "res://" in above paths stands for "resource".

The Key and data type are:

System Key: HKLM\Software\Microsoft\Internet Explorer\AboutURLs
Data type : REG_SZ


Sample registry to change "Navigation Failure" page
Key HKLM\Software\Microsoft\Internet Explorer\AboutURLs
Value Name NavigationFailure
Data Type REG_SZ
Data path to custom html page

TIP: * In case of a browser hijack, the values will be changed to reflect a particular URL. Putting back the default values can help in counter measures.

  • All the default pages can bee seen by copy-pasting the path to Run dialog box (e.g. pasting "res://shdoclc.dll/offcancl.htm" in Run dialog box will open up the "web page unavailable offline" page.
  • Or they can be seen by typing in the Run Dialog box OR IE address bar the following:
    • about:<value>
      • replacing <value> with one of the values from table above as below
    • about:OfflineInformation
    • about:Tabs

Background bitmap for explorer toolbars edit

Description: Internet explorer can be customized to use a bitmap image as a background for toolbars.

Note: Only images with bmp as extension will work.

Key HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar
Value Name BackBitmapShell < This is the name of your new "String Value"
Data Type String Value (Right click on right-hand pane and select "New > String Value")
Data Enter the direct path to your bitmap image (e.g. C:\WINDOWS\Resources\"New Folder Name")

Custom loading icon and animation edit

Description: Internet Explorer uses static and dynamic icons which can be seen at top-right. 4 Values are needed for customization which are:

Value Description
BigBitmap A 38x38 pixel bitmap image which is in use when no data transfer takes place.
SmallBitmap A 22x22 pixel bitmap which is in use when no data transfer takes place.
BrandBitmap A 38x38 pixel GIF image which is in use when data transfer takes place.
SmBrandBitmap A 22x22 pixel GIF image which is in use when data transfer takes place.
Registry to use custom "BigBitmap". Other Values also have same properties except for "value"
Key HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Toolbar
Value Name BigBitmap
Data Type REG_SZ
Data path to 38x38 bitmap image

Custom title bar text edit

Description: The title-bar in Internet Explorer can be customized to show personalized text.

Registry to change title bar text to "Wikibooks"
Key HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main
Value Name Window Title
Data Type REG_SZ
Data Wikibooks

Change hyperlink colors edit

Description: Hyperlink and visited hyperlink colors are shown in blue (0,0,255) and purple (128,0,128) respectively. Changing the hover text color requires the setting to be enabled first. It can be done by using the following registry:

Key HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Settings
Value Name Use Anchor Hover Color
Data Type REG_SZ
Data Yes

The format for colors is

 RRR,GGG,BBB (in decimal)
Registry for changing the hyperlink color to green.
Key HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Settings
Value Name Anchor Color
Data Type REG_SZ
Data 0,255,0
Registry for changing visited hyperlink color to red.
Key HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Settings
Value Name Anchor Color Visited
Data Type REG_SZ
Data 255,0,0
Registry for changing hover color to blue.
Key HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Settings
Value Name Anchor Color Hover
Data Type REG_SZ
Data 0,0,255


Hardware Tweaks

Fixing error messages edit

Windows cannot load the device driver for this hardware. The driver may be corrupted or missing. (Code 39) edit

CD-ROM Drive Related Issues edit

There is a bug in Microsoft Windows XP and Microsoft Windows Vista, that causes the operating system to ignore the presence of installed devices and drivers, following a reboot of the system. An error message occurs as follows following reboot:

Windows cannot load the device driver for this hardware. The driver may be corrupted or missing. (Code 39)

When this error occurs, the CD-ROM drives do not show as available, so it will not be possible to use the drives, even though the CD-ROM drives may have been operating normally during the previous session.

Uninstalling the device does not fix this error edit

Uninstalling the drive using the device manager and rebooting the computer does not resolve this error.

Affected Systems edit

Microsoft Windows XP Microsoft Windows Vista

Resolution edit

In order to resolve this issue, it is necessary to edit the CD-ROM drive class registrykey, using the registryeditor, as follows:

   * HKEY_LOCAL_MACHINE
         o SYSTEM
               + CurrentControlSet
                     # Control
                           * Class
                                 o {4D36E965-E325-11CE-BFC1-08002BE10318}

Remove any of the following registry entries against the CD-ROM drive class registrykey:

   * UpperFilters
   * LowerFilters
   * UpperFilters.bak
   * LowerFilters.bak

It is now necessary to reboot the computer in order for the CD-ROM drives to be made visible.


HKEY CLASSES ROOT

The *Microsoft Windows Registry* is divided into sets and subsets. The HKEY_CLASSES_ROOT set contains the following subset entries:

  • The file extension subset types:
  • The class identifiers
  • The typelib entries
  • Package and vendor specific entries
  • Compatibility entries
  • Installer entries
  • Virtual store entries


HKEY LOCAL MACHINE

Autologon edit

In the case of a Windows family with one (admin) user and no password, his desktop may open automatically after the boot: that's the autologin system.

To set it on the other configurations (eg: Windows professional), just execute a .reg file with the following keys:

[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]
 "AutoAdminLogon"="1"
 "DefaultUserName"="TheUserToUse"
 "DefaultDomainName"="TheUserDomain"
 "DefaultPassword"="TheUserPassword"

Beware: the password will become readable (in Regedit) by anyone who touches the machine.

Changing program installation directories edit

With Cygwin you can list the registry entries concerning installation directories with one of these commands:

regtool list -v /HKEY_LOCAL_MACHINE/SOFTWARE/Wow6432Node/Microsoft/Windows/CurrentVersion | grep Program

or

regtool list -v /HKEY_LOCAL_MACHINE/SOFTWARE/Microsoft/Windows/CurrentVersion | grep Program

The output should be something like:

SM_ConfigureProgramsName (REG_SZ) = "Set Program Access and Defaults"
CommonFilesDir (REG_SZ) = "C:\Program Files (x86)\Common Files"
CommonFilesDir (x86) (REG_SZ) = "C:\Program Files (x86)\Common Files"
CommonW6432Dir (REG_SZ) = "C:\Program Files\Common Files"
ProgramFilesDir (REG_SZ) = "C:\Program Files (x86)"
ProgramFilesDir (x86) (REG_SZ) = "C:\Program Files (x86)"
ProgramFilesPath (REG_EXPAND_SZ) = "%ProgramFiles(x86)%"
ProgramW6432Dir (REG_SZ) = "C:\Program Files"

Changing the user home directory edit

The registry key that has to be changed is

HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\WINDOWS NT\CurrentVersion\ProfileList\ProfilesDirectory

The default value is %SystemDrive%\Users and can be changed to a specific path (without %SystemDrive%), like for instance U:\usr\unix\cygwin\home.

To move the remaining content of C:\users you have to open "Start -> Control Panel -> Folder Options" and select the "Show Hidden files, folders, and drives" option in the "View" tab. This will make a "default" subdirectory visible in the C:\users directory. Now most of the content of C:\users can be copied to the new destination (but not all the files of the active user).

For the "default" and "public" subdirectories the following keys need to be set to point to the new location:

HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\WINDOWS NT\CurrentVersion\ProfileList\Default
HKEY_LOCAL_MACHINE\SOFTWARE\MICROSOFT\WINDOWS NT\CurrentVersion\ProfileList\Public

On Windows 7 (and probably other versions) the procedure does only affect accounts created after changing the ProfilesDirectory setting. For all other accounts the location of the Desktop, Documents and other standardized directories have to be changed manually, which is, of course, also possible without changing the registry. These locations are: Contacts, Desktop, Documents, Downloads, Favorites, Links, Music, Pictures, Saved Games, Searches, Videos and Virtual Machines.

For accounts created earlier one should also use %windir%\system32\compmgmt.msc (Computer Management) to change the location of the home folder local path under the "Profile" tab. This will, however, not automatically change the location of Desktop, Documents and other standardized directories.


HKEY USERS

HKEY USERS/Default/Control panel/Desktop/ select wallpaper and in path enter your own wall paper path


Alphanumerical List of Microsoft Windows Registry Class Identifiers

The *Microsoft Windows Registry* contains a set of Globally Unique Identifier keys.

The following Globally Unique Identifier keys are used as Class Identifiers within the Microsoft Windows registry, and are stored as a subclass of the HKEY_CLASSES_ROOT\CLSID registry subset entry:

00000000-0000-0000-C000-000000000046 - Component Object Model Fundamental [IUnknown] Interface
0000010E-0000-0000-C000-000000000046 - Microsoft Word IDataObject interface
00020813-0000-0000-C000-000000000046 - Microsoft Excel 9.0 Object Library
00020820-0000-0000-C000-000000000046 - Microsoft Excel Object (Unknown)
00020821-0000-0000-C000-000000000046 - Microsoft Excel Object (Unknown)
00020900-0000-0000-C000-000000000046 - Microsoft Word Document
00020906-0000-0000-C000-000000000046 - Microsoft Word Document (Alternative Key)
00020C01-0000-0000-C000-000000000046 - Microsoft Excel Object (Unknown)
00020d75-0000-0000-c000-000000000046 - Inbox
00021300-0000-0000-CD00-000000000046 - Microsoft Works Spreadsheet
00028b00-0000-0000-C000-000000000046 - The Microsoft Network
0002C200-0000-0000-CD00-000000000046 - Microsoft Works
00030028-0000-0000-CD00-000000000046 - Microsoft Works
00192F1E-2D33-4239-B00F-5DD54EBE3A7B - Microsoft Works
00E1DB59-6EFD-4CE7-8CDA-2DA3BCAAD9C6 - Microsoft Works
0578DF30-4383-11D2-B91E-0060089F5C5D - Microsoft Works Answer Wizard
07167665-5011-11CF-BF33-00AA0055595A - Full Screen Renderer
0750F139-0FE7-4F8F-AA7C-9F7C35D471D1 - Microsoft Works Shoebox
07E5EC16-E7FF-44E5-A0C2-D8C443C19A69 - Microsoft Works Shoebox
0805A49F-1AB8-4E4F-BF87-896182BE09E3 - Microsoft Works Shoebox
085C06A0-3CAA-11d0-A00E-00A024A85A2C - Microsoft Netmeeting (Quality of Service)
09799AFB-AD67-11D1-ABCD-00C04FC30936 - Open With (Context Menu)
a2a9545d-a0c2-42b4-9708-a0b2badd77c8 - Unknown Context Menu handler
A470F8CF-A1E8-4F65-8335-227475AA5C46 - Open with Encryption (Context Menu)
0CD18583-8805-11D2-BD0E-00CD4F72DB8C - Microsoft Works
0D2E74C4-3C34-11d2-A27E-00C04FC30871 - Non critical Shell Extension Column Handler (Can safely be removed)
0FF3639A-8A82-11D2-B46F-FA00AD000000 - Microsoft Works Word Processor Application Control
129D7E40-C10D-11D0-AFB9-00AA00B67A42 - DV Muxer
152A1E9D-352F-4F25-87F6-A018312D9F45 - Microsoft Works
17ADAC6D-E798-11D2-BA25-00C04F72DABA - Microsoft Works Merge Wizard
1A56E943-8D1E-4A76-9BF7-0FA7614A6029 - Freeze.com installer
1ACF39C8-83F0-11D2-BA0F-00CD4F72DABA - Microsoft Works Templates
1B11B545-5565-401B-A974-C58767F8B8EA - Microsoft Works Shoebox
1B4EE5FC-7FF0-4D4F-987E-FBCA5B6F338A - Microsoft Works Shoebox
1f4de370-d627-11d1-ba4f-00a0c91eedba - Network Computers
208d2c60-3aea-1069-a2d7-08002b30309d - My Network Places
20d04fe0-3aea-1069-a2d8-08002b30309d - My Computer
21ec2o2o-3aea-1o69-a2dd-08002b30309d - Control Panel
2227a280-3aea-1069-a2de-08002b30309d - Printers and Faxes
22D6F312-B0F6-11D0-94AB-0080C74C7E95 - Windows Media Player (Traditional Versions)
22d6f312-b0f6-11d0-94ab-0080c74c7e95 - Windows Media Player 6.4
26941ECD-9417-41F2-B0DB-5D29EF3C816D - Activescan (Panda Antivirus)
24F14F01-7B1C-11d1-838f-0000F80461CF - Non critical Shell Extension Column Handler (Can safely be removed)
24F14F02-7B1C-11d1-838f-0000F80461CF - Non critical Shell Extension Column Handler (Can safely be removed)
2C7339CF-2B09-4501-B3F3-F3508C9228ED - Theme Setup Program (Non Critical)
361E80BE-388B-4270-BF54-A10C2B756504 - Drop Down Deals Suite
44BBA840-CC51-11CF-AAFA-00AA00B6015C - Microsoft Outlook Express Setup Program
44BBA842-CC51-11CF-AAFA-00AA00B6015B - Microsoft Netmeeting
450d8fba-ad25-11d0-98a8-0800361b1103 - My Documents
472083B0-C522-11CF-8763-00608CC02F24 - Avast Antivirus
48e7caab-b918-4e58-a94d-505519c795dc - Start Menu Folder
4D36E965-E325-11CE-BFC1-08002BE10318 - CDROM Drive Class Description
645ff040-5081-101b-9f08-00aa002f954e - Recycle Bin
65713842-C410-4F44-8383-BFE01A398C90 - Clamwin Antivirus
66742402-F9B9-11D1-A202-0000F81FEDEE - Non critical Shell Extension Column Handler (Can safely be removed)
6BF52A52-394A-11D3-B153-00C04F79FAA6 - Windows Media Player (Versions 7, 8 or 9)
7007acc7-3202-11d1-aad2-00805fc1270e - Network Connections
750FDF0E-2A26-11D1-A3EA-080036587F03 - Offline Files
7790769C-0471-11d2-AF11-00C04FA35D02 - Microsoft Outlook Express Address Book
7bd29e00-76c1-11cf-9dd0-00a0c9034933 - Temporary Internet Files
7be9d83c-a729-4d97-b5a7-1b7313c39e0a - Programs Folder
85bbd92o-42a0-1o69-a2e4-08002b30309d - My Briefcase
889DF117-14D1-44EE-9F31-C5FB5D47F68B - Yontoo
89820200-ECBD-11cf-8B85-00AA005B4383 - Microsoft Internet Explorer Initializer (Non Critical)
ACC563BC-4266-43f0-B6ED-9D38C4202C7E - Microsoft Internet Explorer User Access (Non Critical)
bdeadf00-c265-11d0-bced-00a0c90ab50f - Web Folders
CFDAFE39-20CE-451D-BD45-A37452F39CF0 - Yontoo application
d20ea4e1-3957-11d2-a40b-0c5020524152 - Fonts
d20ea4e1-3957-11d2-a40b-0c5020524153 - Administrative Tools
D372567D-67C1-4B29-B3F0-159B52B3E967 - Yontoo Client 1.0 Type Library
d6277990-4c6a-11cf-8d87-00aa0060f5bf - Scheduled Tasks
DF7770F&-832F-4BDF-B144-100EDDD0C3AE - Yontoo API
e211b736-43fd-11d1-9efb-0000f8757fcd - Scanners and Cameras
EBD0A0A2-B9E5-4433-87C0-68B6B72699C7 - EFI] Basic Data Partition Identifier for GPT Devices
FD72061E-9FDE-484D-A58A-0BAB4151CAD8 - Yontoo
FE48704D-DC92-4F10-91DE-C676E25624CF - Shot Boundary Detection
ff393560-c2a7-11cf-bff4-444553540000 - History


Alphanumerical List of Microsoft Windows Registry Type Library Entries

The *Microsoft Windows Registry* contains a set of Globally Unique Identifier keys that are used as type library entries within the Microsoft Windows registry. These entries are stored in a subclass of the HKEY_CLASSES_ROOT\Typelib registry subset:

17ADAC60-E798-11D2-BA25-00C04F72DABA - Microsoft Works
1A7BCA10-6D05-11D2-BA08-00C04F72DABA - Microsoft Works
2CC9D12A-D2C7-11D3-BA6D-00C04F72DABA - Microsoft Works
4315BE12-0D30-4220-9CF3-07F98B7981D0 - Microsoft Works
4F53678A-A07A-4313-8DA6-8859DE59E6AB - Microsoft Works
52656BC3-ED0A-11D2-67F4-00C04F72DAF0 - Microsoft Works
53BCE0AD-C112-11D2-BA1A-00C04F72DABA - Microsoft Works
56DDDEC5-8BDE-11D3-A9EA-00C04F72DAEB - Microsoft Works
6E26C7B3-8EB9-11D3-A1C8-00C04F612452 - Microsoft Works
7033900D-25E7-11D4-BA89-00C04F72DABA - Microsoft Works
7EF4BCCD-24B0-449A-9858-82C1FFCDCB5A - Microsoft Works
82808CD0-6329-45C9-6168-502F289DD0B7 - Microsoft Works
828C1115-D391-11D3-956D-00C04F79D1E5 - Microsoft Works
AC8AAE28-801C-11D2-AC48-00C04F72DAF0 - Microsoft Works
AF9D09F7-5309-11D2-9129-00A0C90CFFB8 - Microsoft Works
B5394212-6D3A-11D2-BA08-00CD4F72DABA - Microsoft Works
C3E7A4D1-AF8B-11D2-BD0F-00C04F72DBBC - Microsoft Works
E38B5DC3-6D2A-11D2-8A08-00C04F72DABA - Microsoft Works
E6575327-898C-11D2-9839-00C04F72DAFE - Microsoft Works
EA7E74A3-3A70-43A0-8ED7-D96A09C6394D - Microsoft Works
F1269E08-8A8A-11D2-B46F-FA00AD000000 - Microsoft Works
F1BDDD0F-6D2C-11D2-BA08-00CD4F72DABA - Microsoft Works
F226DF23-DBA7-11D2-A39D-00C04F72DA81 - Microsoft Works


Alphanumerical List of Microsoft Windows Registry Installer Component Entries

The *Microsoft Windows Registry* contains a set of Globally Unique Identifier keys that are used as installr component entries within the Microsoft Windows registry. These entries are stored in a subclass of the HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Current Version\Installer\Userdata\5-1-5-18\Components\ registry subset:

015bEF264C618B14B8C6ACC8C4A4BEDE - Microsoft Works
0305684A7CEF08B4797CA70942A8ED82 - Microsoft Works
0548FB87F016F114A9F2ACEDDC26B044 - Microsoft Works
0657394755A5D074AA5CF8E4EFAC518D - Microsoft Works
065F131BE2F23D1108F5000CF43A92AA - Microsoft Works
06E864860F4722F4419271934C52909E - Microsoft Works
07CE5A4CF1D2D1108842000CF43A92AA - Microsoft Works
0991620ABA5D2D110851000CF43A92AA - Microsoft Works
0BACE36D7A7174E4C93206A9D4645AB5 - Microsoft Works
0D2ADEBEC02CDC1108A0000CF43A92AA - Microsoft Works
0D7B1494B452BEF458CB3D3F2CF02D42 - Microsoft Works
0E56F2B4364448D478866FBE4897A34C - Microsoft Works
0EDC6AF62DF13D1108E4000CF43A92AA - Microsoft Works
1067DEF81C68C77409384593F25DA78C - Microsoft Works
12AABB664E4A2A4A4BA9CB53670688BC - Microsoft Works
13B58B9A4FCA8784C8F3C0BE207A86F8 - Microsoft Works
142003A43636478439560935D90673F5 - Microsoft Works
14ECB815A7E23D113B09000A9CD0823B - Microsoft Works
18444723A3CA3D110878000CF43A92AA - Microsoft Works
1B4619053E21F8241805756C4CE31E55 - Microsoft Works
1B73DF6F17DD2D113BF6000A9CD0823B - Microsoft Works
1DECFF539EF03DD4BA81731FD19FEC97 - Microsoft Works
1E5657D72E1E1844BB8D303AEC941522 - Microsoft Works
1EDF82253825E8C4F854BDDE636D6F4A - Microsoft Works
1F1B0FE846571C44796A4137D0088E70 - Microsoft Works
1F2F7FA3E25C24A4B9B2E79028EF6F24 - Microsoft Works
201AE980804344D4F88493EB70B13847 - Microsoft Works
20875041DC8944744BF14CCB4FE20E2B - Microsoft Works
2195FFFF486A3D110858000CF43A92AA - Microsoft Works
221B6B3BB29F2BC48AE198A7DB95BCB0 - Microsoft Works
251141B62FAC3D110819000CF43A92AA - Microsoft Works
25E0C2539B6B2D1108D0000CF43A92AA - Microsoft Works
267399904C103D116BEB0001A580D80B - Microsoft Works
26697AC749133D1108F5000CF43A92AA - Microsoft Works
27CE5A4CF1DF2D110842000CF43A92AA - Microsoft Works
288234039D0DD113B360000A9CD0823B - Microsoft Works
28E3CC0BA04F2D11B78B0001A580D80B - Microsoft Works
29801F3F620C4404EA7FDA93C5867678 - Microsoft Works
2A247CA928223D112B2C0001A580D80B - Microsoft Works
2A48FF50726006F47A168DFAA0ACFBE5 - Microsoft Works
2BDF310F1B135734AA151E31CFF27B96 - Microsoft Works
2C11C38C83185F94AB7C02E19A9B60A3 - Microsoft Works
2D56B16F4402C9143882E915A6CDA59D - Microsoft Works
2D68C69C2306837468168E520CBA209A - Microsoft Works
2E3FF080AA503D110843000CF43A92AA - Microsoft Works
3195FFFF4B6A3D110858000CF43A92AA - Microsoft Works
320DBDF989E254B42BA97990133BA87C - Microsoft Works
32A9F04F8A9B3FD4FA2A6033F6FF6953 - Microsoft Works
33F101D2C67DBA1428C1BBBF43BD1C98 - Microsoft Works
35C8716865CCAE6458D845AEE99E0FA5 - Microsoft Works
367399904C103D116BEB0001A580D80B - Microsoft Works
370EFED8A7D83244E8A83E8BF4AF03C4 - Microsoft Works
38E3CC0BA04F2D116B7B0001A580D80B - Microsoft Works
3915610141CACC944B69808C15BE2BEE - Microsoft Works
39A4A2EE98C4188409618DD4ABE325C4 - Microsoft Works
3C8DA5E82E124F34E9217908519DDF67 - Microsoft Works
3D792D0A2039D118806000CF42723F9B - Microsoft Works
3EECDAFF4FA12BE4984ED02A0DC28EA4 - Microsoft Works
3F38828FFCF730B4EB64CE38A8FB3D81 - Microsoft Works
4077A65CB2A0C5143BD2F0C37F2FED24 - Microsoft Works
41012796A6593D1108E7000CF43A92AA - Microsoft Works
41528BDCEC1D2D110821000CF43A92AA - Microsoft Works
4169F85FA0DD00B45A6E387A9AA0D541 - Microsoft Works
417A467A60BA4024FB63EB5EFA82EA68 - Microsoft Works
4195FFFF4B6A3D110858000CF43A92AA - Microsoft Works
4191A697ED02CD7141AC46CD38E6D04F - Microsoft Works
4493332C7BE74DC49AA818261F81F288 - Microsoft Works
44BE949A62419624E8B45112F31B9FCE - Microsoft Works
44CEF36CFF693D1108E7000CF43A92AA - Microsoft Works
451D156C5CE376548BE0BE870E0F11CD - Microsoft Works
46E5194C12D45894FA4FE5FAD1D24802 - Microsoft Works
47BE27D4575B2D110880000CF43A92AA - Microsoft Works
49BE27D4575B2D110880000CF43A92AA - Microsoft Works
4A4591AE114D3D110899000CF43A92AA - Microsoft Works
4B87623CEF303D110813000CF43A92AA - Microsoft Works
4CF2F0A2EC9EE664AB7EC95DFF5B2866 - Microsoft Works
4E4B27BB30AA8EC4B9894D5B743341E1 - Microsoft Works
50761CBEDD455A740A665A3D63ABB825 - Microsoft Works
52A1007B72F98CF409AB2CA51B2F5CCA - Microsoft Works
53D00F02B67611245A14D0132177DDD2 - Microsoft Works
54EE7B3C6A3169B4B9D15B2BA5E2F9B6 - Microsoft Works
55D832BBFBBC6DC4F95524E543725FD5 - Microsoft Works
57FD631FEB1F2D116B6B0001A580D80B - Microsoft Works
58BE27D4575B2D110880000CF43A92AA - Microsoft Works
596B7CD7F45DA054F89C95D630A45B0D - Microsoft Works
59BE27D4575B2D110880000CF43A92AA - Microsoft Works
5BC7A0F6C97B4F94FA258608F27DED05 - Microsoft Works
5D0F7F1572FE44545BEB5DE5ADCE1CFE - Microsoft Works
5E09689EC908FDD408FF866C019FDA7E - Microsoft Works
5E104E853054F94449D03BC77828FD41 - Microsoft Works
60070CC57B413D110864000CF43A92AA - Microsoft Works
6029FA33CEF8F8E4D8B0AC9618843CBE - Microsoft Works
6035BA8AE3ED6CC4895D26E01CC82F41 - Microsoft Works
614888A97D75F4D4CBFA2B3B5843DA6A - Microsoft Works
62DEC84366CD2A44490D578DBA4CFD8D - Microsoft Works
63C5C2E98BF519343924AC3697913441 - Microsoft Works
6406E926697DEF34383DC14AB4E8EDFE - Microsoft Works
6453ECC348ABF6344B0D2BF924B0165B - Microsoft Works
645A660155DA543644A8E0C217A36313 - Microsoft Works
651C6422CD684BD4790910F50CB8BB83 - Microsoft Works
655A67FC253415F45AB237D96C54F11E - Microsoft Works
65986321C522904AAD349274E16334F7 - Microsoft Works
660F3EE7CA803D1168FB0001A580D808 - Microsoft Works
6658960736095264C9F1A147BDC908FE - Microsoft Works
670457976DBBFC445ABDB1F11891AB01 - Microsoft Works
67FD631FEB1F2D116B6B0001A580D80B - Microsoft Works
6970CF07AECD35641BF847BD8FC72FB3 - Microsoft Works
6C216F53BDDF81D4086A9DA49BBF9355 - Microsoft Works
6C23B998242B03548A442D95AB516FDC - Microsoft Works
6DEC1701D1779B648BE36DB470CF04F2 - Microsoft Works
6FB4E36BD72633A42BFAFB20D6072CD1 - Microsoft Works
70286A0B8F5FD1108E10000CF43A92AA - Microsoft Works
70D6EE88A95FA794D98B11525AB28240 - Microsoft Works
71261F17EF2AF654E83D199284C88DF9 - Microsoft Works
716D802F34C477341801330459132554 - Microsoft Works
7199EB36B2060D4F92D713592D71B7A0 - Microsoft Works
734CD87F5DB2BDBF46A91E64A7182A32 - Microsoft Works
74D85FE5B628BF043A8F8E51386BA6D5 - Microsoft Works
7507E23BB628BF043A8F8E51386BA6D5 - Microsoft Works
752336C808B1490444AB0DE24D6210B1 - Microsoft Works
762D5D8FE50C2D110880000CF43A92AA - Microsoft Works
78BE27D4575B2D110880000CF43A92AA - Microsoft Works
78D2369A0BE3E3B4AA4519968A3A6805 - Microsoft Works
78D4354F4DD18164596DF4CE13D24B00 - Microsoft Works
795170171F0D3164B9C6F58735D1AFDD - Microsoft Works
799AB5DD529D58B4AAB7879569A944C1 - Microsoft Works
79BBE27D4575B2D110880000CF43A2AA - Microsoft Works
7DFF85ED8FD44114081070A849FA2D21 - Microsoft Works
7E9F7B88A60A7674389CB51B34FE66A0 - Microsoft Works
80715740DA36A8742A367CD66EEB9923 - Microsoft Works
80BBE06BD378BDC4E9E94D2FFF8F614D - Microsoft Works
83992687D96A1794485A8AA4A78D09F0 - Microsoft Works
841D9078487C2D1108B0000CF43A92AA - Microsoft Works
841EC770B3BD2D110861000CF43A92AA - Microsoft Works
848F5AC140369DE4990E2A4C2FDE50AC - Microsoft Works
8496E5F402FA27F48A7B762ED878F773 - Microsoft Works
862D5D6FE50C2D110880000CF43A92AA - Microsoft Works
86328F1BEACFFA5478CB768DA513AE10 - Microsoft Works
87AA16A909D0BBA4095950B58C6F3814 - Microsoft Works
88BE27D4575B2D110880000CF43A92AA - Microsoft Works
89BE27D4575B2D110880000CF43A92AA - Microsoft Works
8BAD6B5B2D433D110846000CF43A92AA - Microsoft Works
8C19374C2C008E9408EA9217228C2A08 - Microsoft Works
8CBC1F61F96F2D1108C1000CF43A92AA - Microsoft Works
8D6E6E3762FC2294F918B2D4FB9250AA - Microsoft Works
8F16A4F6F4293D118806000CF4273F9B - Microsoft Works
90CD104E689110B48AE8EFAEB64B6784 - Microsoft Works
915C4ABDCF438C4286915918894598A9 - Microsoft Works
9185606C51D1B9641B21BBB6102919C7 - Microsoft Works
91EF604F6E032474392FD9C5D4A09C58 - Microsoft Works
9252DF7952028AE46A1798A29E3CDFE9 - Microsoft Works
928A302D6BB3F0F41967807823E89862 - Microsoft Works
9345EB41900A87E4CB856C898D88733D - Microsoft Works
94A865E9592AD04478BCAD6D30461CD7 - Microsoft Works
95350FF96CC7384981044AB56B9BB414 - Microsoft Works
9681E52C5F9B7834A86D22DB3822D152 - Microsoft Works
96E2D1A8BC2AA6543BACF2B208F36CD9 - Microsoft Works
977961388E258D941B5A040526BB4207 - Microsoft Works
979E92CC2CB7D119AA12000A9CE1A22A - Microsoft Works
980CBDB1ACE0F064A8414D7F2AA4CCFE - Microsoft Works
98BE27D4575B2D110880000CF43A92AA - Microsoft Works
99406BE920B30B54F8E197C8C2E86975 - Microsoft Works
9AAB4DF8D13DF4D4FB26F737DD31AD77 - Microsoft Works
9AB11996A05B20A488EDB48FF904D098 - Microsoft Works
9BAE9FD9F04A77B4298DC67EBD676151 - Microsoft Works
9E678F0996EDBEF47A2B822BF2FABE5B - Microsoft Works
9F16A4F6F4293D118806000CF4273F98 - Microsoft Works
A246ED920BB37FA40A9DE6FDD5319027 - Microsoft Works
A253E76BA7F5487418CEEAA99F758C0F - Microsoft Works
A2EFCD45698614A40B0338A54674707D - Microsoft Works
A533BE8A0B3C2D1108B0000CF43A92AA - Microsoft Works
A58DA4B0C781CBA498563C55A63A9EA3 - Microsoft Works
A7587EF1B9472CE44AEFEA64D55D8D26 - Microsoft Works
A8550D331D16BC1604961DB2F4E28A66 - Microsoft Works
A9280D8FFBC93D110808000CF43A92AA - Microsoft Works
AA8BF95E6A2EB524C92DBDFD2BCB107E - Microsoft Works
AAF7B7284ECA76E48AB439D1A5AE0704 - Microsoft Works
AB451BD684C9A5740BD23773A2816D9A - Microsoft Works
ABCF8A0A3E0C5F949885F0E4C2FC3971 - Microsoft Works
AD235A97881E3C14EBE7B676E3F2CEDA - Microsoft Works
AE0C9532A3D93D110818000CF43A82AA - Microsoft Works
AE73A7AB697CB2D110880000CF4392AA - Microsoft Works
AF16AF6F4293D1188060000CF4273F9B - Microsoft Works
B095FFFF4B6A3D110858000CF43A92AA - Microsoft Works
B207D4F92C7A90E40AB799AB12481EFC - Microsoft Works
B27C68BE76FA0BE44AB69105D898C8AF - Microsoft Works
B263F6AFC8E95C54FB52CC9A46F5EA4B - Microsoft Works
B3CE206099ED3D11082A000CF43A92AA - Microsoft Works
B419529986CD67440916B456970FC771 - Microsoft Works
B4259FDF28143664C818F624141BF698 - Microsoft Works
B63B261EA4ECE984D9D7429F0F0092A8 - Microsoft Works
B63B261EA4ECE984D9D7429F0F0092B8 - Microsoft Works
B649C92EF9181D84490A7905353E509D - Microsoft Works
B7B8113E42B562949BAC345D07B4A2D5 - Microsoft Works
B864D2B76BD2AD1489D9A3EA7C1913E7 - Microsoft Works
B8B88DEC9C4DDCB45BDE0CCA1895B3AA - Microsoft Works