Home
Photos
Power Tips
Old Sites
Site Info.
Feedback
Links
 
Power Tips

Here are some of my power tips, to help make your windows "usable".

Some of my tips include registry hacks. Remember before making any changes to the registry, make a backup first.

Tips :
Open with Notepad
You got that HTML file you want to edit, that log file you what to view. You've got Send to ... Notepad set up, but this takes too long!. What you really what is to the option to Open with Notepad for any file you right-click on. Below is the registry changes required to do so. Also you can apply the same principle to any application.
[HKEY_CURRENT_ROOT\*\shell\Notepad]
@="Open with Notepad"

[HKEY_CURRENT_ROOT\*\Shell\Notepad\command]
@="notepad.exe \'%1\'"
This tip and I got mentioned in the July '99 copy of Personal Computer World, take a look.
Word 97 live Scroll
When you use the scroll bars in Word 97, you cannot see the contents of your document until you release the scroll bar, but no other application behaves like this. Use the scroll bars now for your browser and you can see the page move up and down, so lets make word do this.
[HKEY_CURRENT_USER\Software\Microsoft\Office\8.0\Word\Options]
"LiveScrolling"="1"
Desktop as a Toolbar
If you fill that the Quicklaunch bar quickly, you are still using the desktop to place you icons, using "Show Desktop" is too slow. Then my tip is make a tool bar of your desktop. I place my desktop tool left side of my screen (see here). This tip only works with Win98, or a system with IE4 and active toolbar (desktop enhancements)
Right-click the toolbar, pick "Toolbars"
Choose "New Toolbar..."
A little box should now appear showing all your folders, 
type "C:\Windows\desktop".  This toolbar will now appear 
on your current toolbar, drag it onto your desktop.
You can now place this toolbar anywhere.
Options I choose : 
	View -> Small
	Always on top
	Show Text (off)
Prevent files from ending ~1
Every file you create has its equivalent 8.3 name (a legacy name for pre Win95 systems). Unfortunately any file you create which is larger than this old 8.3 format obtains a name which ends with ~1 for example, the file longilename.txt would get the 8.3 name of longfi~1.txt, this is not very nice. The change below would give the file the name longfile.txt which is a lot better. The ~1 notation will still be used if there would be more than one file with the same 8.3 name.
[HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\FileSystem]
"NameNumericTail"=hex:00
This tip was found in Personal Computer World.
All folders closed when Explorer opens

This will open you file explorer will all you drive in "collapsed" view. This is especially useful for those with a large number of directories and multiple hard drives, and you will not have to waste time continually collapsing drive c: before powering to work.

What you will need to do is modify the shortcut for opening explorer.

Right-click the "Windows Explorer" icon from the start menu,
 under "Programs". 
Click on the "Shortcut" tab.
Now modify "Target so that the parameter match line the below.
C:\WINDOWS\EXPLORER.EXE /n,/e,/select, C:\
This tip was found in Personal Computer World.
Enable tone controls for SoundBlaser PCI 128

This registry change will provider you with bass and treble controls on the SB PCI128 mixer.

In the location below you will not that one of the folders is 000x replace this folder name with the folder name under which you soundcard resides. This will vary on on different machines

[HKEY_LOCAL_MACHINE\System\CurrentControlSet
                   \Services\Class\MEDIA\000x\Config]
"Allow Tone Controls"=hex:01
"Enable Tone Controls"=hex:01
This tip was found on the SoundBlaster website.
Remove programs which load on start-up

If you ever get warning that a file or .dll has failed to load on start-up but you cannot find any program in your "StartUp" which could be cauing this, chances are that they are being loaded via registry entries. Go to the locations shown below and remove the values to the file that is giving you grief.

N.B. Never remove any program you are unsure of its purpose from these locations. They may be very important.

[HKEY_LOCAL_MACHINE\Software\Microsoft
                   \Windows\CurrentVersion\Run]
[HKEY_LOCAL_MACHINE\Software\Microsoft
                   \Windows\CurrentVersion\RunOnce]
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows
                   \CurrentVersion\RunOnceEx]
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows
                   \CurrentVersion\RunServices]
[HKEY_LOCAL_MACHINE\Software\Microsoft\Windows
                   \CurrentVersion\RunServicesOnce]
Create a new filename for you own type

Is there a file type you are always creating that does not exist when you chose "New". Maybe you just what to create your own file type.

For the location shown below replace the xxx with the file type you wish to use

[HEKY_CLASSES_ROOT\xxx\ShellNew]
/*Create an empty file*/
"NullFile"=""                
/*Execute someFile to create the new file*/
"Command"="C:\someFile.exe"
/*Copy "file.xx" from c:\windows\shellnew\ */  
"FileName"="file.xxx"        
/*Create a new file with data shown.*/
"data"=hex:00,00,00          
Command line completion in WinNT

This tip will allow you to use the tab key for command line completion in you dos box on WinNT

[HKEY_CURRENT_USER\Software\Microsoft\Command Processor] 
"CompletionChar"=dword:00000009



This page last update 28th Apr 2001.
This website is maintained by Paul Kane.