Skip to main content

Enable/Unlock Hidden Themes In Windows 7

Trick To Enable/Unlock Hidden Themes In Windows 7               Windows 7 has been a real delight for the eyes due to its excellent graphics.By defualt Windows 7 has 5 themes enabled for all countries but there are additional themes which are country specific and enabled according to your demographic location.In this tutorial I will show you how to enable/unlock the country specific hidden themes in windows 7.Once enabled these themes will always be available to you.There are two ways to enable these hidden themes.I will explain both of them to you and you can use any one of them whichever you find easy.


Here is the step by step tutorial with screenshots on how to Enable/Unlock Hidden Themes In Windows 7

Method 1:-
1.Goto Control Panel.
2.Click on Folder Options.
Note:- If Folder options is not available ,change the view to large icons at top-right corner of the screen
showprotectedosfiles114 Trick To Enable/Unlock Hidden Themes In Windows 7
3.Now Click On the View tab.
showprotectedosfiles238 Trick To Enable/Unlock Hidden Themes In Windows 7
4.Now uncheck the box Hide protected operating system files (Recommended).
showprotectedosfiles338 Trick To Enable/Unlock Hidden Themes In Windows 7
5.It will show you a warning.Click Yes.
showprotectedosfiles446 Trick To Enable/Unlock Hidden Themes In Windows 7
6.Now Goto C:\Windows\Globalization\MCT\
7.Inside this folder you will see folders with name MCT-XX where XX will be AU,CA etc.These are the country codes in which these themes are automatically available.
8.Inside each MCT-XX you will see a Theme folder.Open it and click on the .theme file to unlock it.
9.Once unlocked the theme will be available to you in personalization option.
METHOD 2:-This is a simple method as compared to the above method
1.Open Notepad
2.Copy and Paste the following code into it.
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes\InstalledThemes\MCT]
“%windir%\\Globalization\\MCT\\MCT-AU\\Theme\\AU.theme”=””
“%windir%\\Globalization\\MCT\\MCT-CA\\Theme\\CA.theme”=””
“%windir%\\Globalization\\MCT\\MCT-GB\\Theme\\GB.theme”=””
“%windir%\\Globalization\\MCT\\MCT-US\\Theme\\US.theme”=””
“%windir%\\Globalization\\MCT\\MCT-ZA\\Theme\\ZA.theme”=””
[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Wallpapers\KnownFolders\Windows Wallpapers\MergeFolders]
“%windir%\\Globalization\\MCT\\MCT-AU\\Wallpaper”=””
“%windir%\\Globalization\\MCT\\MCT-CA\\Wallpaper”=””
“%windir%\\Globalization\\MCT\\MCT-GB\\Wallpaper”=””
“%windir%\\Globalization\\MCT\\MCT-US\\Wallpaper”=””
“%windir%\\Globalization\\MCT\\MCT-ZA\\Wallpaper”=””
3.Save it with the name allregional.reg
4.Now double click on it.It will ask for your permission to add the file to registry.Click on Yes.
5.Right click on desktop and select personolize.You new themes will be available to you.

Comments

Popular posts from this blog

Windows Password Remover 7.01

Facts to Consider when purchasing a Hardware Firewall

  When buying a hardware firewall, there are several factors you should consider. Here is a checklist of important things to consider: Performance: Determine the required throughput and session capacity to meet the needs of your network. Security features: Look for features such as intrusion detection and prevention, VPN support, content filtering, anti-virus, anti-spam, and application control. Ease of use: Make sure the firewall has a user-friendly interface for easy configuration and management. Scalability: Consider the ability to add or upgrade hardware components to accommodate future growth. Integration: Determine how well the firewall integrates with your existing network and security infrastructure. Support: Look for a vendor with a good reputation for providing timely and effective support. Price: Evaluate the total cost of ownership, including hardware, licensing, and ongoing maintenance and support costs. Compliance: Check if the firewall meets any regulatory or complia...

Basic Shell script to perform Mathematical functions

 #!/bin/bash : ' BASH Script that mimics a 4 function calculator. A function called addition. This function will take two arguments and will return the sum of these two arguments. Be sure to check that the values are valid numbers. A function called subtraction. This function will take two arguments and will return the difference of these two arguments. A function called multiply. This function will take two arguments and will return the product of these two arguments. A function called divide. This function will take two arguments and will return the quotient of these two arguments. First argument is an option that chooses what to do with the two other arguments. The options should be as follows: -a Perform addition of the two numbers -s Perform subtraction of the two numbers -m Perform multiplication of the two numbers -d Perform division of the two numbers Second argument should be the first number used for the math problem Third argument should be the second number used fo...