December 2nd, 2009
No Comments
Start the Registry Editor by typing regedit from the Run box. Go to HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Active Setup \ Installed Components \ {89820200-ECBD-11cf-8B85-00AA005B4383} and then right-click the “IsInstalled value.” Click Modify. From there, you will change the value from 1 to 0. All right, go ahead and close the editor and reinstall IE from this location. /http://www.microsoft.com/windows/ie/default.mspx
IF SOMETHING GOES WRONG
If messing with the registry and something goes horribly wrong, you can use “Last Known Good Configuration (F8 Safe Mode)” or a Restore Point to get back to where you were before, with your settings. Then you can try again, this time taking care to watch the portion of the registry you are changing. Most people who have troubles with this end up changing the wrong registry key.
November 20th, 2009
No Comments
Advanced Screen Captures with the Snipping Tool
Leave the Prt Scrn key in the 1980s where it belongs. In the Accessories folder on the Start menu, you’ll find Vista’s Snipping Tool, which lets you capture just the part of the screen you want. Start it up, click and drag the mouse to outline the area you want to preserve, and release the mouse button. After you’ve snipped, you can draw on the image with a pen tool, highlight or erase certain portions, or save it to a file.
Display Multiple Clocks
If you’re a frequent traveler or have friends or family in another time zone, you can set up Vista to display multiple clocks at once. Click on the clock in the Start bar, then click “Change date and time settings”¦,” and then the Additional Clocks tab. Check the box next to “Show this clock” for each additional clock you want to add, then specify the time zone and display name for each clock. After you apply your changes by clicking OK, clicking on the clock in the Start bar will show you the clocks for every time zone you’ve selected.
November 20th, 2009
No Comments
Control Inactive System Tray Icons
You don’t have to hide or show all the icons in your system tray—you can control their disappearing acts. Right-click on the taskbar and select Properties. Click on the checkbox next to “Hide inactive icons” (if it’s not checked by default), then click on the Customize button. For each item on this list, you can choose “Hide when inactive,” “Always hide,” or “Always show” options to decide what you’ll see and when.
Fit More Icons on Your Desktop
If your screen is so cluttered with Word documents and program shortcuts that you can’t see the rolling meadows of your wallpaper, you don’t need to move piles of stuff to the Recycling Bin. Just change the amount of space between icons. Right-click on the desktop, select Properties, then click on the Appearance tab, and click the Advanced button. In the “Item” drop-down, scroll down to Icon Spacing (Horizontal) and Icon Spacing (Vertical); changing the value in the “Size” field will move icons closer together (while increasing the number will move them farther apart). When you’re done, click OK. To make your existing icons follow these rules, right-click on the desktop, select “Arrange Icons By” and then click Align to Grid, then go back to the same menu and click “Auto Arrange.”
November 15th, 2009
No Comments
The first byte defines which drive types to EXCLUDE from Autorun behavior. The hex value of the byte is the sum of all of the drive type values to exclude + 128.
DRIVE_UNKNOWN 1
DRIVE_NO_ROOT_DIR 2
DRIVE_REMOVABLE 4 (floppy disks and removable cartridges)
DRIVE_FIXED 8 (hard disks)
DRIVE_REMOTE 16 (network drives)
DRIVE_CDROM 32 (CD-ROMs)
DRIVE_RAMDISK 64
The default configuration excludes UNKNOWN (1), REMOVABLE (4) and REMOTE (16) which would be 16 + 4 + 1 + 128 = 149, which is hex 95. If you take out REMOVABLE you get 16 + 1 + 128 = 145, which is hex 91.
The calculation for this value is 1 + 4 + 16 + 128 = 149. 149 Decimal is 95 Hex
The new calculation is 1 + 16 + 128 = 145. 149 Decimal is 91 Hex
You may have to restart for the system to recognize a floppy or Zip as an Autoplay drive. If your floppy drive does not show a custom icon or AutoPlay in the menu when right-clicked, double-click on the icon for your computer on the desktop and press F5 to refresh the information in the Explorer window. Zips and floppies will not autolaunch when media is inserted. You must double-click their icon or right-click and choose AutoPlay from the menu.
November 15th, 2009
No Comments
Autorun can be enabled or disabled for all Removable media types, such as a floppy or Zip disk. Windows systems are configured to enable CD Notification, other removable media are by default disabled.
The System Properties User interface only exposes the CD Enable or Disable selection. The setting reflected in this dialog makes an entry in the System Registry. It is in this same location that other media types are configured.
Notes:
- Modifiying the Registry is not for the inexperienced user. Anyone will tell you, be VERY careful.
- The modifications made in this case use Hex not Decimal numbers. If you are unfamiliar with the Registry or the characteristics of base numbering and Hex, studying these topics prior to making these modifications is advisable.
To Modify these Registry Settings, Use Regedit and navigate to the following Key:
HKEY_CURRENT_USER
Software
Microsoft
Windows
CurrentVersion
Policies
Explorer
“NoDriveTypeAutoRun”
The default value for the setting is 95 0 0 0. Change the first byte to 91. Restart the computer to make the new setting take effect. You may have to right-click on the floppy and choose AutoPlay from the menu to see the AutoPlay behavior.