Posted on 16 November 2008
On the previous post I have wrote on Windows Registry Branches. In this article, we are going to talk on Registry Values inside those Registry Branches.
There are 5 main type of registry values in the Windows Registry. These value contain data and information for the operation of Windows Operating System.
- REG_DWORD
REG_DWORD values are shown in hexadecimal format and use a 4 byte number as data, with the decimal equivalent in brackets next to that. DWORD value can be entered in hexadecimal or decimal format. DWORD value are mostly use for switch value, with the value ‘0′ as off, and the value ‘1′ as on.
- REG_SZ
REG_SZ value can be word or number, or the location of file in your Windows Operating System. REG_SZ is also known as the string value.
- REG_EXPAND_SZ
This value act as a variable where an input from any application will place a value in REG_EXPAND_SZ value.
- REG_MULTI_SZ
This value contain multiple values or list.
- REG_BINARY
This value contain values as binary data. Usually, REG_BINARY are use for data or information related to hardware that cannot be edited or change by the user.
These are the values that are use in Windows Registry. I will talk on how to create or edit these values on the next article on Windows Registry Editing.
Tags:
registry editing,
registry editing tips,
registry value,
windows registry,
windows registry editing,
windows registry tips,
windows registry value
See also:
Posted on 15 November 2008
Today we are going to delve deeper into Microsoft Windows Registry editing by looking at the 5 main branches of the Windows Registry.
The Windows Registry consist of 5 main branches, as you can see from the pictures below.
Inside this main 5 branches in Windows Registry are registry keys, which are represented by folders, and inside them are Registry SubKeys and Registry Values.
The main 5 branches in the Windows Registry are:
- HKEY_CLASSES_ROOT
The HKEY_CLASSES_ROOT branch contains the information Microsoft Windows needs for internal functions such as OLE (Object Linking and Embedding, the ability to copy and paste between different programs and documents) and drag-and-drop. The HKEY_CLASSES_ROOT is also the database for file associations, which is how the OS determines what program opens when you double click a specific file type. This branch is by far the least user-friendly and the least edited from all the branches.
- HKEY_CURRENT_USER
This Windows Registry Branch contain several configuration settings for the user that is currently logged in only. All the customizations that have been made to Windows, such as a new desktop configuration, or a change of font will be stored here. Any Windows or application setting that is specific to your user can be found within this branch of the registry. As such, there are many customization options here. HKEY_CURRENT_USER is actually a sub-set of the HKEY_USERS branch, specific to the currently logged in user only.
- HKEY_LOCAL_MACHINE
The HKEY_LOCAL_MACHINE is probably the most edited friendly registry branch. This branch contains configuration settings that are specific to the computer and the software installed on it, but independent of users. As such, any changes made here will apply to any user that is logged in.
- HKEY_USERS
Like the CURRENT_USER branch, this contains individual configuration settings specific to individual users. However, it contains these options for all users that have been created. The users are identified by their SID (Security Identifier) number.
- HKEY_CURRENT_CONFIG
This is connected to HKEY_LOCAL_MACHINE, in much the same way that the CURRENT_USER branch connects to HKEY_USERS. It specifies hardware and software settings that apply to all users, for a given hardware profile.
Inside each of these 5 main registry branches are keys which hold subkeys and value. We will look into the keys, subkeys and value in the next article.
Tags:
HKEY_CLASSES_ROOT,
HKEY_CURRENT_CONFIG,
HKEY_CURRENT_USER,
HKEY_LOCAL_MACHINE,
HKEY_USERS,
windows registry,
windows registry branch,
windows registry editing,
windows registry tips
See also:
Posted on 14 November 2008
Microsoft Windows Registry Editing is a high risk practice which can cause serious damage to your Windows Operating System if not done correctly. Below are tips on Windows Registry Editing.
If you read Microsoft Knowledge Base on Registry editing, you will find the statement
WARNING: Using Registry Editor incorrectly can cause serious problems that may require you to reinstall your operating system. Microsoft cannot guarantee that problems resulting from the incorrect use of Registry Editor can be solved. Use Registry Editor at your own risk.
As scary as it may seems, actually editing Windows Registry manually using Regedit and Notepad is not that troublesome, and if done correctly can produce positive results that will affect your Windows Operating System.
One of the basic tips on Windows Registry Editing that will certainly get you out of trouble when editing Windows Registy would be to backup everything before doing any editing. This is compulsory because if you mess up something, you can easily restore the previous key.
To backup your registry key using Regedit:
- Go to start menu
- Run
- Type “regedit” without the quote and press enter.
- Go to menu “Files”.
- Choose “Export”.
- Save the backup as .reg files.

export registry
If something went wrong after editing your registry using Regedit, you can easily restore the registy key files that you have backed up using the import feature.
We will be looking into other registry editing tips and tricks in the future at badxp.
However if you feel that editing registry manually using Regedit as troublesome, you can use Registry utility such as Regsweep for registry fixing, optimization and cleaning. Refer to my previous post on Registry cleaning using Regsweep.
Tags:
registry cleaner,
registry cleaning,
registry editing,
registry editing tips,
registry fix,
regsweep,
windows registry
See also:
Posted on 20 October 2008
Windows Vista came with a built in CD Burning features, but since there are a lot of better freeware CD Burning applications for Windows Vista, you might want to disable Vista built in CD Burning.
This will require you to get your hand dirty with Windows Vista Registry Editor. Be advised that editing, tweaking or playing with the registry can lead your system to serious trouble. Make sure to backup your registry before following the steps below to disable Windows Vista built in CD Burning.
To disable Windows Vista built in CD Burning:
- Go to start menu > run
- Type “regedit” without the quote
- At the registry editor, navigate to
HKEY_CURRENT_USER\ Software \ Microsoft \ Windows \ CurrentVersion \ Policies \ Explorer
- Right click on the left pane, and create a new DWORD (32bit) key
- Type NoCDBurning without the quote.

- Double click on NoCDBurning and enter the value as “1″.
- Close Registry Editor
- Log off and then log in again for the changes to take effect.
This steps will Disable Windows Vista Built In CD Burning. To re-enable Vista Built In CD Burning, just change the Dword value to “0″.
Tags:
disable cd burning,
disable vista built in cd burning,
vista built in cd burning,
vista registry,
Windows Vista
See also:
Posted on 17 October 2008
Sometimes disabling Task Manager in Windows Vista can prove to be useful in securing your Windows Operating System. This tutorial will show you how to disable Task Manager in Windows Vista.
To disable Task Manager in Windows Vista using Registry Tweak, follow these steps:
- Go to Start Menu
- Go to “Run”
- Type “regedit” without the quote to run Registry Editor
- Go to
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Policies\system.
- Go to the right pane of Registry Editor, right click and create a new DWORD value
- Name the DWORD value “DisableTaskMgr” without the quote
- Set the value to “1″
- Save and restart your computer

The process above will Disable Task Manager in Windows Vista. To undo the the process, just change the value of “1″ to “0″.
Tags:
Disable task manager,
DisableTaskMgr,
regedit,
Registry Editor,
registry tweak,
vista disable task manager,
Windows Vista
See also:
Posted on 12 October 2008
Run command is a useful tools in every variant of Microsoft Windows, but sometimes for security purposes you might want to disable the Run command completely in Microsoft Windows. This tutorial will show how to disable run command completely in Microsoft Windows Vista.
To disable run command in Windows Vista
- Go to Windows Vista start menu.
- Type “gpedit.msc” without the quote.
- This will open the Group Policy Editor in Windows Vista
- Go to User Configuration
- Go to Administrative Template
- Go to Start Menu and Taskbar
- Choose “Remove run from start menu”
- Right click on “Remove run from start menu and choose “Properties”
- Select “Enable” at the “Remove run from start menu” properties page
- Click “Ok” and restart your computer

Be advised that by removing Run command, you will not be able to use the Run command anymore and everything that are associated with the run command.
Tags:
disable run,
disable run command,
remove run command,
Vista,
vista tips,
vista tweak,
Windows Vista
See also:
Posted on 12 June 2008
Windows Vista Welcome Center is the first screen you would come to when Windows Vista start, if you choose not to turn the Windows Vista Welcome Center off. The Windows Vista welcome center is design to help beginner using Windows Vista by providing basic information about the system.

Rumors have it that one of the key reasons for the Welcome Center appearing by default is so that Microsoft could comply with the government’s request for the OS to provide equal access to all OEMs who want to install software for their customers as part of the antitrust settlement. So, OEMs are entitled to extra information on how to alter the Welcome Center to use it for themselves.
The Windows Vista welcome center can be easily disabled by unchecking the “Run at startup” check box in the bottom left corner of Vista Welcome Center windows. But there are another extreme way to disable Vista Welcome Center by editing Registry, which are unnecessary, but just for the fun of it.
To disable Windows Vista Welcome Center using registry hack:
- Run regedit: Start Menu > run > regedit > enter
- Go to HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run
- Delete the key “WelcomeCenter”.
Or you can try this method to disable Windows Vista Welcome Center:
- Run Command prompt: Start Menu > All Programs > Accessories > Command Prompt > Right Click and select “Run as Administrator”.
- Type : reg delete HKCR\CLSID\{FD6905CE-52F-41F1-9A6F-135D9C6622CC}
- Enter
Those are two ways to disable Windows Vista Welcome Center using registry hack.
Tags:
disable vista welcome center,
disable welcome center,
vista registry hack
See also:
Posted on 21 March 2008
A customer ask me if he could remove his username from Windows XP start menu. It puzzled me why he would want to do this, but if you are looking for tips on removing your username from Windows start menu, read on.
To remove username from Windows XP start menu, use the following steps:
- Go to start menu > run > type in “regedit.exe” > hit enter
- Registry Editor will appear
- Browse to
HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Policies\Explorer
- Create a new DWORD value on the right-hand pane with the following values:
Name: NoUserNameInStartMenu
Value: 1
- Log off for changes to take effect
- Done
To reverse the process, just delete the DWORD value, or change the Value from “1″ to “0″.
Tags:
Remove username,
windows xp,
windows xp tips
See also:
Posted on 06 March 2008
Have this annoying windows error messages ever happen to you?

Cannot delete file: Access is denied
Cannot delete folder: There has been a sharing violation
Cannot delete file: It is being used by another person or program
Cannot delete folder: Make sure the disk is not full or write-protected and that the file is not currently in use.
I know that once in a while every Microsoft Windows user have been through this “Cannot delete file” error message. There are several solutions regarding this Cannot delete file error message.
First of all, you have to find out why the file is locked thus preventing it from being deleted.
- Is the file currently in use?
The best way to check this is by running Task Manager. Task manager can be run by pressing Ctrl+Shift+Esc or Ctrl+Alt+Del and selecting Task manager. My favorite is Ctrl+Shift+Esc. Browse to tab “Processes” , and if the file that is causing the error message Cannot delete file is listed, right click on the process, and choose “End Process”.
- Another program is using the file.
The best way to find out if another program is using the file(s) that you are trying to delete is by using a software call “WhoLockMe”. WhoLockMe will display any program that are using the files that you are trying to delete.
Download WhoLockMe here
Another powerful alternative to the Cannot delete file: Access is denied, Cannot delete folder: There has been a sharing violation, Cannot delete file: It is being used by another person or program, Cannot delete folder: Make sure the disk is not full or write-protected and that the file is not currently in use, is using a software Unlocker.

Unlocker will allow you to kill the processes that are locking file file and Unlocker will delete them automatically.
Download Unlocker here
Hope this will solved Cannot delete file: Access is denied, Cannot delete folder: There has been a sharing violation, Cannot delete file: It is being used by another person or program, Cannot delete folder: Make sure the disk is not full or write-protected and that the file is not currently in use problems.
Tags:
access is denied,
Cannot delete file,
Cannot delete folder,
freeware,
sharing violation,
unlocker,
wholockme
See also:
Posted on 27 February 2008
A collague of mine who has been fiddling with task manager (since I introduced it to him) have been asking me how to remove or stop the ctfmon.exe process from running on her computer. She has removed ctfmon.exe from her startup option using msconfig, but the process still appear on Task Manager.
Cftmon.exe process is an executable component Microsoft Office use to perform language related functions. It is related to the ‘Language Bar’ present in Microsoft Office. Language Bar in Microsoft office is the function that enabled you to control the computer using speech or a pen tablet. Although ctfmon.exe is a valid process and does not provide any security risk, ctfmon.exe should be disabled or remove if you don’t use the Language Bar function.
There are several steps to disable and remove ctfmon.exe completely from your computer.
Step 1 - Disable and remove Ctfmon.exe from Microsoft Office 2003
- Go to Control Panel > Add/Remove Program.
- Choose your Microsoft Office 2003 Installation and click “Change”.
- Tick “Choose advanced customization of applications” , then click Next.
- Go to “Alternative User Input” and click on the tab, a dropdown list will appear.
- Choose “Not Available” on the dropdown list.
- Continue.
Step 2 - Disable and remove Ctfmon.exe from Microsoft Windows XP
- Go to Control Panel > Regional and Language Options.
- Choose “Language” tab, click “Details”.
- Choose “Advanced” tab, tick “Turn off advanced text services”.
- Ok.
Step 3 - Disable and remove Ctfmon.exe from startup using Msconfig
- Go to Start Menu > Run > Type “msconfig.exe” without the quote “”.
- Go to “Startup” tab , untick cfmon box.
- Ok, and restart your computer.
Those are the steps on disabling and removing ctfmon.exe from your computer running Microsoft Windows XP.
One thing still puzzle me though, anyone know what ctfmon stands for? “Mon” in ctfmon might stand for “Monitor”, ctf?
Tags:
ctfmon,
ctfmon.exe,
language bar
See also: