RegEdit
Start > Run > Regedit
1. Registry Guide for Windows
What is the Registry?
The Registry is a database used to store settings and options for the 32 bit
versions of Microsoft Windows including Windows 95, 98, ME and NT/2000. It contains
information and settings for all the hardware, software, users, and preferences
of the PC. Whenever a user makes changes to a Control Panel settings, or File
Associations, System Policies, or installed software, the changes are reflected
and stored in the Registry.
The physical files that make up the registry are stored differently depending on your version of Windows; under Windows 95 & 98 it is contained in two hidden files in your Windows directory, called USER.DAT and SYSTEM.DAT, for Windows Me there is an additional CLASSES.DAT file, while under Windows NT/2000 the files are contained seperately in the %SystemRoot%\System32\Config directory. You can not edit these files directly, you must use a tool commonly known as a "Registry Editor" to make any changes
The Structure of the Registry
The Registry has a hierarchal structure, although it looks complicated the structure is similar to the directory structure on your hard disk, with Regedit being similar to Windows Explorer.
Each main branch (denoted by a folder icon in the Registry Editor, see left) is called a Hive, and Hives contains Keys. Each key can contain other keys (sometimes referred to as sub-keys), as well as Values. The values contain the actual information stored in the Registry. There are three types of values; String, Binary, and DWORD - the use of these depends upon the context.
There are six main branches, each containing a specific portion of the information
stored in the Registry. They are as follows:
HKEY_CLASSES_ROOT - This branch contains all of your file association mappings to support the drag-and-drop feature, OLE information, Windows shortcuts, and core aspects of the Windows user interface.
HKEY_CURRENT_USER - This branch links to the section of HKEY_USERS appropriate for the user currently logged onto the PC and contains information such as logon names, desktop settings, and Start menu settings.
HKEY_LOCAL_MACHINE - This branch contains computer specific information about the type of hardware, software, and other preferences on a given PC, this information is used for all users who log onto this computer.
HKEY_USERS - This branch contains individual preferences for each user of the computer, each user is represented by a SID sub-key located under the main branch.
HKEY_CURRENT_CONFIG - This branch links to the section of
HKEY_LOCAL_MACHINE appropriate for the current hardware configuration.
HKEY_DYN_DATA - This branch points to the part of HKEY_LOCAL_MACHINE, for use with the Plug-&-Play features of Windows, this section is dymanic and will change as devices are added and removed from the system.
Each registry value is stored as one of five main data types:
REG_BINARY - This type stores the value as raw binary data. Most hardware component information is stored as binary data, and can be displayed in an editor in hexadecimal format.
REG_DWORD - This type represents the data by a four byte number and is commonly used for boolean values, such as "0" is disabled and "1" is enabled. Additionally many parameters for device driver and services are this type, and can be displayed in REGEDT32 in binary, hexadecimal and decimal format, or in REGEDIT in hexadecimal and decimal format.
REG_EXPAND_SZ - This type is an expandable data string that is string containing a variable to be replaced when called by an application. For example, for the following value, the string "%SystemRoot%" will replaced by the actual location of the directory containing the Windows NT system files. (This type is only available using an advanced registry editor such as REGEDT32)
REG_MULTI_SZ - This type is a multiple string used to represent values that contain lists or multiple values, each entry is separated by a NULL character. (This type is only available using an advanced registry editor such as REGEDT32)
REG_SZ - This type is a standard string, used to represent human readable text values.
Other data types not available through the standard registry editors include:
REG_DWORD_LITTLE_ENDIAN - A 32-bit number in little-endian format.
REG_DWORD_BIG_ENDIAN - A 32-bit number in big-endian format.
REG_LINK - A Unicode symbolic link. Used internally; applications should not use this type.
REG_NONE - No defined value type.
REG_QWORD - A 64-bit number.
REG_QWORD_LITTLE_ENDIAN - A 64-bit number in little-endian format.
REG_RESOURCE_LIST - A device-driver resource list.
Create a Shortcut to Regedit
This can be done by simply right-clicking on a blank area of your desktop, selecting New, then Shortcut, then in the Command line box enter "regedit.exe" and click Next, enter a friendly name (e.g. 'Registry Editor') then click Finish and now you can double click on the new icon to launch the Registry Editor.
Using Regedit to modify your Registry
Once you have started the Regedit you will notice that on the left side there is a tree with folders, and on the right the contents (values) of the currently selected folder.
Like Windows explorer, to expand a certain branch (see the structure of the registry section), click on the plus sign [+] to the left of any folder, or just double-click on the folder. To display the contents of a key (folder), just click the desired key, and look at the values listed on the right side. You can add a new key or value by selecting New from the Edit menu, or by right-clicking your mouse. And you can rename any value and almost any key with the same method used to rename files; right-click on an object and click rename, or click on it twice (slowly), or just press F2 on the keyboard. Lastly, you can delete a key or value by clicking on it, and pressing Delete on the keyboard, or by right-clicking on it, and choosing Delete.
Note: it is always a good idea to backup your registry before making any changes to it. It can be intimidating to a new user, and there is always the possibility of changing or deleting a critical setting causing you to have to reinstall the whole operating system. It's much better to be safe than sorry!
Importing and Exporting Registry Settings
A great feature of the Registry Editor is it's ability to import and export registry settings to a text file, this text file, identified by the .REG extension, can then be saved or shared with other people to easily modify local registry settings. You can see the layout of these text files by simply exporting a key to a file and opening it in Notepad, to do this using the Registry Editor select a key, then from the "Registry" menu choose "Export Registry File...", choose a filename and save. If you open this file in notepad you will see a file similar to the example below:
REGEDIT4
[HKEY_LOCAL_MACHINE\SYSTEM\Setup]
"SetupType"=dword:00000000
"CmdLine"="setup -newsetup"
"SystemPrefix"=hex:c5,0b,00,00,00,40,36,02
The layout is quite simple, REGEDIT4 indicated the file type and version, [HKEY_LOCAL_MACHINE\SYSTEM\Setup] indicated the key the values are from, "SetupType"=dword:00000000 are the values themselves the portion after the "=" will vary depending on the type of value they are; DWORD, String or Binary.
So by simply editing this file to make the changes you want, it can then be easily distributed and all that need to be done is to double-click, or choose "Import" from the Registry menu, for the settings to be added to the system Registry.
Deleting keys or values using a REG file
It is also possible to delete keys and values using REG files. To delete a key start by using the same format as the the REG file above, but place a "-" symbol in front of the key name you want to delete. For example to delete the [HKEY_LOCAL_MACHINE\SYSTEM\Setup] key the reg file would look like this:
REGEDIT4
[-HKEY_LOCAL_MACHINE\SYSTEM\Setup]
The format used to delete individual values is similar, but instead of a minus sign in front of the whole key, place it after the equal sign of the value. For example, to delete the value "SetupType" the file would look like:
REGEDIT4
[HKEY_LOCAL_MACHINE\SYSTEM\Setup]
"SetupType"=-
Use this feature with care, as deleting the wrong key or value could cause major problems within the registry, so remember to always make a backup first.
Change categories in the Control Panel
Windows XP’s Control Panel is broken down by category in the default Category
view, but the group to which an item belongs is not always obvious. If you
disagree with Microsoft’s assignments, you can switch them around. To assign
a different category to an item, go to:
Category | DWORD value to set |
Other Control Panel Options | 0 |
Appearance and Themes | 1 |
Printers and Other Hardware | 2 |
Network and Internet Connections | 3 |
Sounds, Speed, and Audio Devices | 4 |
Performance and Maintenance | 5 |
Date, Time, Language, and Regional Options | 6 |
Accessibility Options | 7 |
Add or Remove Programs | 8 |
User Accounts | 9 |
Remove the entry for a program by right-clicking
it and selecting Delete to prevent it from loading.
Sort menus alphabetically
When you install a new program for a user, it doesn’t find its place in
the alphabetical Start menu hierarchy right away; it hangs out at the bottom
for a little while. If your users employ the Classic Start menu, they can
realphabetize it manually by right-clicking the taskbar and choosing Properties,
clicking the Customize button next to the Classic Start Menu, and clicking
the Sort button. With the Windows XP style of Start menu, however, you don’t
have an equivalent button. To make Windows always alphabetize the list,
remove the permissions from the Registry key that controls the sort order
for the Start menu. To do so, go to:
Disabling the F3 Search Key
- Added 1/20/03
Preventing Changes to File Associations
- Added 9/18/02
Locking File Associations - Added 9/18/02
Prevent Changes to the Start Menu - Added
1/31/00
DOS Restrictions - Updated 1/31/00
Networking Restrictions - Updated 1/31/00
Control Panel Restrictions - Updated 1/31/00
Restricting the Start Menu, Explorer, and the Desktop - Updated 1/30/00
Eliminating the Right Click on the Taskbar - Added 1/10/00
Eliminating the Right Click on the Desktop - Added 1/10/00
Hiding Any Combination of Drives - Submitted 2/15/98
Disabling Drives in My Computer - Added
7/24/96
Not Saving Settings on Exit - Added 7/21/96
Not Displaying the Network Neighborhood - Added 7/21/96
Disabling Run or Find from the Start Menu
- Added 7/21/96
Hiding All Icons from the Desktop - Added 7/21/96
Disabling the Right-Click on the Start Button
- Added 6/29/96
Disabling My Computer - Added 6/29/96
Disabling File and Print Sharing - Added 4/29/96
Adding Open With to the Right
Click in the Explorer - Added 12/28/99
Opening a DOS Window to either the Drive or Directory in
Explorer - Submitted 8/9/97
Adding Explore From Here to Every Folder
- Added 1/30/97
Removing Open, Explore & Find from Start Button
- Added 9/15/96
Opening Explorer from My Computer - Added 5/28/96
Re-Enabling DHCP Error Messages
- Added 9/20/98
Removing the Hand Icon from Shared Resources - Submitted
2/11/98
Creating a Network Logon Banner - Submitted 12/7/96
Disable Password Caching - Added 10/19/96
Changing the MaxMTU and other Network Settings - Added 10/19/96
Changing the Telnet Scroll-Back Buffer Size Added 7/27/96
Not
Displaying the Last User Logged on - Added 4/29/96
Setting the Minimum Password Length - Added 4/29/96
Turning off System Beeps
- Added 9/10/02
Changing the Location Of Special Folders - Added
9/10/2
Deleting Specific Registry Value - Submitted 12/22/01
Setting the Recycle Bin to Always Delete - Added
11/17/01
Setting the Internet Explorer Home Page - Submitted
9/4/01
Preparing to Move Hard Drive to Another Computer - Submitted
12/20/00
Comparing Registries - Added 2/21/00
Setting Excel 2000 High-Contrast Cell Selection - Added 2/2/00
Changing Common Icons - Updated 1/31/00
Changing Office 2000's Excel Undo History - Added 1/27/00
Changing the Title on Windows Media Player - Added 1/27/00>
Turning Off the Help on Min, Max, Close Icons -
Added 1/8/00
Automatically Deleting a Registry Key
- Added 12/20/99
Fixing no AutoRun for CDs - Added 11/9/99
Renaming the File System Profiles -
Added 4/20/99
Sticky Menus - Added 4/20/99
Automatic Shutdown with Windows NT - Submitted 3/28/99
Kill Hung Processes When Logging Off in Windows NT - Submitted 3/28/99
NT Crash Log File - Submitted 3/28/99
Changing the Location of Outlook Express Data Files - Added 1/16/99
Disabling the Blinking Cursor - Added 10/17/98
Getting Rid of Schemes - Updated 6/7/98
Creating a Legal Text Notice Before Logon - Added
2/15/98
Enabling the Middle Mouse Button on Logitech Mouse -
Submitted 12/7/97
Easily Opening a File with Notepad - Submitted 10/25/97
Displaying Hi-Color Icons without the Plus Pack - Submitted
10/19/97
Backing Up the Registry - Submitted 9/13/97
Removing Unwanted Items from the RUN Menu - Submitted
8/23/97
Compacting the Registry - Submitted 4/5/97
Changing Exchange's Mailbox Location - Added
3/29/97
Removing Sound Events from Control Panel / Sounds
- Added 3/16/97
Changing the Registered Owner - Added 2/6/97
Adding an Application to Every Folder - Added 1/30/97
Saving Desktop Settings - Submitted 1/11/97
Getting Rid of Tips - Submitted 1/2/97
Changing the Location of Windows95's Installation Files
- Added 12/18/96
Creating a Default File Opener - Added 11/29/96
Deleting Registry Keys from the Command Line - Added
11/3/96
Automatic Screen Refresh - Added 10/24/96
Adding Items to the Start Button - Added 10/17/96
Removing the
InBox Icon and Recycle Bin Icons from the Desktop - Added 9/8/96
Removing Items from NEW on the Desktop - Added 7/28/96
Changing the Tips of the Day - Submitted 7/27/96
Get Your Folders to Open the Way You Want Every Time
- Submitted 7/7/96
Clearing the Documents Menu Automatically - Added
6/2/96
Fixing a Corrupt Registry - Added 5/12/96
Recycle Bin Edits - Submitted 5/2/96
Removing the Shortcut Arrows - Added 4/21/96
Turn Off Window Animation - Added 4/21/96
To speed up the Start Menu - Added 4/21/96
Changing your Modem's Initialization String - Added
4/21/96
Increasing the Modem Timeout - Added 4/21/96
Removing Programs listed from the Control Panel's Add/Remove
Programs Section - Added 4/21/96
Specifying programs to run every time Windows95 starts -
Added 4/21/96
Added 1/20/03
If you want to disable the ability to use the F3 key from either the Windows Explorer or Internet Explorer
Submitted 9/18/02
You can prevent users from changing associations via Windows Explorer's Tools / Folder Options / File Types tab.
Submitted by Paul Barker
Submitted 9/18.02
If you have your file associations the way you want for a particular file type, you can remove it from the list that gets displayed in the Folder Options / File Types screen
Submitted by Paul Barker
Added 9/10/01
If you want to turn off all system beeps (like the ones that go through your computers' internal speaker):
Added 9/10/02
You can modify the registry to change the location of special folders like:
Note: TweakUI from Microsoft will allow you to make these changes from a dialog box as well
Submitted 12/22/01
In a previous tip, Automatically
Deleting a Registry Key, it was mentioned how to remove an entire registry
key.
If you want to simply remove a specific value within a key, use the syntax below:
[Registry Key]
"value"=-
For example:
REGEDIT4
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
"MSConfig"=-
would delete the value MSCONFIG.
Submitted by Brent Towsley
Added 11/17/01
You can set the recycle bin to always delete items (like holding down the shift key when dragging files to the recycle bin)
Submitted 9/4/01
If you want to set the home page used by Internet Explorer through the registry
Submitted by Austin Henderson
Submitted 12/20/00
To remove the devices from device manager when taking
a HD from one computer to another,
simply:
Submitted by Lee Berry
Added 2/21/00
While working with changes to your system, you might
want to see what is changing in your Registry.
Since you can export it to a text file, the steps are fairly easy
Note: I do the last steps so often I have a simple batch file already set up.
Added 2/2/00
If you want to increase the contrast in selected cells:
Updated 1/31/00
You can change many of the common Windows icons.
0-13 Are the Drive and Application
Icons
0 - To change the Unknown Application Icon
2 - To change the Default Application Icon
3 - To change the Closed Folder Icon
4 - To change the Open Folder Icon
5 - To change the 5 1/4" Floppy Icon
6 - To change the 3 1/2" Floppy Icon
7 - To change the Removable Disk Icon
8 - To change the Hard Drive Icon
9 - To change the Network Drive Online Icon
10 - To change the Network Drive Offline Icon
11 - To change the CD Drive Icon
12 - To change the Ramdrive Icon
13 - To change the Entire Network Icon
19-27 Are the Start Menu Icons
19 - To change the Programs Icon
20 - To change the Documents Icon
21 - To change the Settings Icon
22 - To change the Find Icon
23 - To change the Help Icon
24 - To change the Run Icon
27 - To change the Shutdown Icon
Other Icons
33 - To change the DUN Folder Icon
34 - To change the Desktop Icon
35 - To change the Control Panel Icon
37 - To change the Printer Folder Icon
40 - To change the Audio CD Icon
43 - To change the Favorites Icon
44 - To change the Logoff Icon
Added 1/31/00
To prevent any changes to the Start Menu, even a right click:
Updated 1/31/00
There are restrictions you can make to the ability to execute DOS programs
Updated 1/31/00
There are general restrictions you can make in Networking
Updated 1/31/00
There are many general restrictions you can make to the Control Panel
Updated 1/30/00
There are many general restrictions you can make to the Start Menu, the Explorer and to the Desktop itself.
Added 1/27/00
By default, Excel has only approximately 16 undo's you can perform.
To increase that number:
Added 1/27/00
You can change the title bar for the Windows Media Player
Added 1/10/00
To eliminate the right click on the taskbar:
Start Regedit
Added 1/10/00
To eliminate the right click on the desktop:
Added 1/8/00
When the mouse goes over the minimize, maximize and close
icons on the upper right hand side of a window, you normally get a display telling
you want those are for.
To disable that display:
Added 12/28/99
To add the option Open With when you right click on a file in the Explorer:
Added 12/20/99
Normally you cannot automatically delete registry keys from reg file. But there is a way...
Simply include a minus sign inside the left bracket before the main key.
For example.
If you want to delete the key HKEY_LOCAL_MACHINE \ Software \ Microsoft \ Office
\ 8.0 \ Common \ Assistants, your regfile would simply look like:
REGEDIT4[-HKEY_LOCAL_MACHINE\Software\Microsoft\Office\8.0\Common\Assistants]
This would delete that key and any below it.
Added 11/9/99
If your CDs have stop starting automatically, and you have checked everything else:
Added 4/20/99
In the Control Panel / System / Performance / File
System, you can select either Desktop Computer, Mobile or docking system,
or Network Server.
You can change these labels to something more descriptive:
Added 4/20/99
Normally when you move the mouse over the Start Menu
/ Programs, it will automatically cascade and show the submenus.
If you want them to open only when you actually click on them:
Submitted 3/28/99
Most laptops allow the operating system to turn off the
hardware after shutdown, instead of displaying the message telling you it's
now safe to turn off your system.
You can take advantage of this capability by enabling the Power Down After Shutdown
feature.
To enable this feature, simply add a REG_SZ value named HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\PowerdownAfterShutDown and set it to 1.
Next, tell NT to shut down and see if the machine turns itself off after shutting down. If it doesn't, change the value back to 0 to restore normal operation.
Submitted by D Puffer
Submitted 3/28/99
When you tell NT to shut down, it first sends shutdown
requests to any running processes.
Most 32-bit applications honor these requests and shut down, but older 16-bit
apps running in the Virtual DOS Machine often won't.
When this occurs, the operating system prompts you with a dialog box asking
if you want to kill the task, wait for the task to die on its own, or cancel
the shutdown.
By modifying the Registry, you can automate this process.
You can force NT to kill all running processes on shutdown by adding a REG_SZ value named HKEY_USER\\ControlPanel\Desktop\AutoEndTasks and set the value to 1. You can also add this value to HKEY_USERS\.DEFAULT so that all new accounts will shut down the same way.
Submitted by D Puffer
Submitted 3/28/99
In addition to the crash log file, you can also enable
two other methods of crash notification and logging.
You can enable an administrative alert by changing the value of
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\CrashControl\SendAlert to 1. The next time the system crashes, an administrative alert will be sent that may provide the first sign of the crash.
You can also make NT log the crash in the event log by changing the value of
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\CrashControl\LogEvent to 1 instead of its default 0. Now, the exact time of the crash will be permanently recorded.
Submitted by D Puffer
Added 1/16/99
Normally Outlook Express keeps its data files in the C:\Windows\Application Data\Microsoft\Outlook Express directory.
To change this:
Added 10/17/98
To stop the cursor from blinking in applications such as Word:
Added 9/20/98
If you got a DHCP error message, selected to not see DHCP errors, and now want to see them again;
Updated 6/7/98
Submitted by obs
When you right click on your desktop and pick properties
your Display Properties screen appears.
Under Appearance tab / Schemes, determine if you want all those wild schemes.
If not they can be deleted and clear approximately 45K.
Before you delete them, choose or create at least 1 Scheme and "Save As"
(in my case Bud 1).
Submitted by Bud Allen
bwil@erinet.com
Submitted 2/15/98
If you want to stop a drive or any combination of drives appearing in Explorer/My Computer
Add the Binary Value of 'NoDrives' in the registry at HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
Give it a value from a combination of the table below:
A 1 00 00 00
B 2 00 00 00
C 4 00 00 00
D 8 00 00 00
E 16 00 00 00
F 32 00 00 00
G 64 00 00 00
H 128 00 00 00
I 00 1 00 00
J 00 2 00 00
K 00 4 00 00
L 00 8 00 00
M 00 16 00 00
N 00 32 00 00
O 00 64 00 00
P 00 128 00 00
Q 00 00 1 00
R 00 00 2 00
S 00 00 4 00
T 00 00 8 00
U 00 00 16 00
V 00 00 32 00
W 00 00 64 00
X 00 00 128 00
Y 00 00 00 1
Z 00 00 00 2
Where (for eg) you want to hide Drives {C,E,J,O,R,U,Y,Z}
you would give 'NoDrives' the value 14 42 12 03
Where C+E = 14, J+O = 42, R+U=12 and Y+Z = 03
Please NOTE: The Numbers are to be added in HEXadecimal ie: ABCD = 0F, not 15
All Drives Visible is 00 00 00 00 All Drives Hidden is FF FF FF 03
Submitted by Ramon Buckland
Added 2/15/98
You can create a banner that will come up just before you logon to the computer:
Now before anyone logs into that computer, this banner
will come up on the screen.
This can be useful for any legal warnings you want to give regarding the use
of the computer.
Submitted 2/11/98
When you share a local resource, Windows95 normally puts
a hand in from of that resources icon.
To remove hand icon from your shared resources:
Submitted by Guntars Revelins
To enable the middle mouse button on Logitech Mouses to act as a double-click button by only pressing it once:
Submitted by Jason Maruniak
Submitted 10/25/97
This will enable you to right click on any file and have
the option to open it with notepad.
Also if a file has no association and you try to open it it will open with notepad
Submitted by EIBON
Submitted 10/19/97
Submitted by Frank Lolli
Submitted 9/13/97
There are many backup programs for the registry but if the computer goes down and you can't fire off Win95 because of the registry problem.
Backup to a directory the following files:
These files can be copied to the windows directory from Win95 or DOS to help correct problems.
Submitted by George Harper
Submitted 8/23/97
Submitted by Graham Orchard
Submitted 8/9/97
Add or Edit the following Registry Keys
[HKEY_CLASSES_ROOT\Directory\shell\opennew]
@="Dos Prompt in that Directory"
[HKEY_CLASSES_ROOT\Directory\shell\opennew\command]
@="command.com /k cd %1"
[HKEY_CLASSES_ROOT\Drive\shell\opennew]
@="Dos Prompt in that Drive"
[HKEY_CLASSES_ROOT\Drive\shell\opennew\command]
@="command.com /k cd %1"
These will allow you to right click on either the drive or the directory and the option of starting the dos prompt there will pop up
Submitted by James Doss
Submitted 4/5/97
How to compact the registry?
Submitted by Ian Buda
Added 3/29/97
When you create a mailbox in Exchange for e-mail, you
specify the file where you want to mail to go.
You cannot change this in Exchange afterwards.
If you want to change the file name or location::
Added 3/16/97
When you view what events you can assign sounds to from
Control Panel / Sounds,
you cannot delete the events themselves. In order to do that:
Added 2/6/97
Added 1/30/97
Here is how to add any application to the menu when you
right click on any Folder.
This could be useful if there is an app you always want available and don't
want to go through the Start menu
Now when you right click on any folder, you can have
access to that application
This will work for both Windows95 and NT 4.0
Added 1/30/97
Now when you right click on any folder, you can open
up an Explorer window of that folder.
This will work for both Windows95 and NT 4.0
Submitted 1/11/97
When I would go to Control Panel or Start Menu Programs, or any other Desktop window setting; meaning size, position, icon arrangement, they would never be as I set them. I found an answer:
At [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer]
There is a "NoSaveSettings" key. I deleted it and now my all my stuff
stays where I tell it.
The same key shows up at:
[HKEY_USERS\bwil\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer](where
bwil is your password profile) Just thought I'd share this with you all.
Submitted by Bud Allen
bwil@erinet.com
Remember those "Tips of the day" that appeared
when you first install Win95?
If you don't want them any longer and want to clear yet more Clutter, approximately
5K, you can delete them at:
HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ explorer
\ Tips
Submitted by Bud Allen
bwil@erinet.com
Added 12/18/96
If you need to change the drive and or path where Windows95 will look for it's installation files:
Submitted 12/7/96
If you want to create a Network Logon Banner:
Submitted by Frank Tanner
Added 11/29/96
If you have a un-registered file type and want to view it with Explorer's Right-click
you can add your program to the right-click options by:
In this example, when you right click on a file in Explorer, NOTEPAD will show up as an option.
Added 11/3/96
With the OEM Version of Windows95, a new switch, /D,
is added to Regedit.
This enables you to delete items from Registry.
The syntax is: REGEDIT /L:system.dat_location /R:user.dat_location
/D Reg_Key
where Reg_Key is the key you want to delete
There are two requirements:
1. That you have to boot to the same OEM version of Windows95 as the REGEDIT.EXE
file.
2. You cannot be in Win95 at the time you use this switch.
Added 10/24/96
When you make changes to your hard drive and use Explorer,
the changes are not usually displayed until you press the F5 key
To make the updates automatic:
Added 10/19/96
As in Windows for Workgroups, when logging on to an NT
Domain, it is preferable to disable password caching.
This allows for the single NT Domain login and eliminates the secondary
Windows logon screen.
It also eliminates the possibility of the respective passwords to get out of
sync.
To disable password caching on the workstation, a one-line
addition to the registry needs to be made.
To make the change, create a ASCII text file called DISABLE.REG with
the following lines:
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\Network]
"DisablePwdCaching"=dword:00000001
Open up a DOS box and type REGEDIT DISABLE.REG
You can also download the DISABLE.REG file.
If you need to re-enable password caching, download ENABLE.REG and repeat the process just with the different file name
Added 10/19/96
There are four network settings that can be configured
so when dialing to an ISP, you should get somewhat greater throughput.
They are the MaxMTU, MaxMSS and DefaultRcvWindow, and DefaultTTL
MaxMTU and MaxMSS
DefaultRcvWindows and DefaultTTL
Added 10/17/96
To add items when you right-click on the Start Button:
Added 9/15/96
When you right click on the Start Button, you can select
Open, Explore or Find.
Open shows your Programs folder. Explore starts the Explorer and allows access
to all drives.
Find allows you to search and then run programs. In certain situations you might
want to disable this feature.
To remove them:
Note: - When you remove Open, you cannot
open any folders.
If you need to undo any of the changes, you can download
the registry settings before the changes.
Added 7/27/96
When you right-click on the desktop and select New,
a list of default templates you can open up are listed.
To remove items from that list:
Added 7/27/96
By default, the Telnet session has a window size of 25
lines. To increase this so you can scroll back
and look at a larger number on lines:
Submitted 7/27/96
You can edit the Tips of the day in the Registry by going
to:
HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows \ CurrentVersion \ explorer
\ Tips
Submitted by Jayme Johnston
jayme@excalibur.net
Added 7/24/96
To turn off the display of local or networked drives when you click on My Computer:
Added 7/21/96
Added 7/21/96
Added 7/21/96
Added 7/21/96
Submitted 7/7/96
To get your folders to open the way you want every time:
Submitted by Dan Poplawski
dan@together.net
Added 7/1/96
Below is a reference for the icons I've been able to figure out:
0 - Default Icon
1 - Default Document
2 - Application
3 - Closed Folder
4 - Open Folder
5 - 5 1/4 Drive
6 - 3 1/4 Drive
7 - Removable Drive
8 - Hard Drive
9 - Network Folder
10 - Network Offline
11 - CD
12 - RAM Drive
13 - Entire Nertwork
15 - My Computer
16 - Printer
17 - Network Neighborhood
18 - Network Workgroup
19-27 are the Start Menu icons
19 - Programs
20 - Desktop
21 - Settings
22 - Find
23 - Help
24 - Run
25 - Suspend
27 - Shutdown
28 - Share
29 - Shortcut
31 - Recycle Bin (Empty)
32 - Recycle Bin (Full)
33 - Folder, Dial-Up Networking
34 - Desktop
36 - Program Group
40 - Audio Card
In addition, you can change:
Added 6/2/96
The Documents Menu displays the last file and programs
you used. You can clear item manually but only through editing
the Registry can you turn this off automatically. This can be useful on computers
that are used by multiple people.
The same settings can be also used in NT 4.0
Your Documents Menu should now be blank. This will be for all subsequent users who logon as well.
Added 6/29/96
Normally, when you right button click on the Start
button, it allows you to open your programs folder, the Explorer and run Find.
In situations where you don't want to allow users to be able to do this in order
to secure your computer.
Now when you right click on the Start button,
nothing should happen.
You can delete only those items that you need.
Note: - On Microsoft keyboards, this also disables the Window-E (for
Explorer) and Window-F (for Find) keys.
See the section on
Installation to see how to do this automatically during an install.
Added 6/29/96
In areas where you are trying to restrict what users
can do on the computer, it might be beneficial to disable the ability to click
on My Computer and have access to the drives, control panel etc.
To disable this:
Now when you click on My Computer, nothing will
happen.
You might want to export this section to a registry file before deleting it
just in case you want to enable it again..
See the section on Installation to see how to do this automatically during an install.
Added 5/28/96
You can change many of the icons that are located on your desktop.
Some of the additional items that can be searched for are:
Additional icons can be found in:
Added 5/28/96
By default, when you click on the My Computer icon, you get a display of all your drives, the Control Panel etc. If you would like to have this open the Explorer:
Added 5/12/96
If your registry has gotten corrupted, and re-installing
Windows95 over your existing version does not fix the problem,
there is a hidden, read-only, system file on the root of your boot drive called
SYSTEM.1ST.
This is the initial system registry created when you first installed Windows95.
You will need to install your 32-bit apps and any other
programs or changes that modified your system registry
but you will not need to go through a new again. Your 16-bit apps should not
need to be re-installed since they do
not modify the registry. You will also retain your current desktop configuration.
Submitted 5/2/96
Fooling with the recycle bin. Why not make the icon context menu act like other icon context menu's.
Add rename to the menu:
[HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder]
"Attributes"=hex:50,01,00,20
Add delete to the menu:
[HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder]
"Attributes"=hex:60,01,00,20
Add rename and delete to the menu:
[HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder]
"Attributes"=hex:70,01,00,20
Restore the recycle bin to win 95 defaults including
un-deleting the icon after deletion:
... Restore the icon.
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\explorer\Desktop\NameSpace\{645FF040-5081-101B-9F08-00AA002F954E}]
@="Recycle Bin"
... reset win 95 defaults
. [HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder]
"Attributes"=hex:40,01,00,20
Other edits to the recycle bin icon:
[HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder]
"Attributes"=hex:40,01,01,20 ... standard shortcut arrow
"Attributes"=hex:40,01,02,20 ... another shortcut arrow
"Attributes"=hex:40,01,04,20 ... and another shortcut arrow
"Attributes"=hex:40,01,08,20 ... make it look disabled (like it's
been cut)
I added the above edits for fun. But it gets you thinking.
Note: Adding rename and delete to the context menu takes effect instantly. To
restore the icon after deletion requires screen refresh (F5).
Have fun.... Tom
Added 4/29/96
Also see the Installation Section on doing this automatically during installation.
Added 4/29/96
Also see the Installation Section on doing this automatically during installation.
Added 4/21/96
If you want to start programs every time Windows95 runs,
but would like to hide them from users
by not having the listed in the Startup folder or the WIN.INI file, you can
have them load through the registry.
Added 4/21/96
You can shut off the animation displayed when you minimize
and maximize windows.
Added 4/21/96
Added 4/21/96
Added 4/21/96
Added 4/21/96
If your modem it timing out during file transfers or
loading Web Pages,
you might try increasing the timeout period.
To change it:
Added 4/21/96
If you remove an installed program and its files by deleting
the files,
it may still show up in the Add/Remove programs list through the control panel.
In order to remove it from the list (so you don't need to re-install in order
to just remove it again).
This will only delete them from the list, not delete
the actual programs.
Only programs designed for Windows95 will show up here in the first place.
Mails
To: khatibkhan@yahoo.com