Jump to content

zookeeper

Member
  • Posts

    7
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    United States

About zookeeper

Recent Profile Visitors

752 profile views

zookeeper's Achievements

0

Reputation

  1. 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
  2. I just tested the v5.04.4 release, which eliminated the 0,1,2 etc naming. The new version is working perfectly Thanks.
  3. In version 5.04.4, the following errors exist in slipstream_DPM.cmd for SiS RAID Controllers ... Current v5.04.4 Line 621 to line 624 REM SIS %T1% "PCI\VEN_1039&DEV_0180~x20" "~x20~qsisraid~q" %T1% "PCI\VEN_1039&DEV_0181~x20" "~x20~qsisraid1~q" %T1% "PCI\VEN_1039&DEV_0182~x20" "~x20~qsisraid1~q" ... Current v5.04.4 Line 714 to line 717 REM SIS %T1% "sisraid~x20" "~x20sisraid.sys,4" %T1% "sisraid1~x20" "~x20sisraid1.sys,4" %T1% "sisraid1~x20" "~x20SISRAID2.SYS,4" ... Current v5.04.4 Line 804 to line 807 REM SIS %T1% "sraid180~x20" "~x20~qSiS 180 RAID Controller~q" %T1% "sraid181~x20" "~x20~qSiS 181 RAID Controller~q" %T1% "sraid182~x20" "~x20~qSiS 182 RAID Controller~q" The correct lines should be as follows: ... Changed Line 621 to line 624 REM SIS %T1% "PCI\VEN_1039&DEV_0180~x20" "~x20~qsisraid~q" %T1% "PCI\VEN_1039&DEV_0181~x20" "~x20~qsisraid1~q" %T1% "PCI\VEN_1039&DEV_0182~x20" "~x20~qsisraid2~q" <- changed ... Changed Line 714 to line 717 REM SIS %T1% "sisraid~x20" "~x20sisraid.sys,4" %T1% "sisraid1~x20" "~x20sisraid1.sys,4" %T1% "sisraid2~x20" "~x20SISRAID2.SYS,4" <- changed ... Changed Line 804 to line 807 REM SIS %T1% "sisraid~x20" "~x20~qSiS 180 RAID Controller~q" <- changed %T1% "sisraid1~x20" "~x20~qSiS 181 RAID Controller~q" <- changed %T1% "sisraid2~x20" "~x20~qSiS 182 RAID Controller~q" <- changed
  4. eikman2k@ I only found one error. Thus, you only need to change just the one line at 1316.
  5. DP Base 5.04 Line 1316 of slipstream_DP.cmd currently contains the following: %T1% "sii3114r~x20" "~x20~qSilicon Image SiI 3114 SoftRaid 5 Controller~q" Line 1316 should contain the following (Just add the 5 after sii3114r): %T1% "sii3114r5~x20" "~x20~qSilicon Image SiI 3114 SoftRaid 5 Controller~q"
  6. @bts: I did not intend on changing the driver it belongs to (I don't think I did). According to the HardwareIds in fasttx2k.inf file, PCI\VEN_105A&DEV_3376 and PCI\VEN105A&DEV_3373 load the fasttx2k.sys driver. In [HardwareIdsDatabase], I mapped each of the HardwareIds to "fasttx2k" In [sCSI.Load], I set fasttx2k= fasttx2k.sys, 4 In [sCSI], I set fasttx2k= "Promise FastTrak 37x/S150 TX4000 Series Controllers" To get things working properly, I had to map multiple HardwareIds to the same "fasttx2k" value and use one mapping in the [sCSI.Load] section. It appears as if the creating a unique value for each HardwareId (i.e. xxx-0, xxx-1, xxx-2) AND mapping multiple values to one [sCSI.Load] was causing a problem (i.e. xxx-0=xxx.sys,4). I made the other 32 changes to prevent potential problems with other mass storage controllers that were using the xxx-0, xxx-1, xxx-2 approach. The DriverPacks are awesome! I want to help insure that it works on ALL systems. The hardware ids from fasttx2k.inf are as follows: ; FASTTX2K.INF ; Copyright 2002 Promise Technology, Inc. [Version] CatalogFile=Fasttx2k.cat Signature="$CHICAGO$" Class=SCSIAdapter ClassGUID={4D36E97B-E325-11CE-BFC1-08002BE10318} Provider=%PROMISE% DriverVer=08/06/2003, 1.00.0.37 [DestinationDirs] DefaultDestDir = 12; DIRID_DRIVERS MoveMiniPort.NT = 12; CacheDll.NT = 11; [ControlFlags] [Manufacturer] %Promise%=Promise [Promise] %PCI\VEN_105A&DEV_6629.DeviceDesc% = FasttrakPCI_TX4000, PCI\VEN_105A&DEV_6629 %PCI\VEN_105A&DEV_3371.DeviceDesc% = FasttrakPCI_TX4000, PCI\VEN_105A&DEV_3371 %PCI\VEN_105A&DEV_3319.DeviceDesc% = FasttrakPCI_TX4000, PCI\VEN_105A&DEV_3319 %PCI\VEN_105A&DEV_3376.DeviceDesc% = FasttrakPCI_TX4000, PCI\VEN_105A&DEV_3376 %PCI\VEN_105A&DEV_3373.DeviceDesc% = FasttrakPCI_TX4000, PCI\VEN_105A&DEV_3373 %Promise_Raid_ControllerDesc%=NODRV,SCSI\ProcessorPromise_RAID_Console____ [NODRV] AddReg=NODRV_AddReg ; [NODRV.Services] ; ; this is blank to just allow the install to succeed ; AddService = , %SPSVCINST_ASSOCSERVICE% ; null service install [FasttrakPCI_TX4000.NT] CopyFiles=MoveMiniPort.NT,CacheDll.NT [FasttrakPCI_TX4000.NT.Services] AddService = fasttx2k, 2, FasttrakPCI_Service_Inst, Miniport_EventLog_Inst [FasttrakPCI_Service_Inst] ServiceType = 1 ; SERVICE_KERNEL_DRIVER StartType = 0 ; SERVICE_BOOT_START ErrorControl = 1 ; SERVICE_ERROR_NORMAL ServiceBinary = %12%\fasttx2k.sys
  7. I encountered the same type of problem with the Promise FastTrak 378 RAID Controller (Motherboard Asus P4C800-E Deluxe). In order to get things to work, I modified the slipstream_DPM.cmd file to apply "shared values" within [sourceDisksFiles], [sCSO.Load] and [sCSI] sections of the txtsetup.sif file. My definition of "shared values" means that if multiple device ids use the same underlying .sys driver file (i.e. fasttx2k.sys), only one value is created and shared across multiple device ids. The ONE shared value will result in only one entry in the [sCSI.Load] section and only one string to describe the driver, which is located in the [sCSI] section. Basically, it is the same approach that you used. But I decided to modify the source of the slipstream.cmd file so that I can reuse it. The changes to slipstream.cmd are numerous: 32 changes in each section [sourceDisksFiles], [sCSO.Load] and [sCSI]. Instead of pasting the changes, I will attach the modified slipstream.cmd file. Modified_slipstream_DPM.cmd
×
×
  • Create New...