"Run Regedit and go to:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\VxD\BIOS
In the right hand pane create a new
DWORD Value called "CPUPriority" (no quotes) -> double-click on it -> check the Decimal box -> type 1 -> click
OK to save.
This will speed things up by using the fastest priority to the CPU when opening any program, and works on 99%
of the PCs I've tried it on.
To reset to Windows 9x/ME default type 3 or delete this Value altogether.
To see
your system's real time performance type 0 (NOT recommended by Microsoft!).
In some cases this Registry BIOS key is
absent, because enabling the BIOS power management feature (APM) and the Win9x/ME ACPI BIOS extentions may disable
it!
Make sure there is a Plug and Play BIOS item listed in Control Panel -> System -> Device Manager -> System
devices.
Here are other DWORD Values (Decimal) you can use to tweak your CPU Priority even further (under the same Registry key above):
These settings speed up hardware specific operations by allowing installed devices to use extra CPU cycles: PCI, AGP and/or DRAM based I/O transfers from the motherboard interface/bus/bridge (PCI, AGP, DRAM) [-> to the motherboard chipset/bus/bridge where applicable] -> to the CPU, and the other way around."
MEANING:
"CPUPriority" DWORD valid Decimal values:
"This
Registry hack might fix your CPU Priority if you don't have a PnP BIOS.
Recently I got a new motherboard and CPU: a P3 1
GHz with 512 MB RAM and an AX34 Pro II black PCB mobo.
When I loaded Windows I noticed I now have ACPI BIOS, and I found
out that this new Registry setting overrides the first one (see "CPUPriority" above), increasing CPU priority by 50 to
100%.
Run Regedit and go to:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\PriorityControl
or create it if not present:
right-click on an empty spot -> select New -> Key -> paste "PriorityControl" (no quotes) into the type-in box -> click
OK to save.
Now highlight this key, and in the right hand pane create a new DWORD [REG_DWORD] Value called
"Win32PrioritySeparation" (no quotes) -> double-click on it -> check the Decimal box -> type 1 -> click OK to
save.
When this baby is set to 1, the foreground (active) application has more CPU power than the background
(inactive) apps (if any), and if you set the value to 2, you get even more power to the foreground app:
The maximum value allowed is
26 (Hex) or 38 (Decimal).
Play around with these values till you find your own "sweet
spot".
BEWARE: Higher settings will drag down system resources considerably, especially when doing something big,
like saving a huge Photoshop file, but hey, it saved it pretty darn quick. :)"
More info:
UPDATES:
-----Begin cut & paste here-----
REGEDIT4
[HKEY_CLASSES_ROOT\Interface\{79eac9c2-baf9-11ce-8c82-00aa004ba90b}\ProxyStubClsid32]
@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
[HKEY_CLASSES_ROOT\Interface\{79eac9c3-baf9-11ce-8c82-00aa004ba90b}\ProxyStubClsid32]
@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
[HKEY_CLASSES_ROOT\Interface\{79eac9c4-baf9-11ce-8c82-00aa004ba90b}]
@="IHlinkTarget"
[HKEY_CLASSES_ROOT\Interface\{79eac9c4-baf9-11ce-8c82-00aa004ba90b}\ProxyStubClsid32]
@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
[HKEY_CLASSES_ROOT\Interface\{79eac9c5-baf9-11ce-8c82-00aa004ba90b}\ProxyStubClsid32]
@="{B8DA6310-E19B-11D0-933C-00A0C90DCAA9}"
[HKEY_CLASSES_ROOT\Interface\{7BF80981-BF32-101A-8BBB-00AA00300CAB}]
@="Picture"
[HKEY_CLASSES_ROOT\Interface\{7BF80981-BF32-101A-8BBB-00AA00300CAB}\ProxyStubClsid32]
@="{00020420-0000-0000-C000-000000000046}"
------End cut & paste here------When done, close ALL IE instances, and
(double)-click on OPENNEW.REG in Windows Explorer or File Manager (FM = %windir%\WINFILE.EXE), to merge this
information into your Registry.
Now (re)start IE and test the "new" right-click function. :)
"All Microsoft Windows 95/98 installation packages using WININIT.EXE have a BUG which occurs during the uninstall procedure: these uninstallers do NOT remove directories (folders). This happens because they add this line to WININIT.INI (example):
[rename]
NUL=C:\WINDOWS\TEMP\~SETUP
instead of (CORRECT entry!):
[rename]
DIRNUL=C:\WINDOWS\TEMP\~SETUP
NUL can be used ONLY for deleting files, NOT
folders.
WARNING: This deletes the respective folder together with all its files and
subfolders!
WININIT.INI is created and used by installers with the help of the built-in Win9x/ME WININIT.EXE
tool, to add/replace/move/rename/delete system files that do not allow these operations while being used by the OS.
After
the install process is completed (which in most cases require restarting Windows), WININIT.INI is renamed to
WININIT.BAK.
All 3 WININIT.* files reside in the main Windows folder.
You can see this BUG in "action" by
opening WININIT.BAK with Notepad (after installation is over), and then checking if the listed directories are still
present. Then you can manually remove them."
FYI: More info on how to use WININIT.EXE + WININIT.INI @ MSKB.
"I found a way to delete Registry values using .INF files.
For
example UNDOIT.INF:
-----Begin cut & paste
here-----
[Version]
Signature=$CHICAGO$
[DefaultInstall]
DelReg=Del.Reg
[Del.Reg]
HKLM,%Location%,CPUPriority,,
[Strings]
Location="System\CurrentControlSet\Services\VxD\BIOS"
[SourceDisksNames]
1=,,0
------End cut & paste here------
removes the CPUPriority entry from this Registry key:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\VxD\BIOS
You can run an .INF file by right-clicking on it and selecting "Install" from within Windows Explorer, or by using this command line:
RUNDLL SETUPX.DLL,InstallHinfSection DefaultInstall 132 C:\UNDOIT.INF
or this one:
RUNDLL32 SETUPAPI.DLL,InstallHinfSection DefaultInstall 132 C:\UNDOIT.INF
or this one:
RUNDLL32 ADVPACK.DLL,LaunchINFSection C:\UNDOIT.INF,DefaultInstall
Note that the FULL path is needed to locate the .INF file!"
WARNING: This REG tweak works ONLY with Windows 98/98 SP1/98 SE(U)/ME, NOT with Windows 95/95a OSR1/95B OSR 2.0/95B OSR 2.1/95C OSR 2.5!
"Windows Display Properties won't let you change the colors of all Desktop elements. However, you can easily customize the appearance of ALL Windows 9x Desktop elements from Regedit, under this Registry key:
HKEY_CURRENT_USER\Control Panel\Colors
Here all elements are represented by a String value and corresponding RGB color codes. Simply use the Color option in Display Properties -> Appearance to find the RGB value of a given color. When you're done you can save your new customized color scheme from within Display Properties. If you want to export a scheme, you'll find it in the Registry as a Binary value under this key:
HKEY_CURRENT_USER\Control Panel\Appearance\Schemes
Highlight
the Binary scheme name you want, and export it as a REG file.
As always, BACKUP your Registry BEFORE changing
anything!
Below is one of my own customized color schemes - Windows 2000 - as example:
-----Begin cut & paste here----- REGEDIT4 [HKEY_CURRENT_USER\Control Panel\Appearance\Schemes] "Windows 2000"=hex:04,00,00,00,77,2f,2c,c3,01,00,00,00,10,00,00,00,10,00,00,00,\ 12,00,00,00,12,00,00,00,f5,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,bc,\ 02,00,00,00,00,00,00,00,00,00,00,4d,53,20,53,61,6e,73,20,53,65,72,69,66,00,\ 00,00,28,2f,00,00,1f,04,5f,01,bf,00,00,00,00,58,9e,b7,0f,00,00,00,0f,00,00,\ 00,fb,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,00,00,00,00,00,\ 00,00,00,00,4d,53,20,53,61,6e,73,20,53,65,72,69,66,00,00,00,28,2f,00,00,1f,\ 04,5f,01,bf,00,00,00,00,58,9e,b7,12,00,00,00,12,00,00,00,f5,ff,ff,ff,00,00,\ 00,00,00,00,00,00,00,00,00,00,90,01,00,00,00,00,00,00,00,00,00,00,4d,53,20,\ 53,61,6e,73,20,53,65,72,69,66,00,00,00,28,2f,00,00,1f,04,5f,01,bf,00,00,00,\ 00,58,9e,b7,f5,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,00,00,\ 00,00,00,00,00,00,00,4d,53,20,53,61,6e,73,20,53,65,72,69,66,00,00,00,28,2f,\ 00,00,1f,04,5f,01,bf,00,00,00,00,58,9e,b7,f5,ff,ff,ff,00,00,00,00,00,00,00,\ 00,00,00,00,00,90,01,00,00,00,00,00,00,00,00,00,00,4d,53,20,53,61,6e,73,20,\ 53,65,72,69,66,00,00,00,28,2f,00,00,1f,04,5f,01,bf,00,00,00,00,58,9e,b7,f8,\ ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,90,01,00,00,00,00,00,00,00,00,\ 00,00,4d,53,20,53,61,6e,73,20,53,65,72,69,66,00,63,00,6f,01,14,88,d7,2d,00,\ 00,00,10,04,00,d7,2d,00,00,d4,d0,c8,00,3a,6e,a5,00,0a,24,6a,00,80,80,80,00,\ d4,d0,c8,00,ff,ff,ff,00,00,00,00,00,00,00,00,00,00,00,00,00,ff,ff,ff,00,d4,\ d0,c8,00,c0,c0,c0,00,80,80,80,00,00,00,80,00,ff,ff,ff,00,d4,d0,c8,00,80,80,\ 80,00,80,80,80,00,00,00,00,00,c0,c0,c0,00,ff,ff,ff,00,00,00,00,00,d4,d0,c8,\ 00,00,00,00,00,ff,ff,e1,00,d4,d0,c8,00,00,00,ff,00,a6,ca,f0,00,c0,c0,c0,00 ------End cut & paste here------"
NOTE: The blank (empty) line at the end of the REG file is necessary for proper operation!
ATTRIB
-H -R -S C:\MSDOS.SYS
COPY C:\MSDOS.SYS C:\WINBOOT.INI
ATTRIB +H +R +S C:\MSDOS.SYS
Now reboot.
Once
WINBOOT.INI is created you can even delete MSDOS.SYS, but BACK IT UP FIRST!
Better, use SYS95.BAT [part of W95-11D.EXE], which takes care of all necessary MSDOS.SYS and WINBOOT.INI editing chores with a simple mouse (double)-click [:)]: opens MSDOS.SYS with Notepad in Windows (you only need to make desired changes), and then copies MSDOS.SYS as WINBOOT.INI, in order to maintain all boot settings "synchronized" in both these files. SYS95.BAT can do the same from native/real/true/pure MS-DOS mode, using EDIT.COM for editing.
Thus the mere presence of WINBOOT.INI in C:\ root can "shave off" 1-2 seconds from your bootup sequence.
:)
WINBOOT.INI, unlike the other Win9x/ME system files from the root folder of the boot drive/partition, is not renamed if
you also dual-boot using your old MS-DOS 6.xx (using the "Previous version of MS-DOS" option from the Windows 95/98 Startup Menu), because it does NOT have a correspondent into the MS-DOS 6.xx system files.
Also,
certain 3rd party programs may "choke" [and eventually issue error messages :(] if MSDOS.SYS is NOT found in C:\ root. That's
why you need to keep MSDOS.SYS, even if also using WINBOOT.INI.
And from now on, if you want to tweak the Win9x/ME bootup
process, you can edit WINBOOT.INI in the same manner you would MSDOS.SYS.
See "COMPLETE MSDOS.SYS
REFERENCE", also in MYTIPS95.TXT [part of W95-11D.EXE], for details.
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Winlogon
Right-click
in the right hand pane -> select New -> String -> call it "LegalNoticeCaption" -> click OK. Right-click again -> New
-> String -> create another value called "LegalNoticeText" -> click OK. Just don't type the quotes. Then double-click
on "LegalNoticeCaption" -> type in the title you wish for your logon box -> click OK. Double-click on "LegalNoticeText" ->
type in the text that will appear in the logon dialog box -> click OK.
From now on, the next time someone boots into
Windows, a new dialog box with a (legal) warning message will show up before anyone can logon into your computer. The user
will be required to enter the correct login password to proceed, if system access is password protected.
REGEDIT /D [regkeyname]
to manually delete a Registry
key/subkey/value.
All you need is create a plain text/ASCII registration file with the .REG extension (file name doesn't
matter):
-----Begin cut & paste here----- [-HKEY_KEY_NAME\SubKeyName0\SubKeyName1\SubKeyName2\etc...]
REGEDIT4
------End cut & paste here------
Then open the saved REG file in Notepad and add a minus (-) mark in front of the respective key name (right after the left square parenthesis) you want erased from your Registry (example):
-----Begin cut & paste
here----- [-HKEY_LOCAL_MACHINE\Config\0000\Display\Settings]
REGEDIT4
------End cut & paste here------
-----Begin cut & paste here----- [HKEY_KEY_NAME\SubKeyName0\SubKeyName1\SubKeyName2\etc...]
REGEDIT4
"ValueName"=
------End cut & paste here------
Then open the saved REG file in Notepad and add a minus (-) mark after the respective value name [right after the equal (=) sign] you want erased from your Registry (example):
-----Begin cut & paste here----- [HKEY_LOCAL_MACHINE\Config\0000\Display\Settings]
REGEDIT4
"DesktopPos"=
------End cut & paste here------
Finally run (merge) this REG file from Windows Explorer or File Manager (FM = %windir%\WINFILE.EXE) to delete the "marked" (sub)key/value.
CAUTION:
-----Begin cut & paste here----- REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\FS Templates] @="Max Cache" [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\FS Templates\Super Cache] @="Super Cache" "NameCache"=hex:00,ff,00,00 "PathCache"=hex:ff,00,00,00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\FS Templates\Max Cache] @="Max Cache" "NameCache"=hex:00,18,00,00 "PathCache"=hex:c8,00,00,00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\FS Templates\Huge Cache] @="Huge Cache" "NameCache"=hex:80,13,00,00 "PathCache"=hex:90,00,00,00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\FS Templates\Large Cache] @="Large Cache" "NameCache"=hex:a0,0f,00,00 "PathCache"=hex:80,00,00,00 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\FS Templates\Medium Cache] @="Medium Cache" "NameCache"=hex:20,0f,00,00 "PathCache"=hex:50,00,00,00 [HKEY_LOCAL_MACHINE\System\CurrentControlSet\control\FileSystem] "NameCache"=hex:00,18,00,00 "PathCache"=hex:c8,00,00,00 ------End cut & paste here------
CREDITS:
Now all you have to do is
(double)-click on MAXCACHE.REG in Windows Explorer or
File Manager (FM = %windir%\WINFILE.EXE) to merge this information into your Registry, and then restart Windows so the
changes can take effect.
From now on you can select among 5 (FIVE) new options ("Max Cache" setting is used
here), besides the 3 "classic" Win9x/ME choices: "Network Server", "Desktop Computer" and "Mobile or Docking System", when
you decide the "Typical role of this computer", as explained at the top of this article: [... life in the
fast lane, baby! :)]
REG File Above "NameCache" "PathCache" Memory (RAM) Used ------------------------------------------------------------------------- NEW Setting Cached Files Cached Directories KiloBytes [KB] ------------------------------------------------------------------------- Super Cache 65280 255 2170 KB (2.1 MB) Max Cache 6144 200 150 KB Huge Cache 4992 144 108 KB Large Cache 4000 128 80 KB Medium Cache 3872 80 64 KB
MEANING ["Max Cache" used as example]:
this allocates about 150 KB of RAM to cache the last 200 accessed directory paths and the last 6144 accessed
files.
Compare to: [... join the slow moving crowd! :)]
Default "NameCache" "PathCache" Memory (RAM) Used ------------------------------------------------------------------------- OLD Setting Cached Files Cached Directories KiloBytes [KB] ------------------------------------------------------------------------- Network Server 2729 64 40 KB Desktop Computer 677 32 16 KB Mobile/Docking 160 16 4 KB
Experiment with each setting, see which one
suits your purpose better, depending on what you use your machine for: business, graphics rendering, CAD, animation/video
editing, software development, desktop publishing, 3D gaming, Internet, CD burning etc.
Just remember to restart Windows
after each change. :)
FYI:
REGEDIT.EXE /S "%1"
in the "Application used to perform action" box (quotes must be included, all characters are case
insensitive) -> click OK or press Enter 3 times.
Change the Windows folder name if different on your computer.
Note
that you only need to add the /S parameter to the command line, and you can skip the path altogether, because
Regedit.exe resides in the Windows folder, therefore in the system path.
HKEY_CLASSES_ROOT\regfile\shell\open\command
Double-click on the "(Default)" String in the right hand pane -> type the same REGEDIT.EXE command line above -> click OK -> close Regedit.
WARNING: From now on when you (double)-click on a REG file in Windows Explorer or File Manager (FM = %windir%\WINFILE.EXE), the information it contains will be merged (registered) directly into your Registry WITHOUT ANY CONFIRMATION!
TIP: If you ever need to disable the merging of Registration (REG) files into your Registry altogether, especially useful in multiuser environments as a security measure, open Regedit and go to:
HKEY_CLASSES_ROOT\regfile\shell\open\command
There double-click on the "(Default)" String in the right hand pane -> change the command line to read:
NOTEPAD.EXE /P "%1"
-> click
OK.
From now on when someone double-clicks on a REG file, it will open in Notepad for printing. :)
"Delete Microsoft Internet Explorer 4/5/6 uninstall folders and files to save
about 9 MB of disk space and a hefty chunk of Registry size: run C:\Program
Files\Common Files\Microsoft Shared\Msinfo\Msinfo32.exe -> go to Tools -> click Internet Explorer Repair Tool -> click
Advanced -> click Remove previous versions of Internet Explorer -> click OK.
That's it!"
ADD-ONS:
rundll32 setupwbv.dll,IE5Maintenance "C:\Program Files\Internet Explorer\Setup\setup.exe" /g "%windir%\IE Uninstall Log.Txt"
After installing WMP6 run Regedit and go to (all users):
HKEY_USERS\.Default\Software\Microsoft\MediaPlayer\Player\Settings
and to (current user):
HKEY_CURRENT_USER\Software\Microsoft\MediaPlayer\Player\Settings
Right-click in the right
hand pane -> select New -> String Value -> name it EnableDVDUI. Double-click on it -> type yes (case
insensitive) in the Value data box -> click OK.
Close the Registry Editor and restart Windows when done.
From now on
you can open WMP -> click File -> Open -> select DVD -> finally hit the Play button.
You'll also notice a new DVD icon
which pops up a DVD menu when left-clicked.
UPDATES:
EXTRACT /A /L %TEMP% D:\WIN98\BASE4.CAB DVD*.*
Now you should
see these 5 files extracted into your TEMP directory (default is C:\WINDOWS\TEMP): DVDPLAY.CHM, DVDPLAY.CNT, DVDPLAY.EXE,
DVDRGN.EXE + DVDPLAY.HLP. Move the .CHM, .CNT and .HLP files to C:\WINDOWS\HELP and the 2 executables (.EXE) to
C:\WINDOWS\SYSTEM (if you installed Windows 98/98 SE into C:\WINDOWS, otherwise sustitute the folder names to match
yours).
Create a shortcut to DVDPLAY.EXE, eventually on your Desktop, especially if you watch a lot of DVD movies.
:)
Note that you also need to install the 32-bit DVD Drivers/Codecs, i.e. Microsoft DirectX Media 6
[4.46 MB, free] or CineMaster, to be able to use
ANY DVD player.
DVDPlay is a primitive (lacks custom controls like brightness, color etc), but software based DVD player,
and requires a fast CPU (Intel Pentium Pro/II/III/IV/Celeron/Xeon or AMD K6/K7/Athlon/Duron/Thunderbird) for optimal
performance.
[Thank you Terry!]
FYI:
"I got tired of that ugly brown Briefcase icon. This Registry tweak allows you to
change it to a nice metal briefcase icon, for your viewing pleasure.
Start Regedit and go to:
HKEY_CLASSES_ROOT\CLSID\{85BBD920-42A0-1069-A2E4-08002B30309D}\DefaultIcon
Double-click on the right
hand pane "Default" value -> it should show "syncui.dll,0" -> change it to "syncui.dll,1" (don't type
the quotes).
Syncui.dll (located in C:\Windows\System) stores several icons but only 2 of them are briefcases: icon
0 represents the brown briefcase (default) and icon 1 represents the metal (aluminum) briefcase.
Close Regedit
and press F5 on the Desktop to refresh when done."
"Start Regedit -> Edit -> Find -> type
"syncui.dll,0" without the quotes -> click Find next button -> change 0 to 1 -> hit F3 to search
further until last match found and modified as above.
Close Regedit and press F5 on the Desktop to refresh when
done."
"This tweak permanently unchecks the "Always use this program to open this file type" checkbox on the "Open With" dialog box, when opening a non-associated file type. Run Regedit and go to:
HKEY_CLASSES_ROOT\Unknown\shell\openas\command
Modify the "(Default)" String value as shown here:
Rundll32.exe Shell32.dll,OpenAs_RunDLL %1 %2
Close Regedit when done and press F5 to refresh the Desktop."
"Do you want to make AOL your default browser?"
AOL9 adds some nice bonuses for ya: up to 7 screen names per account (and if you have/create your own AOL based web site you'll get 2Mb of disk space for each screen name, which amounts up to a total of 14Mb if using all 7 screen names), access to new/improved AOL areas, better compatibility with external web browsers (like MS Internet Explorer and Netscape Communicator), and [cross your fingers ;)] more stability.
After installing AOL 9.0 software, you MUST also upgrade your MS Internet Explorer copy to the NEWEST version, which includes all current security patches and fixes for safer browsing.
... And from now on you'll experience (hopefully) fewer AOL lockups...
BTW: Yule need a serious dose of good luck too! :)
MOVE C:\WINDOWS\FONTS\SSERIF*.FON C:\WINDOWS\CONFIG
I used here the default Win9x drive letter and folder name: C:\Windows. Substitute them if different on your computer.
MS Sans Serif=Arial
You can replace the Arial font here with ANY other font installed on your system. There are two types of fonts you can use:
UPDATE:
"Replacing the system font can cause problems for versions of Windows using
Double Byte Character Sets. Whenever the End User Defined Character feature is used, the replacement system font can cause
corrupted text to appear.
[Thank you JP!]
BACKUP YOUR REGISTRY FIRST!
To merge (register) MENUCOLS.REG into your Registry: open Windows Explorer or File Manager (FM = %windir%\WINFILE.EXE) and (double)-click on it.
"MENUCOLS.REG adds a toggle option to Explorer's View -> Folder Options -> View menu, to switch between multi-column Windows 95 style menus, and scrollable Windows 98/ME style menus."
Copy + Paste lines below in Notepad and save the file as MENUCOLS.REG:
-----Begin cut & paste here----- REGEDIT4 [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\Advanced\StartMenu\MCSM] "Type"="checkbox" "Text"="Multi-Column Start Menu [Win98/ME or Win95/OSR1/OSR2 + MS IE 4/5/6 ONLY]" "HKeyRoot"=dword:80000001 "RegPath"="Software\\Microsoft\\Windows\\CurrentVersion\\Explorer\\Advanced" "ValueName"="StartMenuScrollPrograms" "CheckedValue"=dword:0 "UncheckedValue"=dword:1 "DefaultValue"=dword:0 "HelpID"="IEXPLORE.HLP#50107" ------End cut & paste here------
FYI: See also "START MENU COLUMNS" [also in REGISTRY.TXT, part of W95-11D.EXE].
Setting Value --------------------- Large Icons 01 Small Icons 02 List 03 Details 04
Now run Regedit and go to:
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\ExpView
HKEY_USERS\.Default\Software\Microsoft\Windows\CurrentVersion\Explorer\ExpView
In the right hand
pane you'll notice the "Settings" Binary value. Double-click on it. On the 6th row from the top start at the left and
go to the 5th group of 2 digit numbers, ignoring the 1st group of 4 digits. Place the cursor to the left of the 45th Byte
(5th double digit group) and hit Delete. Now type in one of the values above (example: 04 for Details) to force
Windows Explorer to display its icons the way you want. Click OK.
[Thank you Kermit for sending the correct Byte
group!]
More info.
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams
HKEY_USERS\.Default\Software\Microsoft\Windows\CurrentVersion\Explorer\Streams
In the right hand pane you'll notice the "Settings" Binary value. Double-click on it. On the 1st row from the top start at the left and go to the 5th group of 2 digit numbers, ignoring the 1st group of 4 digits. Place the cursor to the left of this group (between the 4th and the 5th) and hit Delete. Now type in one of the values above (example: 01 for Large Icons) to force Control Panel to display its icons the way you want. Click OK.
Close the Registry Editor when done.