Jump to content

HKCU\Control Panel\Desktop\UserPreferencesMask


ophiel

Recommended Posts

  • 4 months later...

Here are my current UserPreferencesMask findings (but I don't say the list is complete B) ):

Unofficial UserPreferencesMask reference.

If anyone find out more info, please share. ;)

________________________________________

Edit: Just a note - I believe the list is presently almost complete, maybe there could be new bits used in the Windows Vista, but I haven't tested it yet...

Edit2: I removed the codebox and the old txt file, to download new one, just check out the post below.

Edited by r3incarnat0r
Link to comment
Share on other sites

  • 1 month later...

To those who are interested I updated my unofficial UserPreferencesMask reference. B)

Changes:

- added 0x00004000 (show pointer location)

- added 0x00008000 (ClickLock)

- added 0x00010000 (hide pointer while typing)

- fixed 0x00000020 (keyboard cues) wrong value info

- more detailed descriptions

Download (attached txt file):

UserPreferencesMask_061029.txt

Link to comment
Share on other sites

  • 4 weeks later...
  • 2 weeks later...

Regarding UserPreferencesMask, in the picture there are Flat menus and Shadow under menus tweaks enabled. The rest (i.e. graphics) would depend on an applied Visual style. (I suppose that the screenshot is taken from an application like OfficeXP.)

; a file with INF extension:
[Version]
Signature="$Windows NT$"

[DefaultInstall]
BitReg=Tweak

[Tweak]
HKCU,"Control Panel\Desktop","UserPreferencesMask",1,0x02,2
HKCU,"Control Panel\Desktop","UserPreferencesMask",1,0x04,2

Edited by r3incarnat0r
Link to comment
Share on other sites

  • 3 months later...
  • 3 weeks later...

1) Save the text to VisualTweaks.INF (Please note that it has the .INF extension and not the .REG extension). I use a .INF file because it allows for bit-wise operations and a .REG does not allow bit-wise operations.

2) Edit the VisualTweaks.ING and at the end of the file you will find lines that contain stringname=value. You only need to modify each value to the desired setting.

3) Run the following command to apply the VisualTweaks.INF:

[Version]
Signature=$CHICAGO$

; [DefaultInstall] section
; AddReg directive indicates the names of sections that contain settings you want to add to the registry.
; DelReg directive indicates the names of sections that contain settings to delete.
; BitReg directive indicates the names of sections that contain bits you want to set and clear.
; CopyFiles
;
; [add-registry-sections] must be uniquely named and can contain multiple entries
; rootkey, [subkey], [value], [flags], [data]
; rootkey = Rootkey containing the key or value. HKCR (Classes Root), HKCU (Current User), HKLM (Local Machine), HKU (All Users)
; subkey = Subkey to create or the subkey in which to add or change a value. This is optional.
; value = Name of the value to create or modify if it exists. This value is optional. If value is ommitted and the flags
; and data parameters are given, operations are on the key's default value.
; If value, flags, and data are omitted, you are adding a subkey.
; flags = 0x00000000 Value is REG_SZ
; 0x00000001 Value is REG_BINARY
; 0x00010000 Value is REG_MULTI_SZ
; 0x00020000 Value is REG_EXPAND_SZ
; 0x00010001 Value is REG_DWORD
; 0x00020001 Value is REG_NONE
; 0x00000002 Don't overwrite existing keys and values. Combine this flag with others by ORing.
; 0x00000004 Delete subkey or delete value from subkey. Combine this flag with others by ORing.
; 0x00000008 Append data to REG_MULTI_SZ value. Appended if does not already exists. Combine this flag with others by ORing.
; 0x00000010 Create subkey, but ignore value and data if specified. Combine this flag with others by ORing.
; 0x00000020 Set value only if it already exists. Combine this flag with others by ORing.
; 0x00001000 Make change to 64-bit registry. If not specified, change is made to native reg. Combine this flag with others by ORing.
; 0x00004000 Make change to 32-bit registry. If not specified, change is made to native reg. Combine this flag with others by ORing.
; data = The data to write to value. Use quotes around a string.
;
; [del-registry-sections] must be uniquely named and can contain multiple entries.
; rootkey, [subkey], [value], [flags], [data]
; rootkey = Rootkey containing the key or value. HKCR, HKCU, HKLM, HKU
; subkey = Subkey to delete or the subkey in which to delete a value. This is optional. If missing, all operations performed on rootkey.
; value = Name of the value to delete. This value is optional. If missing, you are deleting subkey
; flags = 0x00002000 Delete the entire subkey
; 0x00004000 Make the specified change in the 32-bit registry. Combine this flag with others by ORing.
; 0x00018002 If value is REG_MULTI_SZ, remove all strings matching the string indicated by data
; data = The is only used when flags is 0x00018002. Specifies string to remove from REG_MULTI_SZ
;
; [bit-registry-sections] must be uniquely named and can contain multiple entries.
; rootkey, [subkey], value, [flags], mask, byte
; rootkey = Rootkey containing the key or value. HKCR, HKCU, HKLM, HKU
; subkey = Subkey in which to modify a value. This is optional. If missing, all operations performed on rootkey.
; value = Name of the value to modify. This value is NOT optional and should be REG_DWORD or REG_BINARY
; flags = 0x00000000 Clear the bits specified by mask.
; 0x00000001 Set the bits specified by mask.
; 0x00040000 Make the specified change in the 32-bit registry. Combine this flag with others by ORing.
; mask = Byte-sized mask specifying the bits to set or clear in the specified byte of value. Specify this mask in hex.
; Bits that are 1 will be set or cleared, depending on flags. Bits that are 0 will be ignored.
; byte = Specifies the byte position in value to which you want to apply mask. The left-most byte is 0. The next is 1, 2, 3...
; NOTE: Windows XP stores REG_DWORD values in reverse byte order when specifying which byte on which to apply mask. Thus,
; REG_DWORD values have the right-most byte stored first in memory.
;
; [DefaultInstall]
; BitReg=Bit.Settings
; AddReg=Reg.Settings
; AddReg=Reg.Uninstall
; CopyFiles=Inf.Copy
;
; [DefaultUninstall]
; BitReg=Bit.Clear
; DelReg=Reg.Settings
; DelReg=Reg.Uninstall
; DelFiles=Inf.Copy
;
; [Reg.Settings]
;
; [Bit.Setting]
;
; [Bit.Clear]
;
; [Reg.Uninstall]
;
; [Inf.Copy]
; FILENAME
;
; [DestinationDirs]
; Inf.Copy=53,Application Data\Custom
;
; DIRID:
;
; 10 = %SystemRoot%
; 11 = %SystemRoot%\System32
; 17 = %SystemRoot%\Inf
; 53 = %UserProfile%
; 54 = %SystemDrive%
; -1 = Absolute path
;
; [SourceDiskNames]
; 55=%DISKNAME%
;
; [SourceDiskFiles]
; FILENAME=55
;
; [Strings]
; NAME = "Jerry's Name"
; DISKNAME = "Setup Files"
;

[DefaultInstall]
AddReg=Reg.Settings
BitReg=Bit.Settings

[Reg.Settings]
; rootkey, [subkey], [value], [flags], [data]

;-----
;----- Enable ClearType for ALL Users
;----- "FontSmoothing" is a REG_SZ
;----- "FontSmoothingType" is a REG_DWORD
HKCU,Control Panel\Desktop,FontSmoothing,0x00000000,%TWEAKS_VisualEffects_SmoothEdgesOfScreenFontsString%
HKU,.DEFAULT\Control Panel\Desktop,FontSmoothing,0x00000000,%TWEAKS_VisualEffects_SmoothEdgesOfScreenFontsString%
;HKU,CUSTOM\Control Panel\Desktop,FontSmoothing,0x00000000,%TWEAKS_VisualEffects_SmoothEdgesOfScreenFontsString%

HKCU,Control Panel\Desktop,FontSmoothingType,0x00010001,0x%TWEAKS_VisualEffects_FontSmoothingType%
HKU,.DEFAULT\Control Panel\Desktop,FontSmoothingType,0x00010001,0x%TWEAKS_VisualEffects_FontSmoothingType%
;HKU,CUSTOM\Control Panel\Desktop,FontSmoothingType,0x00010001,0x%TWEAKS_VisualEffects_FontSmoothingType%


;-----
;----- Tweaks Visual Effects
;----- VisualFXSetting is REG_DWORD
;----- (0=Let Windows choose what's best for my computer)
;----- (1=Adjust for best appearance)
;----- (2=Adjust for best performance)
;----- (3=Custom)
HKCU,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects,VisualFXSetting,0x00010001,0x%TWEAKS_VisualEffects_VisualFXSetting%
HKU,.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects,VisualFXSetting,0x00010001,0x%TWEAKS_VisualEffects_VisualFXSetting%
;HKU,CUSTOM\Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects,VisualFXSetting,0x00010001,0x%TWEAKS_VisualEffects_VisualFXSetting%

;-----
;----- Visual Effects - Animate Windows when Minimizing and Maximizing (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\AnimateMinMax, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_AnimateWindowsWhenMinimizingAndMaximizing%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\AnimateMinMax, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_AnimateWindowsWhenMinimizingAndMaximizing%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\AnimateMinMax, \
;DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_AnimateWindowsWhenMinimizingAndMaximizing%

HKCU,Control Panel\Desktop\WindowMetrics,\
MinAnimate,0x00000000,%TWEAKS_VisualEffects_AnimateWindowsWhenMinimizingAndMaximizingString%
HKU,.DEFAULT\Control Panel\Desktop\WindowMetrics,\
MinAnimate,0x00000000,%TWEAKS_VisualEffects_AnimateWindowsWhenMinimizingAndMaximizingString%
;HKU,CUSTOM\Control Panel\Desktop\WindowMetrics,\
;MinAnimate,0x00000000,%TWEAKS_VisualEffects_AnimateWindowsWhenMinimizingAndMaximizingString%


;-----
;----- Visual Effects - Fade or slide menus into view (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\MenuAnimation, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_FadeOrSlideMenusIntoView%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\MenuAnimation, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_FadeOrSlideMenusIntoView%

HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\MenuAnimation, \
DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_FadeOrSlideMenusIntoView%

;-----
;----- Visual Effects - Fade or slide tooltips into view (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TooltipAnimation, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_FadeOrSlideTooltipsIntoView%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TooltipAnimation, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_FadeOrSlideTooltipsIntoView%

HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TooltipAnimation, \
DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_FadeOrSlideTooltipsIntoView%


;-----
;----- Visual Effects - Fade out menu items after clicking (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\SelectionFade, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_FadeOutMenuItemsAfterClicking%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\SelectionFade, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_FadeOutMenuItemsAfterClicking%

HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\SelectionFade, \
DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_FadeOutMenuItemsAfterClicking%


;-----
;----- Visual Effects - Show shadows under menus (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DropShadow, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_ShowShadowsUnderMenus%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DropShadow, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_ShowShadowsUnderMenus%

HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DropShadow, \
DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_ShowShadowsUnderMenus%


;-----
;----- Visual Effects - Show shadows under mouse pointer (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\CursorShadow, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_ShowShadowsUnderMousePointer%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\CursorShadow, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_ShowShadowsUnderMousePointer%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\CursorShadow, \
;DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_ShowShadowsUnderMousePointer%


;-----
;----- Visual Effects - Show translucent selection rectangle (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewAlphaSelect, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_ShowTranslucentSelectionRectangle%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewAlphaSelect, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_ShowTranslucentSelectionRectangle%

HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewAlphaSelect, \
DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_ShowTranslucentSelectionRectangle%

HKCU,Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, \
ListViewAlphaSelect,0x00010001,0x%TWEAKS_VisualEffects_ShowTranslucentSelectionRectangle%
HKU,.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, \
ListViewAlphaSelect,0x00010001,0x%TWEAKS_VisualEffects_ShowTranslucentSelectionRectangle%
;HKU,CUSTOM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, \
;ListViewAlphaSelect,0x00010001,0x%TWEAKS_VisualEffects_ShowTranslucentSelectionRectangle%


;-----
;----- Visual Effects - Show windows contents while dragging (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DragFullWindows, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_ShowWindowsContentsWhileDragging%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DragFullWindows, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_ShowWindowsContentsWhileDragging%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DragFullWindows, \
;DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_ShowWindowsContentsWhileDragging%

HKCU,Control Panel\Desktop, \
DragFullWindows,0x00000000,%TWEAKS_VisualEffects_ShowWindowsContentsWhileDraggingString%
HKU,.DEFAULT\Control Panel\Desktop, \
DragFullWindows,0x00000000,%TWEAKS_VisualEffects_ShowWindowsContentsWhileDraggingString%
;HKU,CUSTOM\Control Panel\Desktop, \
;DragFullWindows,0x00000000,%TWEAKS_VisualEffects_ShowWindowsContentsWhileDraggingString%


;-----
;----- Visual Effects - Slide open combo boxes (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ComboBoxAnimation, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_SlideOpenComboBoxes%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ComboBoxAnimation, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_SlideOpenComboBoxes%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ComboBoxAnimation, \
;DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_SlideOpenComboBoxes%


;-----
;----- Visual Effects - Slide taskbar buttons (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TaskbarAnimations, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_SlideTaskbarButtons%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TaskbarAnimations, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_SlideTaskbarButtons%

HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\TaskbarAnimations, \
DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_SlideTaskbarButtons%

HKCU,Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, \
TaskbarAnimations,0x00010001,0x%TWEAKS_VisualEffects_SlideTaskbarButtons%
HKU,.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, \
TaskbarAnimations,0x00010001,0x%TWEAKS_VisualEffects_SlideTaskbarButtons%
;HKU,CUSTOM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, \
;TaskbarAnimations,0x00010001,0x%TWEAKS_VisualEffects_SlideTaskbarButtons%


;-----
;----- Visual Effects - Smooth edges of screen fonts (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\FontSmoothing, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_SmoothEdgesOfScreenFonts%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\FontSmoothing, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_SmoothEdgesOfScreenFonts%

HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\FontSmoothing, \
DefaultByFontTest,0x00010001,0x%TWEAKS_VisualEffects_SmoothEdgesOfScreenFonts%

HKCU,Control Panel\Desktop, \
FontSmoothing,0x00000000,%TWEAKS_VisualEffects_SmoothEdgesOfScreenFontsString%
HKU,.DEFAULT\Control Panel\Desktop, \
FontSmoothing,0x00000000,%TWEAKS_VisualEffects_SmoothEdgesOfScreenFontsString%
;HKU,CUSTOM\Control Panel\Desktop, \
;FontSmoothing,0x00000000,%TWEAKS_VisualEffects_SmoothEdgesOfScreenFontsString%


HKCU,Control Panel\Desktop, \
FontSmoothingType,0x00010001,0x%TWEAKS_VisualEffects_FontSmoothingType%
HKU,.DEFAULT\Control Panel\Desktop, \
FontSmoothingType,0x00010001,0x%TWEAKS_VisualEffects_FontSmoothingType%
;HKU,CUSTOM\Control Panel\Desktop, \
;FontSmoothingType,0x00010001,0x%TWEAKS_VisualEffects_FontSmoothingType%



;-----
;----- Visual Effects - Smooth scroll list boxes (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListBoxSmoothScrolling, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_SmoothScrollListBoxes%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListBoxSmoothScrolling, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_SmoothScrollListBoxes%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListBoxSmoothScrolling, \
;DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_SmoothScrollListBoxes%

;-----
;----- Visual Effects - Use a background image for each folder type (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewWatermark, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_UseABackgroundImageForEachFolderType%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewWatermark, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_UseABackgroundImageForEachFolderType%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewWatermark, \
;DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_UseABackgroundImageForEachFolderType%

HKCU,Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, \
ListViewWaterMark,0x00010001,0x%TWEAKS_VisualEffects_UseABackgroundImageForEachFolderType%
HKU,.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, \
ListViewWaterMark,0x00010001,0x%TWEAKS_VisualEffects_UseABackgroundImageForEachFolderType%
;HKU,CUSTOM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, \
;ListViewWaterMark,0x00010001,0x%TWEAKS_VisualEffects_UseABackgroundImageForEachFolderType%


;-----
;----- Visual Effects - Use common tasks in folders (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\WebView, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_UseCommonTasksInFolders%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\WebView, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_UseCommonTasksInFolders%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\WebView, \
;DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_UseCommonTasksInFolders%

;-----
;----- Windows Exlorer -> 0x0=Classic Folders or 0x1=Show common tasks in folder(default)
;----- "WebView" is a REG_DWORD
;-----
HKCU,Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced,WebView,0x00010001,0x%TWEAKS_VisualEffects_UseCommonTasksInFolders%
HKU,.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced,WebView,0x00010001,0x%TWEAKS_VisualEffects_UseCommonTasksInFolders%
;HKU,CUSTOM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced,WebView,0x00010001,0x%TWEAKS_VisualEffects_UseCommonTasksInFolders%


;-----
;----- Visual Effects - Use drop shadows for icon labels on the desktop (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewShadow, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_UseDropShadowsForIconLabelsOnTheDesktop%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewShadow, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_UseDropShadowsForIconLabelsOnTheDesktop%

HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\ListviewShadow, \
DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_UseDropShadowsForIconLabelsOnTheDesktop%

HKCU,Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, \
ListViewShadow,0x00010001,0x%TWEAKS_VisualEffects_UseDropShadowsForIconLabelsOnTheDesktop%
HKU,.DEFAULT\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, \
ListViewShadow,0x00010001,0x%TWEAKS_VisualEffects_UseDropShadowsForIconLabelsOnTheDesktop%
;HKU,CUSTOM\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced, \
;ListViewShadow,0x00010001,0x%TWEAKS_VisualEffects_UseDropShadowsForIconLabelsOnTheDesktop%


;-----
;----- Visual Effects - Use visual styles on windows and buttons (0=Disable/Unchecked,1=Enable/Checked)
;-----
HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DropShadow, \
DefaultValue,0x00010001,0x%TWEAKS_VisualEffects_UseVisualStylesOnWindowsAndButtons%

;HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DropShadow, \
;DefaultApplied,0x00010001,0x%TWEAKS_VisualEffects_UseVisualStylesOnWindowsAndButtons%

HKLM,Software\Microsoft\Windows\CurrentVersion\Explorer\VisualEffects\DropShadow, \
DefaultByAlphaTest,0x00010001,0x%TWEAKS_VisualEffects_UseVisualStylesOnWindowsAndButtons%


[Bit.Settings]
; rootkey, [subkey], value, [flags], mask, byte

;-----
;----- Windows Exlorer -> 0x0=Classic Folders or 0x1=Show common tasks in folder(default)
;----- ShellState registry value is a REG_BINARY.
;----- The setting is at the bit at byte position 5 (positioning starts from 0) and binary bit mask 00100000 (hex value 0x20)
;-----
HKCU,Software\Microsoft\Windows\CurrentVersion\Explorer,ShellState,0x%TWEAKS_VisualEffects_UseCommonTasksInFolders%,0x20,0x05
;HKU,CUSTOM\Software\Microsoft\Windows\CurrentVersion\Explorer,ShellState,0x%TWEAKS_VisualEffects_UseCommonTasksInFolders%,0x20,0x05


;----- Visual Effects - Fade or slide menus into view (0=Disable/Unchecked,1=Enable/Checked)
HKCU,Control Panel\Desktop,UserPreferencesMask, \
0x%TWEAKS_VisualEffects_FadeOrSlideMenusIntoView%, \
%Bit_FadeOrSlideMenusIntoView%, \
%Byte_FadeOrSlideMenusIntoView%

;HKU,CUSTOM\Control Panel\Desktop,UserPreferencesMask, \
;0x%TWEAKS_VisualEffects_FadeOrSlideMenusIntoView%, \
;%Bit_FadeOrSlideMenusIntoView%, \
;%Btye_FadeOrSlideMenusIntoView%

HKCU,Control Panel\Desktop,UserPreferencesMask, \
0x%TWEAKS_VisualEffects_FadeOrSlideMenusIntoViewEffect%, \
%Bit_MenuFadeOrSlideMenusIntoViewEffect%, \
%Byte_MenuFadeOrSlideMenusIntoViewEffect%

;----- Visual Effects - Fade or slide tooltips into view (0=Disable/Unchecked,1=Enable/Checked)
HKCU,Control Panel\Desktop,UserPreferencesMask, \
0x%TWEAKS_VisualEffects_FadeOrSlideTooltipsIntoView%, \
%Bit_ToolTipAnimation%, \
%Byte_ToolTipAnimation%

;HKU,CUSTOM\Control Panel\Desktop,UserPreferencesMask, \
;0x%TWEAKS_VisualEffects_FadeOrSlideTooltipsIntoView%, \
;%Bit_ToolTipAnimation%, \
;%Byte_ToolTipAnimation%

HKCU,Control Panel\Desktop,UserPreferencesMask, \
0x%TWEAKS_VisualEffects_FadeOrSlideTooltipsIntoViewEffect%, \
%Bit_ToolTipAnimationEffect%, \
%Byte_ToolTipAnimationEffect%

;----- Visual Effects - Fade out menu items after clicking (0=Disable/Unchecked,1=Enable/Checked)
HKCU,Control Panel\Desktop,UserPreferencesMask, \
0x%TWEAKS_VisualEffects_FadeOutMenuItemsAfterClicking%, \
%Bit_FadeOutMenuItemsAfterClicking%, \
%Byte_FadeOutMenuItemsAfterClicking%

;HKU,CUSTOM\Control Panel\Desktop,UserPreferencesMask, \
;0x%TWEAKS_VisualEffects_FadeOutMenuItemsAfterClicking%, \
;%Bit_FadeOutMenuItemsAfterClicking%, \
;%Byte_FadeOutMenuItemsAfterClicking%

;----- Visual Effects - Hide underlined letters for keyboard navigation until I press the Alt key : 1=unchecked/disabled(default), 0=checked/enabled
;----- Keyboard cues
HKCU,Control Panel\Desktop,UserPreferencesMask, \
0x%TWEAKS_VisualEffects_HideUnderlinedLettersForKeyboardNavigation%, \
%Bit_KeyboardCues%, \
%Byte_KeyboardCues%

;HKU,CUSTOM\Control Panel\Desktop,UserPreferencesMask, \
;0x%TWEAKS_VisualEffects_HideUnderlinedLettersForKeyboardNavigation%, \
;%Bit_KeyboardCues%, \
;%Byte_KeyboardCues%


;----- Visual Effects - Show shadows under menus (0=Disable/Unchecked,1=Enable/Checked)
HKCU,Control Panel\Desktop,UserPreferencesMask, \
0x%TWEAKS_VisualEffects_ShowShadowsUnderMenus%, \
%Bit_ShowShadowsUnderMenus%, \
%Byte_ShowShadowsUnderMenus%

;HKU,CUSTOM\Control Panel\Desktop,UserPreferencesMask, \
;0x%TWEAKS_VisualEffects_ShowShadowsUnderMenus%, \
;%Bit_ShowShadowsUnderMenus%, \
;%Byte_ShowShadowsUnderMenus%

;----- Visual Effects - Show shadows under mouse pointer (0=Disable/Unchecked,1=Enable/Checked)
HKCU,Control Panel\Desktop,UserPreferencesMask, \
0x%TWEAKS_VisualEffects_ShowShadowsUnderMousePointer%, \
%Bit_ShowShadowsUnderMousePointer%, \
%Byte_ShowShadowsUnderMousePointer%

;HKU,CUSTOM\Control Panel\Desktop,UserPreferencesMask, \
;0x%TWEAKS_VisualEffects_ShowShadowsUnderMousePointer%, \
;%Bit_ShowShadowsUnderMousePointer%, \
;%Byte_ShowShadowsUnderMousePointer%


;----- Visual Effects - Slide open combo boxes (0=Disable/Unchecked,1=Enable/Checked)
HKCU,Control Panel\Desktop,UserPreferencesMask, \
0x%TWEAKS_VisualEffects_SlideOpenComboBoxes%, \
%Bit_SlideOpenComboBoxes%, \
%Byte_SlideOpenComboBoxes%

;HKU,CUSTOM\Control Panel\Desktop,UserPreferencesMask, \
;0x%TWEAKS_VisualEffects_SlideOpenComboBoxes%, \
;%Bit_SlideOpenComboBoxes%, \
;%Byte_SlideOpenComboBoxes%

;----- Visual Effects - Smooth scroll list boxes (0=Disable/Unchecked,1=Enable/Checked)
HKCU,Control Panel\Desktop,UserPreferencesMask, \
0x%TWEAKS_VisualEffects_SmoothScrollListBoxes%, \
%Bit_SmoothScrollListBoxes%, \
%Byte_SmoothScrollListBoxes%

;HKU,CUSTOM\Control Panel\Desktop,UserPreferencesMask, \
;0x%TWEAKS_VisualEffects_SmoothScrollListBoxes%, \
;%Bit_SmoothScrollListBoxes%, \
;%Byte_SmoothScrollListBoxes%

;----- Visual Effects - Use visual styles on windows and buttons (0=Disable/Unchecked,1=Enable/Checked)
HKCU,Control Panel\Desktop,UserPreferencesMask, \
0x%TWEAKS_VisualEffects_UseVisualStylesOnWindowsAndButtons%, \
%Bit_UseVisualStylesOnWindowsAndButtons%, \
%Byte_UseVisualStylesOnWindowsAndButtons%

;HKU,CUSTOM\Control Panel\Desktop,UserPreferencesMask, \
;0x%TWEAKS_VisualEffects_UseVisualStylesOnWindowsAndButtons%, \
;%Bit_UseVisualStylesOnWindowsAndButtons%, \
;%Byte_UseVisualStylesOnWindowsAndButtons%


[Strings]
;---- bit 0 : Active window tracking : 0=disable(default), 1 for enabled
Byte_ActiveWindowsTracking ="0x00"
Bit_ActiveWindowTracking ="0x01"

;---- bit 1 : Menu animation : Fade or slide menu items into view : 0=disable,1=enable(default), menu effects depend on bit 9
Byte_FadeOrSlideMenusIntoView ="0x00"
Bit_FadeOrSlideMenusIntoView ="0x02"

;---- bit 2 : Combo box animation : Slide open effect for combo boxes : 0=disable,1=enable(default)
Byte_SlideOpenComboBoxes ="0x00"
Bit_SlideOpenComboBoxes ="0x04"

;---- bit 3 : List box smooth scrolling : Smooth-scroll list boxes : 0=disable,1=enable(default)
Byte_SmoothScrollListBoxes ="0x00"
Bit_SmoothScrollListBoxes ="0x08"

;---- bit 4 : Gradient captions : Gradient effect for window title bars : 0=disable,1=enable(default)
Byte_GradientCaptions ="0x00"
Bit_GradientCaptions ="0x10"

;---- bit 5 : Keyboard cues : Menu access key letters underlined when u press ALT : 0=enable/checked(default), 1=disable/unchecked
Byte_KeyboardCues ="0x00"
Bit_KeyboardCues ="0x20"

;---- bit 6 : Active window tracking Z order : Windows activated through active window tracking are not brought to the top : 0=enable(default),1=disable
Byte_ActiveWindowTrackingZorder ="0x00"
Bit_ActiveWindowTrackingZorder ="0x40"

;---- bit 7 : Hot tracking : 0=disable,1=enable(default)
Byte_HotTracking ="0x00"
Bit_HotTracking ="0x80"

;---- bit 8 : Reserved for future use
;---- bit 9 : Menu fade : Menu animation effect : 0=disable/scroll effect,1=enable/fade effect(default)
;---- If menu fade animation is disabled, menus use slide animation. This bit is ignored if menu animation bit 1 is disabled
Byte_MenuFadeOrSlideMenusIntoViewEffect ="0x01"
Bit_MenuFadeOrSlideMenusIntoViewEffect ="0x02"

;---- bit 10 : Selection fade : Menu animation effect : 0=disable,1=enable(default)
;---- The selected menu will remain on the screen briefly and then fade out after the makes a selection
Byte_FadeOutMenuItemsAfterClicking ="0x01"
Bit_FadeOutMenuItemsAfterClicking ="0x04"

;---- bit 11 : Tool tip animation : Fade or slide ToolTips into view : 0=disable,1=enable(default)
;---- The tool tip effect depends on Tool tip fade bit 12
Byte_ToolTipAnimation ="0x01"
Bit_ToolTipAnimation ="0x08"

;---- bit 12 : Tool tip fade effect : Tool tip animation effect : 0=disable/scroll effect,1=enable/fade effect(default), but ignore if bit 11 is 0
;---- If Tool tip animation bit 11 is disabled, this bit is ignored
;---- If Tool tip animation bit 11 is enabled and tool tip fade is enabled, tool tips use slide animation
Byte_ToolTipAnimationEffect ="0x01"
Bit_ToolTipAnimationEffect ="0x10"

;---- bit 13 : Cursor shadow : Show shadows under mouse pointer : 0=disable,1=enable(default)
;---- This effect only appears if the system has a color depth of more than 256 colors.
Byte_ShowShadowsUnderMousePointer ="0x01"
Bit_ShowShadowsUnderMousePointer ="0x20"

;---- bit 17 : Use visual styles on windows and buttons : 1 for yes, 0 for no
Byte_UseVisualStylesOnWindowsAndButtons ="0x02"
Bit_UseVisualStylesOnWindowsAndButtons ="0x02"

;---- bit 18 : Show shadows under menus : 1 for yes, 0 for no
Byte_ShowShadowsUnderMenus ="0x02"
Bit_ShowShadowsUnderMenus ="0x04"

;---- bit 31 : All UI effects : 0=disable,1=enable(default)
;---- All UI effects (combo box animation, cursor shadow, gradient captions, hot tracking, list box scrolling,
;---- menu animination, menu underlines, selection fade, tool tip animation) are enabled.
Byte_AllUIEffects ="0x03"
Bit_AllUIEffects ="0x80"

;---- and bit 14,15,16,19 - 30 ? those bits are reserved for future use. and some of them are in use on WindowsXP
;---- bit 14,15,16 control mouse behaviour

;---- The following strings are only used for set the visual effects
TWEAKS_VisualEffects_VisualFXSetting=3
TWEAKS_VisualEffects_AnimateWindowsWhenMinimizingAndMaximizing=0
TWEAKS_VisualEffects_AnimateWindowsWhenMinimizingAndMaximizingString="0"
TWEAKS_VisualEffects_FadeOrSlideMenusIntoView=0
TWEAKS_VisualEffects_FadeOrSlideMenusIntoViewEffect=1
TWEAKS_VisualEffects_FadeOrSlideTooltipsIntoView=0
TWEAKS_VisualEffects_FadeOutMenuItemsAfterClicking=0
TWEAKS_VisualEffects_HideUnderlinedLettersForKeyboardNavigation=1
TWEAKS_VisualEffects_ShowShadowsUnderMenus=1
TWEAKS_VisualEffects_ShowShadowsUnderMousePointer=1
TWEAKS_VisualEffects_ShowTranslucentSelectionRectangle=1
TWEAKS_VisualEffects_ShowWindowsContentsWhileDragging=1
TWEAKS_VisualEffects_ShowWindowsContentsWhileDraggingString="1"
TWEAKS_VisualEffects_SlideOpenComboBoxes=0
TWEAKS_VisualEffects_SlideTaskbarButtons=0
TWEAKS_VisualEffects_SmoothEdgesOfScreenFonts=2
TWEAKS_VisualEffects_SmoothEdgesOfScreenFontsString="2"
TWEAKS_VisualEffects_FontSmoothingType=1
TWEAKS_VisualEffects_SmoothScrollListBoxes=1
TWEAKS_VisualEffects_UseABackgroundImageForEachFolderType=1
TWEAKS_VisualEffects_UseCommonTasksInFolders=1
TWEAKS_VisualEffects_UseDropShadowsForIconLabelsOnTheDesktop=1
TWEAKS_VisualEffects_UseVisualStylesOnWindowsAndButtons=1

Link to comment
Share on other sites

  • 3 years later...

I tried to install, but is showed to me a box, fail to install. How I resolve this? Will be more interesting to me have a menu or other way to change the sattings, but I can't get to install.

Thanks.

Link to comment
Share on other sites

I tried to install, but is showed to me a box, fail to install. How I resolve this? Will be more interesting to me have a menu or other way to change the sattings, but I can't get to install.

Well, no works. Always gives fail.

Thanks

Link to comment
Share on other sites

  • 1 year later...
  • 5 months later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...