Computer tricks

Change Processor Name 


After a user restarts his computer, the name reverted back to original which is obvious as each time Windows boots, it checks the connected hardware and updates the registry value automatically. So, changing the processor name using the earlier article did not had permanent effect on the processor name.

Thus, the alien processor name you had earlier again reverted back to the boring old one.

Change Processor Name Permanently

Problem: To, make the name change permanent, it was required that the user updates the Processor Name String registry key each time when Windows starts.

Solution: It is very easy to change your processor name permanently by creating a registry key and placing a shortcut to it in the windows start up folder. To do so, just follow the steps given below:-


Steps :-
1.  Open Notepad.
2.  Copy and paste the exact code given below:-

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\HARDWARE\DESCRIPTION\System\CentralProcessor\0]
"ProcessorNameString"="My Processor name 50000MHz"
To change the processor name, edit the part of the code given in blue. Also understand that \0 in the above code should only be present if Windows store your processor name at that location. Please open Registry Editor and navigate to the above mentioned keys to check whether or not to include the \0.

3.  Click on File Menu, click on Save As and select "All Types" in Save as Type option. Save the file as ProcessorNameChange.reg or *.reg.
4.  Create a new shortcut on your desktop. Enter regedit / S "Location of the .reg file" as the location of the item. For example, enter regedit /S "C:\Processor Name.reg" if your registry file is located in the root of C:\ drive.

Processor Name

5.   Copy the created Shortcut file.
6.  Navigate to C:\Documents and Settings\All Users\Start Menu\Programs\Startup (in Windows XP) or toC:\Users\ User-Name\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup (in Windows 8, Windows 7 and Windows Vista. Also remember that AppData is a hidden folder.)  if C: is your System drive.
7.  Paste the copied file.


This registry file would now execute each time when Windows starts and the Processor Name String would be modified each time. So, even upon restarting your computer, you will see that the changed processor name is permanent.




Add Background Images to Folders in Windows

Suppose you have a music folder that contains all songs by your favorite singer. Would it not be great if instead of the plain white background, you could add the singer's image as the background of this folder?

It is relatively easy to add background images to folders using a simple desktop.ini trick just as easily as you can change your Desktop's background.

Desktop.ini is a system file that is used to customize the appearance and behavior of folders in Windows. We can use this ability of desktop.ini files to add backgrounds to folders just by adding a few lines of code.

Folder Background in Windows
This is how the background in folder looks like.

Steps for adding backgrounds to Folders
  1. Open Notepad.
  2. Copy and paste the following code:-
  3. [{BE098140-A513-11D0-A3A4-00C04FD706EC}] iconarea_image="location of the image"
  4. You need to slightly modify this code on Windows Vista and Windows 7 as the ability to add folder backgrounds has been removed. So, if you use these versions of Windows, install AveFolderBG and then, replace [{BE098140-A513-11D0-A3A4-00C04FD706EC}] with [AveFolder] in the above code. To install this app, extract all the files and then, open the folder according to your installation of Windows (32 bit or 64 bit), right click install.bat and select Run as Administrator.
  5. In this code, iconarea_image is the parameter where the location of your image will go.
  6. Save the file as desktop.ini.
  7. Place this file in the folder where you want your personalized background.
  8. On Windows XP, you need to add system attribute to the folder where you want a background. To do this, open command prompt and execute "attrib +s D:\Music" (without quotes) if "D:\Music" is the location of your folder. If there are spaces in the location of your folder, you need to add double quotes around it. Windows Vista and 7 users need not add system attribute to folders.
  9. You might need to log off and log back on for the changes to take effect. Sometimes, AveFolder app fails to work in which case you need to restart Windows Explorer. I recommend you to create a System Restore point in case you do not like the results.

You can hide this desktop.ini file if you feel that it is something that should not be visible in your folder.

Tip: I am using this trick to have a personal picture as the background of the root folder of my flash drive. So, whenever I connect it to my Windows PC, the picture is displayed as the background. You can also do this but you should have the image in the drive itself. As you cannot assign a static location to theiconarea_image parameter (as the drive could be G:/ on one computer while F:/ on the other), you need to add the image's dynamic location. To do this, add "/{location of the image in flash drive}" as the value of iconarea_image. For example, if your image is located in the Pics folder in the flash drive, you need to have this value as:-

iconarea_image=/Pics/Image.jpg

It is important to note that the background to your flash drive will only be displayed on computers runningWindows XP (if you have used the code for XP) or those computers running Windows 7 and Windows Vista that have AveFolder installed. Sadly, there is no way to make the background of your flash drive visible on all computers unless you modify your flash drive to automatically install this app on every PC you plug it in.

No comments: