<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>My Blog</title>
		<link>http://mystudies.ucoz.com/</link>
		<description></description>
		<lastBuildDate>Tue, 24 Jan 2012 09:56:07 GMT</lastBuildDate>
		<generator>uCoz Web-Service</generator>
		<atom:link href="https://mystudies.ucoz.com/news/rss" rel="self" type="application/rss+xml" />
		
		<item>
			<title>Win XP Tips 5</title>
			<description>&lt;span style=&quot;font-size: 14pt; line-height: 21px; font-family: Calibri, sans-serif; &quot;&gt;39. Customize Multiboot Startup Options&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; line-height: 17px; font-family: Calibri, sans-serif; &quot;&gt;&lt;br&gt;Edit or create a startup menu that lets you choose which operating system to boot into&lt;br&gt;in multiboot systems, or create a menu that lets you choose different startup options&lt;br&gt;for your single operating system if you have only XP installed.&lt;br&gt;If you&apos;ve installed another operating system (in addition to XP) on your system, your&lt;br&gt;PC starts up with a multiboot menu, which allows you to choose the operating system&lt;br&gt;you want to run. The menu stays live for 30 seconds, and a screen countdown tells&lt;br&gt;you how long you have to make a choice from the menu. After the 30 seconds elapse,&lt;br&gt;it boots into your default operating system, which is generally the last operating&lt;br&gt;system you installed.&lt;br&gt;You can customize that multiboot menu and how your PC starts by editing the&lt;...</description>
			<content:encoded>&lt;span style=&quot;font-size: 14pt; line-height: 21px; font-family: Calibri, sans-serif; &quot;&gt;39. Customize Multiboot Startup Options&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; line-height: 17px; font-family: Calibri, sans-serif; &quot;&gt;&lt;br&gt;Edit or create a startup menu that lets you choose which operating system to boot into&lt;br&gt;in multiboot systems, or create a menu that lets you choose different startup options&lt;br&gt;for your single operating system if you have only XP installed.&lt;br&gt;If you&apos;ve installed another operating system (in addition to XP) on your system, your&lt;br&gt;PC starts up with a multiboot menu, which allows you to choose the operating system&lt;br&gt;you want to run. The menu stays live for 30 seconds, and a screen countdown tells&lt;br&gt;you how long you have to make a choice from the menu. After the 30 seconds elapse,&lt;br&gt;it boots into your default operating system, which is generally the last operating&lt;br&gt;system you installed.&lt;br&gt;You can customize that multiboot menu and how your PC starts by editing the&lt;br&gt;boot.ini file, a hidden system file, to control a variety of startup options, including&lt;br&gt;how long to display the menu, which operating system should be the default, whether&lt;br&gt;to use the XP splash screen when XP starts, and similar features. And as you&apos;ll see&lt;br&gt;later in this hack, you can also use the file to create a startup menu that will allow you&lt;br&gt;to choose from different versions of your operating systemfor example, one that you&apos;ll&lt;br&gt;use for tracking down startup problems, and another for starting in Safe Mode.&lt;br&gt;The boot.ini file is a plain-text file found in your root C:&amp;#92; folder. You might not be&lt;br&gt;able to see it because it&apos;s a system file, and if you can see it, you might not be able to&lt;br&gt;edit it because it&apos;s a read-only file. To make it visible, launch Windows Explorer,&lt;br&gt;choose ViewToolsFolder Options View. Select the Show Hidden Files and&lt;br&gt;Folders radio button. To make it a file you can edit, right-click it in Windows&lt;br&gt;Explorer, choose Properties, uncheck the Read-Only box, and click.&lt;br&gt;To edit the file, open it with a text editor such as Notepad. Following is a typical&lt;br&gt;boot.ini file for a PC that has two operating systems installed on itWindows XP Home&lt;br&gt;Edition and Windows 2000 Professional:&lt;br&gt;[boot loader]&lt;br&gt;timeout=30&lt;br&gt;default=multi(0)disk(0)rdisk(0)partition(1)&amp;#92;WINDOWS&lt;br&gt;[operating systems]&lt;br&gt;multi(0)disk(0)rdisk(0)partition(1)&amp;#92;WINDOWS=&quot;Microsoft Windows XP&lt;br&gt;Home Edition&quot; /fastdetect&lt;br&gt;multi(0)disk(0)rdisk(0)partition(2)&amp;#92;WINNT=&quot;Windows 2000 Professional&quot;&lt;br&gt;/fastdetect&lt;br&gt;As you can see, there are two sections in the file: [bootloader] and [operating&lt;br&gt;systems]. To customize your menu and startup options, edit the entries in each&lt;br&gt;section. Before editing boot.ini, make a copy of it and save it under a different name&lt;br&gt;(such as boot.ini.old) so that you can revert to it if you cause problems when you edit&lt;br&gt;the file.&lt;br&gt;Following are details about how to edit the entries in each section:&lt;br&gt;[boot loader]&lt;br&gt;This section controls how the boot process works; it specifies the default&lt;br&gt;operating system and how long a user has to make a selection from a boot&lt;br&gt;menu, if a boot menu has been enabled. The timeout value specifies, in&lt;br&gt;seconds, how long to display the menu and wait for a selection before loading&lt;br&gt;the default operating system. If you want a delay of 15 seconds, for example,&lt;br&gt;enter 15 for the value. Use a value of 0 if you want the default operating&lt;br&gt;system to boot immediately. If you want the menu to be displayed indefinitely&lt;br&gt;and stay on-screen until a selection is made, use a value of -1. The default&lt;br&gt;value specifies which entry in the [operating system] section is the default&lt;br&gt;operating system. (The default value is used even if there is only one&lt;br&gt;operating system in the [operating system] section.) To change the default&lt;br&gt;operating system, edit the setting, in our example, to&lt;br&gt;default=multi(0)disk(0)rdisk(0)partition(2)&amp;#92;WINNT.&lt;br&gt;So, in our example, if you change the menu settings so that the screen appears&lt;br&gt;for 10 seconds before loading the default operating system, and the default&lt;br&gt;operating system is Windows 2000 Professional, the section reads:&lt;br&gt;[boot loader]&lt;br&gt;timeout=10&lt;br&gt;default=multi(0)disk(0)rdisk(0)partition(2)&amp;#92;WINNT&lt;br&gt;[operating system]&lt;br&gt;This section specifies which operating systems are present on the computer,&lt;br&gt;and detailed options for each one. XP uses the Advanced RISC Computing&lt;br&gt;(ARC) path to specify the location of the boot partition. In our example, the&lt;br&gt;ARC path is:&lt;br&gt;multi(0)disk(0)rdisk(0)partition(1)&amp;#92;WINDOWS&lt;br&gt;The first parameter, which identifies the disk controller, should be 0. The&lt;br&gt;second parameter, the disk parameter, should also be 0. The rdisk parameter&lt;br&gt;specifies the disk number on the controller that has the boot partition. The&lt;br&gt;numbers start at 0. So, if you have three hard disks installed and the second&lt;br&gt;hard disk has the boot partition, the setting is rdisk(1). The partition&lt;br&gt;parameter identifies the partition number of the boot partition. Partitions start&lt;br&gt;with the number 1. The final section, which in our example is &amp;#92;WINDOWS,&lt;br&gt;specifies the path to the folder where the operating system is installed.&lt;br&gt;To the right of the ARC path in the example is =&quot;Microsoft Windows XP&lt;br&gt;Home Edition&quot; /fastdetect. The words within quotes are what will appear&lt;br&gt;on the boot menu next to the entry. To customize the text on the menu you can&lt;br&gt;change these words to whatever you wishfor example, &quot;My Favorite Operating&lt;br&gt;System.&quot; The /fastdetect switch disables the detection of serial and parallel&lt;br&gt;devices, which allows for faster booting. The detection of these devices isn&apos;t&lt;br&gt;normally required in XP because the functions are performed by Plug and Play&lt;br&gt;drivers, so as a general rule it&apos;s a good idea to use the /fastdetect switch.&lt;br&gt;The /fastdetect switch is only one of many switches that you can use in the&lt;br&gt;boot.ini file to customize how the operating system loads.&lt;br&gt;Switches for boot.ini&lt;br&gt;Switch What it does&lt;br&gt;/BASEVIDEO&lt;br&gt;Starts XP using the standard VGA driver. It&apos;s most useful if you&lt;br&gt;can&apos;t boot normally because of a video driver problem.&lt;br&gt;/BOOTLOG&lt;br&gt;Logs information about the boot process to the ntbtlogl.txt file in&lt;br&gt;the C:&amp;#92;Windows folder.&lt;br&gt;/CRASHDEBUG&lt;br&gt;Loads the debugger at boot, but the debugger remains inactive&lt;br&gt;unless a crash occurs.&lt;br&gt;/DEBUG Loads the debugger at boot and runs it.&lt;br&gt;/F*DETECT Disables the detection of serial and parallel devices.&lt;br&gt;MAXMEM:n Specifies the maximum amount of RAM that XP can use.&lt;br&gt;/NOGUIBOOT Does not allow the XP splash screen to load during boot.&lt;br&gt;/NODEBUG Stops the debugger from loading.&lt;br&gt;/SAFEBOOT:switch&lt;br&gt;Forces XP to boot into the safe mode specified by the switch&lt;br&gt;parameter, which can be minimal, network, or&lt;br&gt;minimal(alternate shell). In minimal safe mode, only the&lt;br&gt;minimum set of drivers necessary to start XP are loaded. In&lt;br&gt;network safe mode, networking drivers are loaded in addition to&lt;br&gt;the minimum set of drivers. In minimal(alternate shell) the&lt;br&gt;minimum set of drivers are loaded and XP boots into the&lt;br&gt;command prompt.&lt;br&gt;/SOS&lt;br&gt;Displays the name of each driver as it loads and gives&lt;br&gt;descriptions of what is occurring during the boot process. It also&lt;br&gt;offers other information, including the XP build number, the&lt;br&gt;service pack number, the number of processors on the system,&lt;br&gt;and the amount of installed memory.&lt;br&gt;When you&apos;ve finished editing the boot.ini file, save it. The next time you start your&lt;br&gt;computer, its settings will go into effect.&lt;br&gt;In our example, if we want the menu to appear for 45 seconds, the default operating&lt;br&gt;system to be Windows 2000, and the XP splash screen to be turned off when we&lt;br&gt;choose to load XP, the boot.ini file should look like this:&lt;br&gt;[boot loader]&lt;br&gt;timeout=45&lt;br&gt;default=multi(0)disk(0)rdisk(0)partition(2)&amp;#92;WINNT&lt;br&gt;[operating systems]&lt;br&gt;multi(0)disk(0)rdisk(0)partition(1)&amp;#92;WINDOWS=&quot;Microsoft Windows XP&lt;br&gt;Home&lt;br&gt;Edition&quot; /fastdetect /noguiboot&lt;br&gt;multi(0)disk(0)rdisk(0)partition(2)&amp;#92;WINNT=&quot;Windows 2000 Professional&quot;&lt;br&gt;/fastdetect&lt;br&gt;Bonus Tip: Create a Startup Menu Even&lt;br&gt;If You Have Only One OS&lt;br&gt;Even if you have only one operating system, you can create a boot menu that will let&lt;br&gt;you choose to load your operating system with different parameters.&lt;br&gt;multi(0)disk(0)rdisk(0)partition(1)&amp;#92;WINDOWS=&quot;Trace Problems XP Home Edition&quot;&lt;br&gt;/fastdetect /bootlog /sos&lt;br&gt;This entry creates a startup log and displays information about the drivers and other&lt;br&gt;operating system information as it loads.&lt;br&gt;For the version of the operating system that loads in Safe Mode but that still allows&lt;br&gt;networking, you could create this entry:&lt;br&gt;multi(0)disk(0)rdisk(0)partition(1)&amp;#92;WINDOWS=&quot;Safe Start XP Home Edition&quot; /&lt;br&gt;fastdetect /safeboot:network&lt;br&gt;The boot.ini file would look like this, assuming that you want the menu to display for&lt;br&gt;30 seconds and you want normal XP startup to be the default:&lt;br&gt;[boot loader]&lt;br&gt;timeout=30&lt;br&gt;default=multi(0)disk(0)rdisk(0)partition(1)&amp;#92;WINDOWS&lt;br&gt;[operating systems]&lt;br&gt;multi(0)disk(0)rdisk(0)partition(1)&amp;#92;WINDOWS=&quot;Microsoft Windows XP Home&lt;br&gt;Edition&quot; /fastdetect&lt;br&gt;multi(0)disk(0)rdisk(0)partition(1)&amp;#92;WINDOWS=&quot;Trace Problems XP Home Edition&quot;&lt;br&gt;/fastdetect /bootlog /sos&lt;br&gt;multi(0)disk(0)rdisk(0)partition(1)&amp;#92;WINDOWS=&quot;Safe Start XP Home Edition&quot; /&lt;br&gt;fastdetect /safeboot:network&lt;br&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 14pt; line-height: 21px; font-family: Calibri, sans-serif; &quot;&gt;40. Control Panel: Hide Unused Applets&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; line-height: 17px; font-family: Calibri, sans-serif; &quot;&gt;&lt;br&gt;with the Registry&lt;br&gt;To hide unused applets using the Registry, run the Registry Editorand go to&lt;br&gt;HKEY_LOCAL_MACHINE&amp;#92;SOFTWARE&amp;#92;Microsoft&amp;#92;Windows&amp;#92;CurrentVersion&amp;#92;Control&lt;br&gt;Panel&amp;#92;don&apos;t load.&lt;br&gt;The key, as its name implies, determines which Control Panel applet icons are not&lt;br&gt;loaded into the Control Panel. You&apos;ll still be able to run those applets from the&lt;br&gt;command line after you hide them; you just won&apos;t be able to see their icons in the&lt;br&gt;Control Panel.&lt;br&gt;To hide an applet, create a new String value whose name is the filename of the&lt;br&gt;applet you want to hide. For example, to hide the Mouse Control dialog box, the&lt;br&gt;String value would be main.cpl.&lt;br&gt;Control Panel applets and their filenames&lt;br&gt;Applet Filename&lt;br&gt;System Properties sysdm.cpl&lt;br&gt;Display Properties desk.cpl&lt;br&gt;Network Connections ncpa.cpl&lt;br&gt;Accessibility Options access.cpl&lt;br&gt;Control Panel applets and their filenames&lt;br&gt;Applet Filename&lt;br&gt;Add or Remove Programs appwiz.cpl&lt;br&gt;Add Hardware Wizard hdwwiz.cpl&lt;br&gt;Internet Properties Inetcpl.cpl&lt;br&gt;Region and Language Options intl.cpl&lt;br&gt;Game Controllers joy.cpl&lt;br&gt;Mouse Properties main.cpl&lt;br&gt;Sound and Audio Devices mmsys.cpl&lt;br&gt;User Accounts nusrmgr.cpl&lt;br&gt;ODBC Data Source Administrator odbccp32.cpl&lt;br&gt;Power Options Properties Powercfg.cpl&lt;br&gt;Phone and Modem Options telephon.cpl&lt;br&gt;Time and Date Properties timedate.cpl&lt;br&gt;Speech Properties sapi.cpl&lt;br&gt;Create separate String values for each applet you want to hide, then exit the&lt;br&gt;Registry. The applets will vanish from the Control Panel. To make a hidden applet&lt;br&gt;appear again, delete its string value from this same registry key.&lt;br&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 14pt; line-height: 21px; font-family: Calibri, sans-serif; &quot;&gt;41. Recategorize Control Panel Applets&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; line-height: 17px; font-family: Calibri, sans-serif; &quot;&gt;&lt;br&gt;You can also recategorize applets and put them in any category you want. For&lt;br&gt;example, by default, the Mouse Properties applet can be found in the Printers and&lt;br&gt;Other Hardware category, but if you prefer that it instead be found in Accessibility&lt;br&gt;Options, you can move it there.&lt;br&gt;To put an applet into any category you want, you need two pieces of information: the&lt;br&gt;filename of the applet (for example, main.cpl for the Mouse Properties dialog box),&lt;br&gt;and the Registry value for each Control Panel category (for example, 0x00000007 (7)&lt;br&gt;for Accessibility Options&lt;br&gt;Control Panel categories and their Registry value data&lt;br&gt;Control panel category Value data&lt;br&gt;Accessibility Options 0x00000007 (7)&lt;br&gt;Add or Remove Programs 0x00000008 (8)&lt;br&gt;Appearance and Themes 0x00000001 (1)&lt;br&gt;Date, Time, Language, and Regional Options 0x00000006 (6)&lt;br&gt;Network and Internet Connections 0x00000003 (3)&lt;br&gt;Other Control Panel Options 0x00000000 (0)&lt;br&gt;Performance and Maintenance 0x00000005 (5)&lt;br&gt;Printers and Other Hardware 0x00000002 (2)&lt;br&gt;Sounds, Speech, and Audio Devices 0x00000004 (4)&lt;br&gt;User Accounts 0x00000009 (9)&lt;br&gt;No category 0xffffffff&lt;br&gt;To recategorize a Control Panel applet, run the Registry Editor and go to&lt;br&gt;HKEY_LOCAL_MACHINE&amp;#92;SOFTWARE&amp;#92;Microsoft&amp;#92;Windows&amp;#92;CurrentVersion&amp;#92;Control&lt;br&gt;Panel&amp;#92;Extended Properties&amp;#92;{305CA226-D286-468e-B848-2B2E8E697B74}2. The&lt;br&gt;key {305CA226-D286-468e-B848-2B2E8E697B74}2 is the container that holds all&lt;br&gt;Control Panel categories.&lt;br&gt;Now find the Registry key of the applet you want to recategorize. The filename of the&lt;br&gt;applet will appear on the end of the key; for example,&lt;br&gt;%SystemRoot%&amp;#92;system32&amp;#92;main.cpl is the Mouse Properties dialog box. Change the&lt;br&gt;key&apos;s DWORD value to the value of the Control Panel category into which you want the&lt;br&gt;applet to appear. For example, if you want the applet to appear in the Performance&lt;br&gt;and Maintenance category, give it a value of 5. The value will then be displayed in the&lt;br&gt;Registry as 0x00000005(5).&lt;br&gt;When you&apos;re done, exit the Registry. The applet will now appear in the new category..&lt;br&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 14pt; line-height: 21px; font-family: Calibri, sans-serif; &quot;&gt;42. Is it a hack by any means…??&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; line-height: 17px; font-family: Calibri, sans-serif; &quot;&gt;&lt;br&gt;Defenitely Not! What we have discussed so far are not hacks by any means.&lt;br&gt;They are just ‘tweaks’. Tweaking is done to customize the system according to user&lt;br&gt;preferences by over riding the default settings. Tweaking will improve the system&lt;br&gt;performance by many folds, provided that it is done in the right way. Most of the&lt;br&gt;tweaks and tricks are performed in the following 3 areas.&lt;br&gt;1.Start Run Regedit&lt;br&gt;2. Start RunMsconfig&lt;br&gt;3. Start Rungpedit.msc&lt;br&gt;It is difficult for a newbie to understand the various keys and sub-keys in the registry&lt;br&gt;and a wrong move can have catastrophic effects. The second one is way too simple&lt;br&gt;and the options are limited. So I recommend the third area&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; line-height: 17px; font-family: Arial, sans-serif; &quot;&gt;☺&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; line-height: 17px; font-family: Calibri, sans-serif; &quot;&gt;. Group Policy Editor or&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; line-height: 17px; font-family: Calibri, sans-serif; &quot;&gt;&lt;br&gt;gpedit.msc is a nice place for the newbies to learn and try their own tricks. The main&lt;br&gt;advantage is its simplicity. Just click on the + signs to dive deep into it. Explanations&lt;br&gt;are given along with each entry. Read the explanation and decide on the settings that&lt;br&gt;needs to be set. Nothing much, you just need to enable or disable a setting. Isn’t it a&lt;br&gt;simple thing to do?? And trust me, it can even create wonders!! So go ahead and try it&lt;br&gt;now itself. Good luck.&lt;br&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 14pt; line-height: 21px; font-family: Calibri, sans-serif; &quot;&gt;43. What the heck is a hack then..??&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; line-height: 17px; font-family: Calibri, sans-serif; &quot;&gt;&lt;br&gt;Hacking is done to expose a security hole in a system. Hacking is done to expose the&lt;br&gt;holes in the armor so that system designers can patch it in their next release. Hacking&lt;br&gt;if done with a malicious mind, then its cracking! Crackers are basically hackers with a&lt;br&gt;malicious mind. They exploit the security holes to gain unauthorized access to a&lt;br&gt;system. They often steal data like the credit card information from the victim’s&lt;br&gt;computer and read their mails. Some crackers go beyond and often engage in&lt;br&gt;destructive actions like creating viruses and worms. So the next time when you say&lt;br&gt;hacker/cracker, understand what they are. Hackers don’t like being greeted as&lt;br&gt;crackers for the same reason that hackers are friendly and nice people.&lt;br&gt;I’m giving you two examples below to understand how hacking differs from&lt;br&gt;tweaking:&lt;br&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 14pt; line-height: 21px; font-family: Calibri, sans-serif; &quot;&gt;Eg1: Hack the XP Admin Passwords&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; line-height: 17px; font-family: Calibri, sans-serif; &quot;&gt;&lt;br&gt;When you or anyone installs Windows XP for the first time your asked to put in your&lt;br&gt;username and up to five others. Now, unknownst to a lot of other people this is the&lt;br&gt;only place in Windows XP that you can password the default Administrator&lt;br&gt;Diagnostic Account. This means that to by pass most administrators accounts on&lt;br&gt;Windows XP all you have to do is boot to safe mode by pressing F8 during boot up&lt;br&gt;and choosing it. Log into the Administrator Account and create your own or change&lt;br&gt;the password on the current Account. This only works if the user on setup specified a&lt;br&gt;password for the Administrator Account.&lt;br&gt;&lt;/span&gt;&lt;span style=&quot;font-size: 14pt; line-height: 21px; font-family: Calibri, sans-serif; &quot;&gt;Eg2:Hack XP Password&lt;/span&gt;&lt;span style=&quot;font-size: 11pt; line-height: 17px; font-family: Calibri, sans-serif; &quot;&gt;&lt;br&gt;If you log into a limited account on your target machine and open up a dos prompt&lt;br&gt;then enter this set of commands Exactly. Forget about the explanations as it is for the&lt;br&gt;sake of clarity purpose&lt;br&gt;Command Expalnation&lt;br&gt;cd&amp;#92; *drops to root&lt;br&gt;cd&amp;#92;windows&amp;#92;system32 *directs to the system32 dir&lt;br&gt;mkdir temphack *creates the folder temphack&lt;br&gt;copy logon.scr temphack&amp;#92;logon.scr *backsup logon.scr&lt;br&gt;copy cmd.exe temphack&amp;#92;cmd.exe *backsup cmd.exe&lt;br&gt;del logon.scr *deletes original logon.scr&lt;br&gt;rename cmd.exe logon.scr *renames cmd.exe to logon.scr&lt;br&gt;exit *quits dos&lt;br&gt;Now what you have just done is told the computer to backup the command program&lt;br&gt;and the screen saver file, then edits the settings so when the machine boots the screen&lt;br&gt;saver you will get an unprotected dos prompt with out logging into XP. Once this&lt;br&gt;happens if you enter this command minus the quotes &quot;net user &lt;admin account name&lt;br&gt;here&amp;gt; password&quot;&lt;br&gt;If the Administrator Account is called Frank and you want the password blah enter&lt;br&gt;this &quot;net user Frank blah&quot; and this changes the password on franks machine to blah&lt;br&gt;and you should be in.&lt;br&gt;&lt;/span&gt;</content:encoded>
			<link>https://mystudies.ucoz.com/news/win_xp_5/2012-01-24-7</link>
			<dc:creator>mani</dc:creator>
			<guid>https://mystudies.ucoz.com/news/win_xp_5/2012-01-24-7</guid>
			<pubDate>Tue, 24 Jan 2012 09:56:07 GMT</pubDate>
		</item>
		<item>
			<title>Win XP tips 4</title>
			<description>&lt;span style=&quot;font-size:14.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;31.
Internet Explorer As Fast As FireFox:&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;
line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
Open registry editor by going to Start then Run and entering regedit. Once in
registry,&lt;br&gt;
navigateto key HKEY_...</description>
			<content:encoded>&lt;span style=&quot;font-size:14.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;31.
Internet Explorer As Fast As FireFox:&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;
line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
Open registry editor by going to Start then Run and entering regedit. Once in
registry,&lt;br&gt;
navigateto key HKEY_CURRENT_USER&amp;#92;Software&amp;#92;microsoft&amp;#92;Windows&amp;#92; Current&lt;br&gt;
Version &amp;#92;InternetSettings. Right click on the right windows &amp;gt; New &amp;gt;
DWORD. Type&lt;br&gt;
MaxConnectionsPerServer &amp;gt; You can set value (the more higher the no, the
more&lt;br&gt;
good speed eg:99). Create another DWORD &amp;gt;type MaxConnectionsPer1_0Server.&lt;br&gt;
Then put a high value as mentioned above. Restart I.E and you are done.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;32.
Increasing Band-Width By 20%&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:
115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
Microsoft reserves 20% of your available bandwidth for their own purposes like&lt;br&gt;
Windows Updates and interrogating your PC etc. Click Start then Run and type&lt;br&gt;
&quot;gpedit.msc&quot; without quotes. This opens the group policy editor. Then
go to: Local&lt;br&gt;
Computer Policy Computer ConfigurationAdministrative TemplatesNetwork&lt;br&gt;
QOS Packet Scheduler and then to LimitReservableBandwidth. Double click on&lt;br&gt;
Limit Reservable bandwidth. It will say it is not configured, but the truth is
under the&lt;br&gt;
&apos;Explain&apos; tab i.e.&quot;By default, the Packet Scheduler limits the system to
20 percent of&lt;br&gt;
the bandwidth of a connection, but you can use this setting to override the
default.&quot; So&lt;br&gt;
the trick is to ENABLE reservable bandwidth, then set it to ZERO. This will
allow the&lt;br&gt;
system to reserve nothing, rather than the default 20%.It works on Win 2000 as
well.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;33.
Disabling Drives in My Computer&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:
115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
To disable the display of local or networked drives when you click My Computer
go&lt;br&gt;
to HKEY_CURRENT_USER&amp;#92;Software&amp;#92;Microsoft&amp;#92;Windows&amp;#92;CurrentVersion &amp;#92;Policies&lt;br&gt;
&amp;#92;Explorer Now in the right pane create a new DWORD item and name it NoDrives.&lt;br&gt;
Now modify it&apos;s value and set it to 3FFFFFF (Hexadecimal). Now press F5 to
refresh.&lt;br&gt;
When you click on My Computer, no drives will be shown. To enable display of&lt;br&gt;
drives in My Computer, simply delete this DWORD item.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;34.Shutdown
and Reboot in Style &lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;
font-family:&quot;Arial&quot;,&quot;sans-serif&quot;;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;☺&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;
line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
Turning off or rebooting XP involves a several-step process: click the Start
menu,&lt;br&gt;
choose Shut Down, and then select Shut Down or Restart. If you want, however,
you&lt;br&gt;
can exit or reboot much more quickly, by creating a shortcut that enables
one-click&lt;br&gt;
shutdowns. You can also use the shortcut to customize the shutdown or reboot
for&lt;br&gt;
example, by displaying a specific message or automatically shutting down any&lt;br&gt;
programs that are running.&lt;br&gt;
First, create a shortcut on your desktop by right-clicking the desktop,
choosing New,&lt;br&gt;
and then choosing Shortcut. The Create Shortcut Wizard appears. In the box
asking&lt;br&gt;
for the location of the shortcut, type shutdown. After you create the shortcut,
doubleclicking&lt;br&gt;
it will shut down your PC.&lt;br&gt;
But you can do much more with a shutdown shortcut than merely shut down your
PC.&lt;br&gt;
You can add any combination of several switches to do extra duty, like this:&lt;br&gt;
shutdown -r -t 01 -c &quot;Rebooting your PC&quot;&lt;br&gt;
Double-clicking that shortcut will reboot your PC after a one-second delay and&lt;br&gt;
display the message &quot;Rebooting your PC.&quot; The shutdown command
includes a variety&lt;br&gt;
of switches you can use to customize it.&lt;br&gt;
Switches you can use with shutdown&lt;br&gt;
Switch What it does&lt;br&gt;
-s Shuts down the PC.&lt;br&gt;
-l Logs off the current user.&lt;br&gt;
-t nn&lt;br&gt;
Indicates the duration of delay, in seconds, before performing the&lt;br&gt;
action.&lt;br&gt;
Switches you can use with shutdown&lt;br&gt;
Switch What it does&lt;br&gt;
-c&lt;br&gt;
&quot;messagetext&quot;&lt;br&gt;
Displays a message in the System Shutdown window. A maximum&lt;br&gt;
of 127 characters can be used. The message must be enclosed in&lt;br&gt;
quotation marks.&lt;br&gt;
-f Forces any running applications to shut down.&lt;br&gt;
-r Reboots the PC.&lt;br&gt;
Here are the ones I use for shutdowns and restarts:&lt;br&gt;
Shutdown -s -t 03 -c &quot;See you later!&quot;&lt;br&gt;
shutdown -r -t 03 -c &quot;You can&apos;t get rid of me that quickly!&quot;&lt;br&gt;
You always have to turn from the CPU after running this command. (Same with AT&lt;br&gt;
and ATX powered machines.) If you want to turn down power of ATX machine&lt;br&gt;
automatically, run the following commnd &quot;c:&amp;#92;windows&amp;#92;system32&amp;#92;tsshutdn.exe
00 /&lt;br&gt;
POWERDOWN / DELAY:00&quot; This is used to turn off a server. Even though you&lt;br&gt;
don&apos;t have networked computers attached to your computer, this works.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;35.
Change Internet Explorer&apos;s Caption&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;
line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
Open the registry editor and go to HKEY_LOCAL_MACHINE&amp;#92;SOFTWARE&lt;br&gt;
&amp;#92;Microsoft &amp;#92;Internet Explorer&amp;#92;Main. In the right pane create a new String Value
names&lt;br&gt;
Window Title (Note the space between Window and Title). Right click on this
newly&lt;br&gt;
created String Value and select Modify. Type in the new caption you want to be&lt;br&gt;
displayed. Restart for the settings to take place.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;36.
Play around registry- More Options&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;
line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
Launch Regedit and go to the following Registry Key: HKEY_CURRENT_USER&lt;br&gt;
/Software/Microsoft/CurrentVersion/Policies Under this key, there will
definitely be a&lt;br&gt;
key named explorer. Now under this explorer key we can create new DWORD values&lt;br&gt;
and modify it&apos;s value to 1 in order to impose the restriction. If you want to
remove the&lt;br&gt;
Restriction, then you can simply delete the respective DWORD values or instead&lt;br&gt;
change their values to 0. The following is a list of DWORD values that can be
created&lt;br&gt;
under the Explorer Key:&lt;br&gt;
NoDeletePrinter: Disables Deletion of already installed Printers&lt;br&gt;
NoAddPrinter: Disables Addition of new Printers&lt;br&gt;
NoRun : Disables or hides the Run Command&lt;br&gt;
NoSetFolders: Removes Folders from the Settings option on Start Menu (Control&lt;br&gt;
Panel, Printers, Taskbar)&lt;br&gt;
NoSetTaskbar: Removes Taskbar system folder from the Settings option on Start&lt;br&gt;
Menu&lt;br&gt;
NoFind: Removes the Find Tool (Start &amp;gt;Find)&lt;br&gt;
NoDrives: Hides and does not display any Drives in My Computer&lt;br&gt;
NoNetHood: Hides or removes the Network Neighborhood icon from the desktop&lt;br&gt;
NoDesktop: Hides all items including, file, folders and system folders from the&lt;br&gt;
Desktop&lt;br&gt;
NoClose: Disables Shutdown and prevents the user from normally shutting down&lt;br&gt;
Windows.&lt;br&gt;
NoSaveSettings: Means to say, &apos;Don&apos;t save settings on exit&apos;&lt;br&gt;
DisableRegistryTools: Disable Registry Editing Tools (If you disable this
option, the&lt;br&gt;
Windows Registry Editor(regedit.exe) too will not work.)&lt;br&gt;
NoRecentDocsHistory: Removes Recent Document system folder from the Start&lt;br&gt;
Menu (IE 4 and above)&lt;br&gt;
ClearRecentDocsOnExit: Clears the Recent Documents system folder on Exit.&lt;br&gt;
Nolnternetlcon: Removes the Internet (system folder) icon from the Desktop&lt;br&gt;
Now create a new key and name it System. Under this new key, system we can
create&lt;br&gt;
the following new DWORD values&lt;br&gt;
NODispCPL: Hides Control Panel&lt;br&gt;
NoDispBackgroundPage: Hides Background page.&lt;br&gt;
NoDispScrsavPage: Hides Screen Saver Page&lt;br&gt;
NoDispAppearancePage: Hides Appearance Page&lt;br&gt;
NoDispSettingsPage: Hides Settings Page&lt;br&gt;
NoSecCPL: Disables Password Control Panel&lt;br&gt;
NoPwdPage: Hides Password Change Page&lt;br&gt;
NoAdminPaqe: Hides Remote Administration Page&lt;br&gt;
NoProfilePage: Hides User Profiles Page&lt;br&gt;
NoDevMgrPage: Hides Device Manager Page&lt;br&gt;
NoConfigPage: Hides Hardware Profiles Page&lt;br&gt;
NoFileSysPage: Hides File System Button&lt;br&gt;
NoVirtMemPage: Hides Virtual Memory Button&lt;br&gt;
Similarly, if we create a new subkey named Network, we can add the following&lt;br&gt;
DWORD values under it:&lt;br&gt;
NoNetSetupSecurityPage: Hides Network Security Page&lt;br&gt;
NoNelSetup: Hides or disables the Network option in the Control Panel&lt;br&gt;
NoNetSetupIDPage: Hides the Identification Page&lt;br&gt;
NoNetSetupSecurityPage: Hides the Access Control Page&lt;br&gt;
NoFileSharingControl: Disables File Sharing Controls&lt;br&gt;
NoPrintSharing: Disables Print Sharing Controls.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;37.
Automatically Turn On Num Lock,&lt;br&gt;
Scroll Lock, and Caps Lock&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:
115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
When you start your PC, Num Lock, Scroll Lock, and Caps Lock don&apos;t
automatically&lt;br&gt;
toggle on. You can automatically turn each of them on or off whenever your PC&lt;br&gt;
starts, for all accounts on the PC. As a practical matter, most people probably
want to&lt;br&gt;
have only Num Lock automatically turned on, but this Registry hack allows you
to&lt;br&gt;
force any combination of keys on or off. Run the Registry Editor [Hack #83] and
go&lt;br&gt;
to HKEY_USERS&amp;#92;.Default&amp;#92;Control Panel&amp;#92;Keyboard. Find the String value&lt;br&gt;
InitialKeyboardIndicators. By default, it is set to 0, which means that Num
Lock,&lt;br&gt;
Scroll Lock, and Caps Lock are all turned off. Set it to any of the following
values,&lt;br&gt;
depending on the combination of keys you want turned on or off:&lt;br&gt;
0-Turns off Num Lock, Caps Lock, and Scroll Lock&lt;br&gt;
1-Turns on Caps Lock&lt;br&gt;
2-Turns on Num Lock&lt;br&gt;
3-Turns on Caps Lock and Num Lock&lt;br&gt;
4-Turns on Scroll Lock&lt;br&gt;
5-Turns on Caps Lock and Scroll Lock&lt;br&gt;
6-Turns on Num Lock and Scroll Lock&lt;br&gt;
7-Turns on Caps Lock, Num Lock, and Scroll Lock&lt;br&gt;
Exit the Registry. When you restart, the new setting will take effect.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;38.
Control User Logins by Hacking the&lt;br&gt;
Registry&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
To control logon options, run the Registry Editor [Hack #83] and go to the&lt;br&gt;
HKEY_LOCAL_MACHINE&amp;#92;SOFTWARE&amp;#92;Microsoft&amp;#92;Windows NT&amp;#92;CurrentVersion&lt;br&gt;
Winlogon subkey, which contains a variety of logon settings (as well as some
settings&lt;br&gt;
not having to do directly with logons). Following are the most important values
you&lt;br&gt;
can edit to customize logons.&lt;br&gt;
DontDisplayLastUserName&lt;br&gt;
This setting lets you control how the system logon dialog box is used. If this
String&lt;br&gt;
value is present and set to 1, all users will have to enter both their username
and&lt;br&gt;
password to log on. If the value is 0, the name of the last user to log on will
be&lt;br&gt;
displayed in the system logon dialog box.&lt;br&gt;
DefaultUserName&lt;br&gt;
This String value contains the name of the last user who logged on. It will be&lt;br&gt;
displayed only if the DontDisplayLastUserName value is not present or is set to
0.&lt;br&gt;
LegalNoticeCaption and LegalNoticeText// Already discussed&lt;br&gt;
PasswordExpiryWarning&lt;br&gt;
This DWORD value lets you display a warning message to users a certain number
of&lt;br&gt;
days before their passwords are set to expire. It lets you determine how many
days&lt;br&gt;
ahead of time the warning should be issued. To edit the value, click the
decimal&lt;br&gt;
button and enter the number of days.&lt;br&gt;
ShutdownWithoutLogon&lt;br&gt;
This String value enables or disables a button on the XP logon dialog box that
lets the&lt;br&gt;
system shut down. A value of 1 enables the button (so that it is shown); a
value of 0&lt;br&gt;
disables the button (so that it is not shown).&lt;br&gt;
Shell&lt;br&gt;
It determines the shellthe user interfacethat will be used by XP. The default
is&lt;br&gt;
Explorer.exe, but it can be another shell as wellfor example, the Program
Manager&lt;br&gt;
from older Windows versions. Type in the name of the program; for example,&lt;br&gt;
Progman.exe for the Program Manager, or Taskman.exe for the Task Manager.&lt;br&gt;
AutoRestartShell&lt;br&gt;
This DWORD value doesn&apos;t have to do with logons either, but it&apos;s another good
one to&lt;br&gt;
know. It sets whether to automatically restart the Windows shell if the shell
crashes. A&lt;br&gt;
value of 1 automatically restarts the shell. A value of 0 tells XP not to
restart the shell,&lt;br&gt;
forcing you to log off and then back on again to restart it.&lt;br&gt;
&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br&gt;
&lt;!--[endif]--&gt;&lt;/span&gt;
&lt;!--[endif]--&gt;
&lt;!--[endif]--&gt;
&lt;!--[endif]--&gt;</content:encoded>
			<link>https://mystudies.ucoz.com/news/win_xp_tips_4/2012-01-24-6</link>
			<dc:creator>mani</dc:creator>
			<guid>https://mystudies.ucoz.com/news/win_xp_tips_4/2012-01-24-6</guid>
			<pubDate>Tue, 24 Jan 2012 09:54:04 GMT</pubDate>
		</item>
		<item>
			<title>Win XP tips 3</title>
			<description>&lt;span style=&quot;font-size:14.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;19.
Rework System Restore&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
The amount of space Windows uses for restore points is a little more
complicated than&lt;br&gt;
a single percentage value. The Registry...</description>
			<content:encoded>&lt;span style=&quot;font-size:14.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;19.
Rework System Restore&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
The amount of space Windows uses for restore points is a little more
complicated than&lt;br&gt;
a single percentage value. The Registry includes its own setting for the
maximum disk&lt;br&gt;
space given to System Restore, and Windows uses whichever amount is larger: the&lt;br&gt;
percentage you specify via the System Properties dialog box, or the Registry&apos;s&lt;br&gt;
maximum value. Any disk space you free up via System Properties won&apos;t instantly
be&lt;br&gt;
used by System Restore; it will be available until a new restore point requires
more&lt;br&gt;
space than the amount allotted via the percentage value. The percentage and max&lt;br&gt;
values tell Windows only when to stop making new restore points.&lt;br&gt;
To lock in your System Restore allocation, open the Registry Editor and
navigate to&lt;br&gt;
HKEY_LOCAL_MACHINE&amp;#92;SOFTWARE&amp;#92;Microsoft&amp;#92;WindowsNT&amp;#92;CurrentVersion&amp;#92;S&lt;br&gt;
ystemRestore. Select the SystemRestore icon in the left pane to see several
icons&lt;br&gt;
appear in the right pane. Do not experiment with just any of these icons! While
you&lt;br&gt;
can safely change the value of some of them, Microsoft warns that others should
not&lt;br&gt;
be altered under any circumstances. Fortunately, you can safely edit the values
for the&lt;br&gt;
DiskPercent and DSMax icons, which control System Restore&apos;s disk-space
allotments.&lt;br&gt;
To change the maximum amount of disk space System Restore will use (providing
it&apos;s&lt;br&gt;
larger than the percentage value), double-click the DSMax icon. In the Edit
DWORD&lt;br&gt;
Value dialog box, click Decimal so you can see the specified number of
megabytes in&lt;br&gt;
the &apos;Value data&apos; box (the default on most systems is &apos;400&apos;). Change this to the
desired&lt;br&gt;
amount, and click OK.&lt;br&gt;
While you&apos;re there, you can also safely edit the DSMin value, which specifies
the&lt;br&gt;
minimum space System Restore needs to work at all. Normally, if free space on
your&lt;br&gt;
Windows drive gets too low, System Restore shuts down and makes no restore
points&lt;br&gt;
until you have at least 200MB of free space. Setting this value determines the
amount&lt;br&gt;
of disk space at which System Restore will wake up and attempt to start saving
restore&lt;br&gt;
points again. However, just because System Restore will try to do so, it won&apos;t&lt;br&gt;
necessarily succeed if the available space is too small. Unfortunately, we know
of no&lt;br&gt;
method to determine how much space a single restore point will require, so
setting&lt;br&gt;
this amount too low could render the feature useless. Still, you can fit a lot
of system&lt;br&gt;
files in 100MB of disk space.&lt;br&gt;
To change this value, double-click the DSMin icon, click Decimal, and enter
your&lt;br&gt;
desired amount of free disk space (in megabytes) in the &apos;Value data&apos; box. Click
OK.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;20.
Pop Up a Message at Start Up&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:
115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
To pop a banner which can contain any message you want to display just before a
user&lt;br&gt;
is going to log on, go to the key:&lt;br&gt;
HKEY_LOCAL_MACHINE&amp;#92;SOFTWARE&amp;#92;Microsoft&amp;#92;Windows&amp;#92;CurrentVersion&amp;#92;Polic&lt;br&gt;
ies&amp;#92;System.&lt;br&gt;
Now create a new string Value in the right pane named LegalNoticeCaption and
enter&lt;br&gt;
the value that you want to see in the Menu Bar. Now create yet another new
string&lt;br&gt;
value and name it LegalNoticeText. Modify it and insert the message you want to&lt;br&gt;
display each time Windows boots. This can be effectively used to display the&lt;br&gt;
company&apos;s private policy each time the user logs on to his NT box.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;21.Hide
All Icons in the Notification Area&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;
line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
The system tray, also called the notification area, is the small area on the
far right side&lt;br&gt;
of the taskbar, in which utilities and programs that run in the background, such
as&lt;br&gt;
antivirus software, show their icons. I don’t find it a particularly
intelligent use of&lt;br&gt;
screen real estate, so I prefer not to see the icons there.&lt;br&gt;
To hide them, run the Registry Editor and go to the following key:&lt;br&gt;
HKEY_CURRENT_USER/Software/Microsoft/Windows/CurrentVersion/Policies/Ex&lt;br&gt;
plorer. Among other things, this key controls the display of objects throughout
XP.&lt;br&gt;
Create a new DWORD called NoTrayItemsDisplay. Assign it a value of 1. (A value&lt;br&gt;
of 0 will keep the icons displayed.) Exit the Registry and reboot.&lt;br&gt;
While you’re at the HKEY_CURRENT_USER/Software/Microsoft/Windows/&lt;br&gt;
CurrentVersion/Policies/Explorer key, you can also delete the My Recent
Documents&lt;br&gt;
icon on the Start menu. Create a new DWORD called NoRecentDocsMenu. Assign it&lt;br&gt;
a value of 1. (A value of 0 will keep the icon displayed.) Exit the Registry
and reboot.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;22.
Turn Off System Beeps&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
Go to HKEY_CURRENT_USER&amp;#92;Control Panel&amp;#92;Sound, and find the Beep and&lt;br&gt;
ExtendedSounds String values. Set each value to No. Exit the Registry and
reboot.&lt;br&gt;
The beeps will no longer sound. Hey, your XP is no longer noisy!!&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;23.
Add Specific Folders to Open Dialog&lt;br&gt;
Box (XP Home only)&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
When you use certain Windows applications (such as Notepad) to open a file, on
the&lt;br&gt;
left side of the Open dialog box are a group of icons and folders (such as My&lt;br&gt;
Documents, My Recent Documents, Desktop, My Computer, and My Network) to&lt;br&gt;
which you can navigate to open files. A registry hack will let you put just the
folders&lt;br&gt;
of your choosing on the left side of the Open dialog box. Note that when you do
this,&lt;br&gt;
it will affect XP applications such as Notepad and Paint that use the Open and
Save&lt;br&gt;
common dialog boxes. However, it won’t affect Microsoft Office applications and&lt;br&gt;
other applications that don’t use the common dialog boxes. Run the Registry
Editor&lt;br&gt;
and go to HKEY_CURRENT_USER&amp;#92;Software&amp;#92;Microsoft&amp;#92;Windows&amp;#92;CurrentVersion&lt;br&gt;
&amp;#92;Policies&amp;#92;comdlg32. This is the key that determines how common dialog boxes are&lt;br&gt;
handled.&lt;br&gt;
You’re going to create a subkey that will create a customized location for the
folders,&lt;br&gt;
and then give that subkey a series of values, each of which will define a
folder&lt;br&gt;
location.To start, create a new subkey underneath EY_CURRENT_USER&lt;br&gt;
&amp;#92;Software&amp;#92;Microsoft&amp;#92;Windows&amp;#92;CurrentVersion&amp;#92; Policies&amp;#92;comdlg32 called Placesbar,&lt;br&gt;
and create a String value for it named Place0. Give Place0 a value of the
topmost&lt;br&gt;
folder that you want to appear on the Open dialog box, for example,
C:&amp;#92;Projects. Next,&lt;br&gt;
create another String value for Placesbar called Place1. Give it a value of the
second&lt;br&gt;
folder that you want to appear on the Open dialog box. You can put up to five
icons&lt;br&gt;
on the Open dialog box, so create new String values up to Place4 and give them&lt;br&gt;
values as outlined in the previous steps. When you’re done, exit the Registry.
You&lt;br&gt;
won’t have to reboot for the changes to take effect. If you do not want any
folders to&lt;br&gt;
appear in common Open dialog boxes, you can do that as well. In&lt;br&gt;
HKEY_CURRENT_USER&amp;#92;Software&amp;#92;Microsoft&amp;#92;Windows&amp;#92;CurrentVersion&amp;#92; Policies&amp;#92;&lt;br&gt;
comdlg32, create a new DWORD value called NoPlacesBar and give it a value of 1.&lt;br&gt;
Exit the Registry. If you want the folders back, either delete NoPlacesBar or
give it a&lt;br&gt;
value of 0.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;24.
Place Windows Kernel into RAM&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:
115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
It’s a given that anything that runs in RAM will be faster than an item that
has to&lt;br&gt;
access the hard drive and virtual memory. Rather than have the kernel that is
the&lt;br&gt;
foundation of XP using the slower Paging Executive functions, use this hack to
create&lt;br&gt;
and set the DisablePagingExecutive DWORD to a value of 1. Perform this hack&lt;br&gt;
only if the system has 256MB or more of installed RAM! Edit the Registry key&lt;br&gt;
HKEY_LOCAL_MACHINE&amp;#92;SYSTEM&amp;#92;CurrentControlSet&amp;#92;Control&amp;#92;Session Manager&amp;#92;&lt;br&gt;
Memory Management&amp;#92;DisablePagingExecutive to 1 to disable paging and have the&lt;br&gt;
kernel run in RAM (set the value to 0 to undo this hack). Exit the Registry and
reboot.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;25.
Alter Prefetch Parameters&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
Pre-fetching (the reading of system boot files into a cache for faster loading)
is a&lt;br&gt;
commonly overlooked component that can have a significant impact on system boot&lt;br&gt;
time. To see which files are gathered using each setting, clear the prefetch
cache&lt;br&gt;
located at C:&amp;#92;Windows&amp;#92;Prefetch and then enable one of the settings listed in
this hack.&lt;br&gt;
Clear the cache and repeat for each setting. Set the Registry key&lt;br&gt;
HKEY_LOCAL_MACHINE&amp;#92;SYSTEM&amp;#92;CurrentControlSet&amp;#92;Control&amp;#92;Session Manager&amp;#92;&lt;br&gt;
Memory Management&amp;#92;PrefetchParameters&amp;#92;EnablePrefetcher to 0 to disable&lt;br&gt;
prefetching, 1 to prefetch application launch files, 2 to prefetch boot files,
or 3 to&lt;br&gt;
prefetch as many files as possible.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;26.
Disable 8.3 Name Creation in NTFS&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;
line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
Files that use the 8.3 naming convention can degrade NTFS drive performance.&lt;br&gt;
Unless you have a good reason for keeping the 8.3 naming convention intact
(such as&lt;br&gt;
if you’re using 16-bit programs), a performance gain can be achieved by
disabling it.&lt;br&gt;
Set the Registry DWORD key HKEY_LOCAL_MACHINE&amp;#92; SYSTEM&amp;#92;&lt;br&gt;
CurrentControlSet&amp;#92;Control&amp;#92; FileSystem&amp;#92;NtfsDisable8dot3NameCreation to 1. Exit
the&lt;br&gt;
Registry and reboot.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;27.
Cleaning Recent Docs Menu and the&lt;br&gt;
RUN&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
The Recent Docs menu can be easily disabled by editing the Registry. To do this
go to&lt;br&gt;
the following Key: HKEY_CURRENT_USER&amp;#92;Software&amp;#92;Microsoft&amp;#92; Windows&amp;#92;&lt;br&gt;
CurrentVersion&amp;#92;Policies&amp;#92;Explorer. Now in the right pane, create a new DWORD
value&lt;br&gt;
by the name: NoRecentDocsMenu and set it&apos;s value to 1. Restart Explorer to save
the&lt;br&gt;
changes. You can also clear the RUN MRU history. All the listings are stored in
the&lt;br&gt;
key:HKEY_USERS&amp;#92;.Default&amp;#92;Software&amp;#92;Microsoft&amp;#92;Windows&amp;#92;CurrentVersion&amp;#92; Explorer&lt;br&gt;
&amp;#92; RunMRU. You can delete individual listings or the entire listing. To delete
History&lt;br&gt;
of Find listings go to: HKEY_CURRENT_USER&amp;#92;Software&amp;#92; Microsoft &amp;#92; Windows&lt;br&gt;
&amp;#92;CurrentVersion&amp;#92;Explorer&amp;#92;Doc Find Spec MRUand delete.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;28.
DMA Mode for CD-ROMs&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
Like Windows 2000, Windows XP still fails to set the DMA mode correctly for the&lt;br&gt;
IDE device designated as the slaves on the primary IDE and secondary IDE
channels.&lt;br&gt;
Most CD- ROMS are capable of supporting DMA mode, but the default in XP is
still&lt;br&gt;
PIO. Setting it to DMA won&apos;t make your CD-ROM faster, but it will consume less&lt;br&gt;
CPU cycles. Here&apos;s how: Open the Device Manager. One way to do that is to right&lt;br&gt;
click on &quot;My Computer&quot;, select the Hardware tab, and Select Device
Manager.&lt;br&gt;
Expand &quot;IDE ATA/ATAPI Controllers&quot; and double-click on &quot;Primary
IDE Channel&quot;&lt;br&gt;
.Under the &quot;Advanced Settings&quot; tab, check the &quot;Device 1&quot;
setting. More than likely,&lt;br&gt;
your current transfer mode is set to PIO. Set it to &quot;DMA if
available&quot;. Repeat the step&lt;br&gt;
for the &quot;Secondary IDE Channel&quot; if you have devices attached to it.
Reboot.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;29.
Speed up IE Start Up&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
This tweak tells Internet Explorer to simply &apos;run&apos;, without loading any
webpages. If&lt;br&gt;
you use a &apos;blank&apos; page, that is still a page, and slows access. Notice the
&apos;about:blank&apos; in&lt;br&gt;
the address bar. The blank html page must still be loaded. To load IE with
&apos;nothing&apos;&lt;br&gt;
[nothing is different than blank]:&lt;br&gt;
1. Right-click on any shortcut you have to IE&lt;br&gt;
[You should create a shortcut out of your desktop IE icon, and delete the
original&lt;br&gt;
icon]&lt;br&gt;
2. Click Properties&lt;br&gt;
3. Add -nohome [with a space before the dash] after the endquotes in the Target
field.&lt;br&gt;
4. Click OK&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;30.Delete
INDEX.DAT (Faster Browsing)&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:
115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
First of all open up the command prompt. For that go Start&amp;nbsp; Run cmd. Now press&lt;br&gt;
CTRL + ALT + DELETE to bring up the task manager. In the task manager, go to&lt;br&gt;
processes and click on explorer.exe. End the &quot;explorer.exe” task. All the
windows&lt;br&gt;
will be closed down. Don’t panic. You can still see the command prompt. In the&lt;br&gt;
command prompt type the following command exactly as it is:&lt;br&gt;
Del &quot;C:&amp;#92;Documents and Settings&amp;#92;&lt;your_log_in_name&amp;gt;&amp;#92;Local
Settings&amp;#92;Temporary&lt;br&gt;
Internet Files&amp;#92;Content.IE5&amp;#92;index.dat&quot;&lt;br&gt;
Note &lt;your_log_in_name&amp;gt; is the name that you use to log in to your
windows. Some&lt;br&gt;
log in as &quot;administrator” while some with another name eg: Sandeep. Whatever it
is,&lt;br&gt;
type that name. This will also help in fixing all the issues related to browser&lt;br&gt;
performance, especially the ones that cause browser to hang frequently.&lt;br&gt;
&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br&gt;
&lt;!--[endif]--&gt;&lt;/span&gt;
&lt;!--[endif]--&gt;
&lt;!--[endif]--&gt;</content:encoded>
			<link>https://mystudies.ucoz.com/news/win_xp_tips_3/2012-01-24-5</link>
			<dc:creator>mani</dc:creator>
			<guid>https://mystudies.ucoz.com/news/win_xp_tips_3/2012-01-24-5</guid>
			<pubDate>Tue, 24 Jan 2012 09:53:02 GMT</pubDate>
		</item>
		<item>
			<title>Win XP tips 2</title>
			<description>&lt;span style=&quot;font-size:14.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;7.
Stopping Remote Assistance and&lt;br&gt;
Remote Desktop Sharing&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
In Windows XP Professional, you have two remote networking features called&lt;br&gt;
Remote Assistan...</description>
			<content:encoded>&lt;span style=&quot;font-size:14.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;7.
Stopping Remote Assistance and&lt;br&gt;
Remote Desktop Sharing&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
In Windows XP Professional, you have two remote networking features called&lt;br&gt;
Remote Assistance and Remote Desktop Sharing. These remote networking features&lt;br&gt;
are very helpful in a variety of situations but if you don&apos;t use them, it is
good idea to&lt;br&gt;
disable them to save boot time. You can always enable them later if you want to
use&lt;br&gt;
them.&lt;br&gt;
1. Open the Start menu, right-click My Computer, and choose Properties.&lt;br&gt;
2.Click the remote tab.&lt;br&gt;
3. Clear both check boxes to disable Remote Assistance and Remote Desktop.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;8.
Speeding Up the Dual-Boot Timeout&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;
line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
If you dual-boot your computer with Windows XP and another operating system,
you&lt;br&gt;
see an operating system selection menu on startup. If you typically boot into
Windows&lt;br&gt;
XP and not the other operating system, you can speed up the dual-boot timeout
value&lt;br&gt;
so that you do not wait so long for the boot process to select your default
operating&lt;br&gt;
system and continue with the boot process. The default timeout value is 30
seconds&lt;br&gt;
but you can change this setting to 10. This gives you enough time to select the&lt;br&gt;
alternate operating system if you want but also speeds up the boot process. You
can&lt;br&gt;
skip this section if you do not use a dual-boot configuration.&lt;br&gt;
Follow these steps:&lt;br&gt;
1. Locate the boot.ini file on your computer. It is a hidden file by default;
mine is&lt;br&gt;
located in C:&amp;#92;boot.ini.&lt;br&gt;
2. Open the file with Notepad (which is what opens it by default).&lt;br&gt;
3. Change the Timeout value to 10.&lt;br&gt;
4. Select File/Save and close Notepad.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;9.
Speeding Up Your PPPoE Connection&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;
line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
If you use a Point-to-Point Protocol connection over Ethernet (PPPoE), you may&lt;br&gt;
notice a delay in using the PPPoE connection after startup. By default, there
is a 120&lt;br&gt;
second delay but you can stop this behavior by manually configuring an IP
address for&lt;br&gt;
the network adapter card. If you do not use a PPPoE connection, you can skip
this&lt;br&gt;
section.&lt;br&gt;
1. Select Start/Connect to/Show All Connections.&lt;br&gt;
2. Open the TCP/IP properties for your LAN network interface card.&lt;br&gt;
3. Manually set the IP address on the TCP/IP properties to an appropriate IP
address&lt;br&gt;
and subnet mask for your network.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;10.
Reducing the Wait Time&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
When you start to shut down Windows XP, it has to quit, or &quot;kill,&quot;
any live&lt;br&gt;
applications or processes that are currently running. So close all applications
first.&lt;br&gt;
However, some applications and processes are always running in the background.&lt;br&gt;
You can reduce the amount of time that Windows XP waits for those applications
and&lt;br&gt;
processes to close before Windows XP kills them.&lt;br&gt;
1. Open registry editor&lt;br&gt;
2. Navigate to HKEY_USERS&amp;#92;.DEFAULT&amp;#92;Control Panel&amp;#92;Desktop. Set the&lt;br&gt;
WaitToKillAppTimeout and set the value to 1000. Select the HungAppTimeout&lt;br&gt;
&amp;#92;newline value and set it to 1000 as well.&lt;br&gt;
3. Navigate to HKEY_LOCAL_MACHINE&amp;#92;System&amp;#92;CurrentControlSet&amp;#92;Control.&lt;br&gt;
Select the WaitToKillServiceTimeout value and set it to 10000.&lt;br&gt;
4. Close the Registry Editor.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;11.
Automatically Killing Tasks on&lt;br&gt;
Shutdown&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
You know the drill. You start to shut down the computer, you wait a few
moments,&lt;br&gt;
and then you see a dialog box asking if you want to kill an application or
service that&lt;br&gt;
is running. Instead of prompting you, you can make Windows XP take care of the
kill&lt;br&gt;
task automatically. Here&apos;s how:&lt;br&gt;
1. Open the Registry Editor.&lt;br&gt;
2. Navigate to HKEY_CURRENT_USER&amp;#92;Control Panel&amp;#92;Desktop.&lt;br&gt;
3. Highlight the value AutoEndTasks and change the value to 1.&lt;br&gt;
4. Close the Registry Editor.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;12.
Stop Noise&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;font-family:
&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
When using 3rd party burning software (eg, Nero Burning Rom) to copy audio&lt;br&gt;
CD,some noise may be heard at the end of each track. To prevent this,try the&lt;br&gt;
following method:&lt;br&gt;
1. Enter System Properties&amp;#92;device manager&lt;br&gt;
2. Select IDE ATA/ATAPI controllers&lt;br&gt;
3. Double click on thee CD writer IDE channel&lt;br&gt;
4. Select advance setting&lt;br&gt;
5. Change the transfer mode to &apos;PIO Only&apos;&lt;br&gt;
6. Restart Computer&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;13.
Disable Unsigned Driver Dialogue&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;
line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
First go to: Start Run&lt;br&gt;
Then type: gpedit.msc and hit enter. Browse the folder tree to the following
location&lt;br&gt;
User Configuration&amp;nbsp; Administrative
Templates System. Right-click Code&lt;br&gt;
signing for Device drivers and select Properties. On the Settings tab, either
select&lt;br&gt;
enable, and then select ignore from the appearing listbox..&lt;br&gt;
or click the disable option. Click apply and Ok and your set!&lt;br&gt;
Alternatively especially for XP Home users:&lt;br&gt;
Open &quot;System&quot; properties (Windows key + pause or Right click &apos;My
Computer&apos; -&lt;br&gt;
properties or Control Panel - System).On the Hardware tab click the
&quot;Driver Signing&quot;&lt;br&gt;
button. In the dialogue that comes up choose &quot;Ignore&quot; to install the
new driver&lt;br&gt;
anyway.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;14.
A Flying Start for the Start Menu&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;
line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
A simple Registry tweak can give speed up your start menu and sub-menus. Open
the&lt;br&gt;
Registry Editor, and navigate to and select:&lt;br&gt;
HKEY_CURRENT_USER&amp;#92;Control Panel&amp;#92;Desktop .&lt;br&gt;
Double-click the MenuShowDelay icon on the right, and change &apos;Value data&apos; from
its&lt;br&gt;
default of 400 (milliseconds) to something speedier, like 0. When you have
finished,&lt;br&gt;
press Enter.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;15.
Resize Your Wallpaper&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
If you just switched to a wide-screen monitor, your desktop wallpaper image may
no&lt;br&gt;
longer look right, or maybe you just want to make a small adjustment to it.&lt;br&gt;
For more-granular control of your wallpaper&apos;s placement, highlight the following
key:&lt;br&gt;
HKEY_CURRENT_USER&amp;#92;ControlPanel&amp;#92;desktop&lt;br&gt;
Double-click the WallpaperOriginX icon in the right pane. (If you don&apos;t see
this icon,&lt;br&gt;
right-click in this pane, choose New, String Value, type WallpaperOriginX to
name&lt;br&gt;
the value, and press &lt;Enter&amp;gt;.) Type a number (in pixels) for the starting
horizontal&lt;br&gt;
position of your wallpaper&apos;s left edge, and press &lt;Enter&amp;gt;. Now
double-click the&lt;br&gt;
WallpaperOriginY icon (create it if necessary as explained above) and enter a
number&lt;br&gt;
for the starting vertical position of the image&apos;s top edge. If your wallpaper
image is&lt;br&gt;
larger than the screen, type a negative number (for example, -200) to push the&lt;br&gt;
picture&apos;s top or left edge off the screen.&lt;br&gt;
To test the effect, first minimize the Registry Editor (and any other open
window),&lt;br&gt;
right-click the desktop, choose Properties, and click OK or Apply to refresh
the&lt;br&gt;
wallpaper placement. Repeat these steps as needed until the wallpaper is
positioned&lt;br&gt;
correctly.The settings work whether you&apos;ve set your wallpaper to be centered,
tiled, or&lt;br&gt;
stretched.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;16.
Unhide the Administrator&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
Few people are aware of Windows XP&apos;s cloaked administrator account (called,&lt;br&gt;
appropriately enough, &quot;Administrator&quot;). This account is invisible
unless either your&lt;br&gt;
system has no other accounts or you are booting in Safe Mode. To remove&lt;br&gt;
Administrator&apos;s camouflage and add it to XP&apos;s Welcome screen, navigate to &amp;amp;
select&lt;br&gt;
HKEY_LOCAL_MACHINE&amp;#92;SOFTWARE&amp;#92;Microsoft&amp;#92;WindowsNT&amp;#92;CurrentVersion&amp;#92;Winl&lt;br&gt;
ogon&amp;#92;SpecialAccounts&amp;#92;UserList in the Registry Editor, and double-click the&lt;br&gt;
Administrator icon in the right pane. If you don&apos;t see this icon, right-click
in the pane,&lt;br&gt;
choose New, DWORD Value, name it Administrator, and press Enter. Type 1 in the&lt;br&gt;
&apos;Value data&apos; box, and press &lt;Enter&amp;gt;. From now on, when you open the User&lt;br&gt;
Accounts window via the Control Panel, you&apos;ll see the Administrator account.
You&lt;br&gt;
can easily change its picture or give it a password. In addition, the next time
you see&lt;br&gt;
the Welcome screen, your Administrator account will be visible, along with the
entire&lt;br&gt;
computer&apos;s other user accounts.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;17.
Retitle Internet Explorer&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
By default, Internet Explorer&apos;s title bar shows the name of the Web site you&apos;re&lt;br&gt;
viewing, followed by &quot;Microsoft Internet Explorer&quot;--or in some cases,
your&lt;br&gt;
company&apos;s name or the name of the ISP that supplied the browser. To change the&lt;br&gt;
repeating text in IE&apos;s title bar (or to get rid of it altogether), navigate to
and select&lt;br&gt;
HKEY_CURRENT_USER&amp;#92;Software&amp;#92;Microsoft&amp;#92;Internet Explorer&amp;#92;Main in the Registry&lt;br&gt;
Editor, and double-click the Window Title icon in the right pane. (If you don&apos;t
see this&lt;br&gt;
icon, right-click in the pane, choose New, String Value, type Window Title, and
press&lt;br&gt;
&lt;Enter&amp;gt;.) Type what you want to see on IE&apos;s title bar, or type nothing to
show only&lt;br&gt;
the site name. Note that the hyphen that normally separates the site name from
the&lt;br&gt;
page title will remain. When you relaunch Internet Explorer, you will see the
change.&lt;br&gt;
Bonus Tip: Hack Your BIOS for Faster&lt;br&gt;
Startups&lt;br&gt;
You can speed up your startup procedures by changing the BIOS with the built-in&lt;br&gt;
setup utility. How you run this utility varies from PC to PC, but you typically
get to it&lt;br&gt;
by pressing the Delete, F1, or F10 keys during startup. You&apos;ll come to a menu
with a&lt;br&gt;
variety of choices. Here are the choices to make for faster system startups:&lt;br&gt;
Quick Power On Self Test (POST)&lt;br&gt;
When you choose this option, your system runs an abbreviated POST rather than
the&lt;br&gt;
normal, lengthy one.&lt;br&gt;
Boot Up Floppy Seek&lt;br&gt;
Disable this option. When it&apos;s enabled, your system spends a few extra seconds&lt;br&gt;
looking for your floppy drivea relatively pointless procedure, especially
considering&lt;br&gt;
how infrequently you use your floppy drive.&lt;br&gt;
Boot Delay&lt;br&gt;
Some systems let you delay booting after you turn on your PC so that your hard
drive&lt;br&gt;
gets a chance to start spinning before bootup. Most likely, you don&apos;t need to
have this&lt;br&gt;
boot delay, so turn it off. If you run into problems, however, you can turn it
back on.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;18.
Find Every File&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
When you search for a file in Windows Windows searches only for file types it&lt;br&gt;
recognizes. Files that aren&apos;t listed in the &apos;Registered file types&apos; list are ignored.&lt;br&gt;
Fortunately, a simple edit of the Registry will make Windows search for every
file,&lt;br&gt;
regardless of its extension. Open the Registry Editor as described above, and
then&lt;br&gt;
navigate to and select:&lt;br&gt;
HKEY_LOCAL_MACHINE&amp;#92;SYSTEM&amp;#92;CurrentControlSet&amp;#92;Control&amp;#92;ContentIndex.&lt;br&gt;
Double-click the FilterFilesWithUnknownExtensions icon in the right pane,
change&lt;br&gt;
the 0 in the &apos;Value data&apos; box to 1, and press Enter.&lt;br&gt;
To ensure that Windows XP searches for every possible file, select All Files
and&lt;br&gt;
Folders under &apos;Type of file&apos; in the Search Companion pane. (If you don&apos;t see
this&lt;br&gt;
option, click More Advanced Options.) Check Search system folders, Search
hidden&lt;br&gt;
files and folders, and Search subfolders (as desired). In Windows 2000, click
Search&lt;br&gt;
Options, check Type, and make sure that (All Files and Folders) is selected in
the&lt;br&gt;
resulting drop-down menu. Check Advanced Options, and make sure Search&lt;br&gt;
Subfolders is checked. Finally, to ensure that Windows 2000 finds system and
hidden&lt;br&gt;
files, choose Tools, Folder Options and click the View tab. In the &apos;Advanced
settings&apos;&lt;br&gt;
list, select Show hidden files and folders. Uncheck Hide protected operating
system&lt;br&gt;
files (Recommended), click Yes to acknowledge the warning, and finish by
clicking&lt;br&gt;
OK.&lt;br&gt;
&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br&gt;
&lt;!--[endif]--&gt;&lt;/span&gt;
&lt;!--[endif]--&gt;</content:encoded>
			<link>https://mystudies.ucoz.com/news/win_xp_tips_2/2012-01-24-4</link>
			<dc:creator>mani</dc:creator>
			<guid>https://mystudies.ucoz.com/news/win_xp_tips_2/2012-01-24-4</guid>
			<pubDate>Tue, 24 Jan 2012 09:51:03 GMT</pubDate>
		</item>
		<item>
			<title>Win XP tips 1</title>
			<description>&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;XP
Tips &amp;amp; Tricks&lt;br&gt;
Mani Kanta&lt;br&gt;
maniiscrazy@gmail.com&lt;br&gt;
Phone: +91-9052709434&lt;br&gt;
Read before you proceed&lt;br&gt;
&amp;nbsp;This is in no way an ‘ultimate’ resource
to computer&lt;br&gt;
tweaking. It is just the drop an ocean. This guide is nothing&lt;br&gt;
but an honest effort to assimilating knowledge on how a&lt;br&gt;
machine can be tamed. More can be obtained by searching&lt;br&gt;
the World Wide Web using ‘Google’ ‘MSN’ ‘DogPile’&lt;br&gt;
‘Yahoo!’ and other search engines.&lt;br&gt;
&amp;nbsp;I do not claim any rights on the
contents discussed here.&lt;br&gt;
Many people- hackers, crackers, administrators, compu...</description>
			<content:encoded>&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;XP
Tips &amp;amp; Tricks&lt;br&gt;
Mani Kanta&lt;br&gt;
maniiscrazy@gmail.com&lt;br&gt;
Phone: +91-9052709434&lt;br&gt;
Read before you proceed&lt;br&gt;
&amp;nbsp;This is in no way an ‘ultimate’ resource
to computer&lt;br&gt;
tweaking. It is just the drop an ocean. This guide is nothing&lt;br&gt;
but an honest effort to assimilating knowledge on how a&lt;br&gt;
machine can be tamed. More can be obtained by searching&lt;br&gt;
the World Wide Web using ‘Google’ ‘MSN’ ‘DogPile’&lt;br&gt;
‘Yahoo!’ and other search engines.&lt;br&gt;
&amp;nbsp;I do not claim any rights on the
contents discussed here.&lt;br&gt;
Many people- hackers, crackers, administrators, computer&lt;br&gt;
geeks, teaching faculty, user groups- have contributed their&lt;br&gt;
wisdom and they wanted it to be shared and discussed. I have&lt;br&gt;
just ‘compiled’ the data into a single file that people can use&lt;br&gt;
it as an all purpose computer guide.&lt;br&gt;
&amp;nbsp;I have personally tried and tested most
of the tweaks&lt;br&gt;
discussed in this guide. However, I request fellow readers to&lt;br&gt;
be cautious while trying it out with your system. Always&lt;br&gt;
take a backup copy of all important data/registry before&lt;br&gt;
attempting to change the system/registry settings.&lt;br&gt;
Remember, prevention is always better than cure.&lt;br&gt;
&amp;nbsp;Last but not the least- Learn, Share
&amp;amp; Grow. Add your&lt;br&gt;
knowledge to what I have and share it unconditionally with&lt;br&gt;
the people who are looking for it.&lt;br&gt;
Regards,&lt;br&gt;
Mani Kanta&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;0.
Stopping Unneeded Startup Services&lt;br&gt;
and Making XP boot faster !&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:
115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
Along with the core operating system and programs that Windows XP runs when it&lt;br&gt;
starts, there is also a host of services involved. Many of these services are
necessary&lt;br&gt;
for Windows XP to operate correctly. However, many of them are for features in&lt;br&gt;
Windows XP that you may not use at all. You can peruse the services and disable
any&lt;br&gt;
service that you do not want to run. The fewer services that run, the more
quickly&lt;br&gt;
Windows XP will boot.&lt;br&gt;
To reduce the number of services that start on bootup, you can access two
different&lt;br&gt;
areas of Windows XP.&lt;br&gt;
o The first is the System Configuration Utility. You can do that by entering
the&lt;br&gt;
command &quot;msconfig” in the run menu.&lt;br&gt;
Start&amp;nbsp; Run &quot;msconfig” (without quotes) ||
Hit Enter&lt;br&gt;
The Services tab shows you the services that start when the computer&lt;br&gt;
boots. You can stop a service from starting by simply clearing the check box&lt;br&gt;
next to the service and clicking OK.&lt;br&gt;
o However, before you do so, there is another way to disable services that you&lt;br&gt;
may prefer because the interface gives you more information about the service&lt;br&gt;
in question.&lt;br&gt;
Open Control Panel&amp;nbsp; Administrative Tools
Services or&lt;br&gt;
Start&amp;nbsp; Run &quot;services.msc” || Hit Enter&lt;br&gt;
Take a quick look at common services you may want to live without:&lt;br&gt;
Automatic Updates: This service enables Windows XP to check the Web&lt;br&gt;
automatically for updates. If you don&apos;t want to use Automatic Updates, you can&lt;br&gt;
disable the service.&lt;br&gt;
Computer Browser: If your computer is not on a network, you don&apos;t need this
service.&lt;br&gt;
If you are on a network, leave it alone.&lt;br&gt;
DHCP Client: If you are not on a network, you do not need this service. If you
are on&lt;br&gt;
a small workgroup, you can still increase boot time by configuring manual IP.&lt;br&gt;
DNS Client: If you are not on a network, you do not need this service.&lt;br&gt;
Error Reporting and Event Log: You don&apos;t have to use these services but they
can be&lt;br&gt;
very helpful, so I would leave them configured as automatic.&lt;br&gt;
Fax: If you don&apos;t use your computer for fax services, you can disable this one.&lt;br&gt;
Help and Support: Disable if you never use the Windows XP Help and Support&lt;br&gt;
Center.&lt;br&gt;
IMAPI CD-Burning COM: This service enables you to burn CDs on your computer.&lt;br&gt;
If you never burn CDs, you can disable the service without any second thoughts.&lt;br&gt;
Indexing Service: Your computer keeps an index of all the files. But if you
rarely&lt;br&gt;
search for files, the service is just a resource hog. You can stop it&lt;br&gt;
Windows Firewall/Internet Connection Sharing: If you do not use these features,
plz&lt;br&gt;
disable.&lt;br&gt;
Infrared Monitor: If you do not use infrared devices, you can disable this
service.&lt;br&gt;
Messenger: This service sends alert messages on a local area network (it is not
the&lt;br&gt;
same as Windows Messenger). If you are not on a network, you can disable this&lt;br&gt;
service.&lt;br&gt;
Print Spooler: If you do not do any printing from the computer, you can disable
this&lt;br&gt;
service. If you print, make sure you leave it as automatic.&lt;br&gt;
Remote Registry: This service allows remote users to modify the Registry on
your&lt;br&gt;
computer. If you are not on a network, you can disable this service.&lt;br&gt;
System Restore Service: This service allows you to use System Restore. If you
have&lt;br&gt;
turned off System Restore anyway, you do not need to turn off the service.&lt;br&gt;
Themes: If you do not use themes, you can disable this service.&lt;br&gt;
Windows Image Acquisition: If you do not use scanners or digital cameras, you
can&lt;br&gt;
disable.&lt;br&gt;
Wireless Zero Configuration: If do not use wireless networking devices, you can&lt;br&gt;
disable.&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;1.
Disabling Unused PORTS&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
I have just accidentally found out another way to give you an extra boost in&lt;br&gt;
windowsXP&apos;s boot performance. This is done by disabling your unused devices in&lt;br&gt;
Device Manager. for example, if you don&apos;t have input devices that are connected
to&lt;br&gt;
one of your USBs or COM ports, disabling them will give you an extra
perfromance&lt;br&gt;
boost in booting.&lt;br&gt;
Go to Control Panel &amp;nbsp;System&amp;nbsp; Hardware tab Device manager&lt;br&gt;
Disable devices that you don&apos;t use for your PC and then restart. See the
difference for&lt;br&gt;
yourself.&lt;br&gt;
Bonus Tip: Perform a Boot Defragment&lt;br&gt;
There&apos;s a simple way to speed up XP startup: make your system do a boot
defragment,&lt;br&gt;
which will put all the boot files next to one another on your hard disk. When
boot files&lt;br&gt;
are in close proximity to one another, your system will start faster.&lt;br&gt;
On most systems, boot defragment should be enabled by default, but it might not
be&lt;br&gt;
on yours, or it might have been changed inadvertently. To make sure that boot&lt;br&gt;
defragment is enabled on your system, run the Registry Editor and go to:&lt;br&gt;
HKEY_LOCAL_MACHINE&amp;#92;SOFTWARE&amp;#92;Microsoft&amp;#92;Dfrg&amp;#92;BootOptimizeFunction&lt;br&gt;
Edit the Enable string value to Y if it is not already set to Y. Exit the
Registry and&lt;br&gt;
reboot. The next time you reboot, you&apos;ll do a boot defragment.&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;2.
Stop Error Messages from Displaying&lt;br&gt;
on Startup&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;font-family:
&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
If you constantly see an error message that you can&apos;t get rid offor example,
from a&lt;br&gt;
piece of software that didn&apos;t uninstall properly and continues to give errors
on&lt;br&gt;
startupyou can disable it from displaying on startup. Run the Registry Editor
and go to&lt;br&gt;
HKEY_LOCAL MACHINE&amp;#92;SYSTEM&amp;#92;CurrentControlSet&amp;#92;Control&amp;#92;Windows. (This&lt;br&gt;
key holds a variety of Windows system settings, such as the location of your
system&lt;br&gt;
directory.) Create a new DWORD called NoPopupsOnBoot and give it a value of 1.&lt;br&gt;
Exit the Registry and reboot for the setting to take effect. To disable it,
either delete&lt;br&gt;
the DWORD value or give it a value of 0.&lt;br&gt;
&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;3.
Memory Tweak&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;font-family:
&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
1. Start Registry Editor (Regedit.exe) and locate the following key in the
registry:&lt;br&gt;
HKEY_LOCAL_MACHINE&amp;#92;SYSTEM&amp;#92;CurrentControlSet&amp;#92;Control&amp;#92;SessionManager&amp;#92;&lt;br&gt;
MemoryManagement&amp;#92;PrefetchParameters&lt;br&gt;
2.On the EnablePrefetcher value, change the setting from 3 to 5 (decimal).&lt;br&gt;
3. Close the registry editor and restart your computer&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;4.
Disabling Recent Documents History&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;
line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;
mso-hansi-theme-font:minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;
mso-bidi-theme-font:minor-bidi;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
The bad thing about Recent Documents History is that Windows XP has to
calculate&lt;br&gt;
what should be put there each time you boot Windows, which can slow things
down.&lt;br&gt;
1. Open the Registry Editor (select Start/Run, type regedit, and click OK).&lt;br&gt;
2. Navigate to HKEY_CURRENT_USER&amp;#92;Software&amp;#92;Mcft&amp;#92;Windows&amp;#92;&lt;br&gt;
CurrentVersion&amp;#92;Policies&amp;#92;Explorer.&lt;br&gt;
3. Create a NoRecentDocsHistory D_WORD key. Double-click the value to open it&lt;br&gt;
once it is created.&lt;br&gt;
4. Set the Data Value to 1 to enable the restriction.&lt;br&gt;
5. Click OK and close the Registry Editor. You&apos;ll need to restart the computer
for the&lt;br&gt;
change to take effect.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;5.
Disabling the Boot Logo&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
You can remove the boot logo that appears when you start Windows XP. This
little&lt;br&gt;
tweak probably shaves only a few seconds off your boot time but seconds count
if you&lt;br&gt;
are serious about trying to get Windows XP up and running as quickly as
possible.&lt;br&gt;
The only negative is that if you remove the boot logo, you will also not see
any boot&lt;br&gt;
messages, such as check disk.&lt;br&gt;
To remove the boot logo, follow these steps:&lt;br&gt;
1. Select Start/Run, type msconfig, and click OK.&lt;br&gt;
2. In the System Configuration Utility, click the BOOT.INI tab.&lt;br&gt;
3. On the BOOT.INI tab, click the NOGUIBOOT check box option. Click OK.&lt;br&gt;
&lt;/span&gt;&lt;span style=&quot;font-size:14.0pt;line-height:115%;font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;
mso-ascii-theme-font:minor-latin;mso-fareast-font-family:&quot;Times New Roman&quot;;
mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:minor-latin;
mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;6.
Removing Unwanted Fonts&lt;/span&gt;&lt;span style=&quot;font-size:11.0pt;line-height:115%;
font-family:&quot;Calibri&quot;,&quot;sans-serif&quot;;mso-ascii-theme-font:minor-latin;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-fareast-theme-font:minor-fareast;mso-hansi-theme-font:
minor-latin;mso-bidi-font-family:&quot;Times New Roman&quot;;mso-bidi-theme-font:minor-bidi;
mso-ansi-language:EN-US;mso-fareast-language:EN-US;mso-bidi-language:AR-SA&quot;&gt;&lt;br&gt;
One trick that increases your boot time a bit is to lose any fonts in the Fonts
folder in&lt;br&gt;
Control Panel that you never use. The more fonts you have, the more processing&lt;br&gt;
Windows XP has to do to prep all of those fonts for use. You must be a bit
careful&lt;br&gt;
here to not remove fonts that you might want, but there is a good chance that
you can&lt;br&gt;
live without many of them.&lt;br&gt;
To delete unneeded fonts, follow these steps:&lt;br&gt;
1. Open the Fonts folder in Control Panel.&lt;br&gt;
2. Select Edit/Select All and then Edit/Copy.&lt;br&gt;
3. Create a new folder on your desktop, open it, and select Edit/Paste.&lt;br&gt;
4. In this new folder, delete any of the fonts you do not want.&lt;br&gt;
5. Return to the Fonts folder in Control Panel. Right-click the selected fonts
and click&lt;br&gt;
Delete.&lt;br&gt;
6. Go back to your new desktop folder and click Edit/Select All.&lt;br&gt;
7. Return to your Fonts folder and click Edit/Paste. You now have only the
desired&lt;br&gt;
fonts in the Fonts folder.&lt;br&gt;
&lt;!--[if !supportLineBreakNewLine]--&gt;&lt;br&gt;
&lt;!--[endif]--&gt;&lt;/span&gt;</content:encoded>
			<link>https://mystudies.ucoz.com/news/win_xp_tips_1/2012-01-24-3</link>
			<dc:creator>mani</dc:creator>
			<guid>https://mystudies.ucoz.com/news/win_xp_tips_1/2012-01-24-3</guid>
			<pubDate>Tue, 24 Jan 2012 09:49:06 GMT</pubDate>
		</item>
		<item>
			<title>Unlock idea net setter huawei e1732 - data card unlock software</title>
			<description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot;&gt;&lt;br&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;Hi fiends after so many &amp;nbsp;attempts to &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;unlock idea net setter huawei e1732 &lt;/b&gt;we
 are all leave our hope to unlock idea netsetter. Ya I can tell you that
 data card unlock software is available for idea netsetter unlocking but
 they are all for credits only (they will charge you for simple 
information or unlocking idea 3g netsetter). &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;As
 I promise you that I will give you a permanent solution to unlock idea 
netsetter huawei e1732. Iam back with data card unlock 
software called cdma workshop which can be used to unlock idea netsetter
 huawei e1732 permanently. All you need is just follow the simple steps 
carefully as given below . &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp;So lets start 
our workshop…&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;u&gt;Unlock idea net setter huawei e1732 - data card unlock software&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;&lt;d...</description>
			<content:encoded>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot;&gt;&lt;br&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;Hi fiends after so many &amp;nbsp;attempts to &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;unlock idea net setter huawei e1732 &lt;/b&gt;we
 are all leave our hope to unlock idea netsetter. Ya I can tell you that
 data card unlock software is available for idea netsetter unlocking but
 they are all for credits only (they will charge you for simple 
information or unlocking idea 3g netsetter). &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;As
 I promise you that I will give you a permanent solution to unlock idea 
netsetter huawei e1732. Iam back with data card unlock 
software called cdma workshop which can be used to unlock idea netsetter
 huawei e1732 permanently. All you need is just follow the simple steps 
carefully as given below . &lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp;So lets start 
our workshop…&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;&lt;u&gt;Unlock idea net setter huawei e1732 - data card unlock software&lt;/u&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;You have to download &amp;nbsp;these software first&lt;/div&gt;&lt;div class=&quot;MsoListParagraphCxSpFirst&quot; style=&quot;margin-left: .75in; mso-add-space: auto; mso-list: l0 level1 lfo1; text-indent: -.25in;&quot;&gt;1.&lt;span style=&quot;font: 7pt &quot;Times New Roman&quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;a href=&quot;http://www.filesonic.com/file/4264056295/CDMA_Workshop_2.7_FULL.7z&quot;&gt;CDMA Workshop (Download It From This Link) &lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;margin-left: .75in; mso-add-space: auto; mso-list: l0 level1 lfo1; text-indent: -.25in;&quot;&gt;2.&lt;span style=&quot;font: 7pt &quot;Times New Roman&quot;;&quot;&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;a href=&quot;http://www.filesonic.com/file/4264056315/Huawei_E1732_Firmware_Downgrader.zip&quot;&gt;E1732 Downgrader (Download It From This Link) &lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;MsoListParagraphCxSpMiddle&quot; style=&quot;margin-left: .75in; mso-add-space: auto;&quot;&gt;&lt;br&gt;
&lt;/div&gt;&lt;a name=&quot;more&quot;&gt;&lt;/a&gt;Now just follow the steps carefully&lt;br&gt;
&lt;div class=&quot;MsoNormal&quot;&gt;Step1.&amp;nbsp;&amp;nbsp; First of all download &amp;nbsp;above two &amp;nbsp;links (you have to disable your antivirus)&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;Step2.&amp;nbsp;&amp;nbsp; Now Plug your E1732 idea net setter &amp;nbsp;with any other operator sim and let it install its driver&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;Step3.&amp;nbsp;&amp;nbsp; Now just &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;Right click on your MY COMPUTER ICON &amp;gt;&amp;gt; PROPERTIES &amp;gt;&amp;gt; DEVICE MANAGER &amp;gt;&amp;gt;Ports (COM &amp;amp; LPT) &lt;/span&gt;&lt;/b&gt;then you can see there something like &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;HUAWEI Mobile Connect – 3G Application Interface (COM12) &lt;/span&gt;&lt;/b&gt;then &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;com12 &lt;/span&gt;&lt;/b&gt;is your systems port number &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;please note the port number&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; font-weight: normal;&quot;&gt;Step4.&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/b&gt;Now Run CDMA WOrkshop.Exe( v 2.7.0) and&amp;nbsp; Click on &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;Main&lt;/span&gt;&lt;/b&gt; and select the com port number in &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;COM Settings (AT mode)&lt;/span&gt;&lt;/b&gt;box.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp;Step5.&amp;nbsp;&amp;nbsp; And then You have to click on &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;Connect&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt;Step6.&amp;nbsp;&amp;nbsp; Then Click On &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;Read&lt;/b&gt; and Let it read your modem information and you can see your modem information on left panel.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp;Step7.&amp;nbsp;&amp;nbsp; Now Click on &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;Security Tab&lt;/span&gt;&lt;/b&gt; &amp;gt;&amp;gt; &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;Spc &lt;/b&gt;&amp;gt;&amp;gt; &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;Default (nv_read&lt;/b&gt;) as SPC and Type 000000 in blank box and click on &lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;Spc &lt;/b&gt;and you can see the pop up window click on &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;SEND.&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; font-weight: normal;&quot;&gt;&amp;nbsp;Step8.&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/b&gt;Now Just go to&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt; Memory Tab &amp;gt;&amp;gt; NV Items &amp;gt;&amp;gt; And Click On Read &lt;/span&gt;&lt;/b&gt;you can see on pop up box now click on &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;OK.&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; font-weight: normal;&quot;&gt;Step9.&amp;nbsp;&amp;nbsp; &lt;/span&gt;&lt;/b&gt;Now you will see&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt; NV Backup Box&lt;/span&gt;&lt;/b&gt; now in &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;Last NV Item box &lt;/span&gt;&lt;/b&gt;type &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;9999 &lt;/span&gt;&lt;/b&gt;and click on&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt; ok &lt;/span&gt;&lt;/b&gt;and&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt; save it with any name.&lt;/span&gt;&lt;/b&gt; and it will backup your data let it be complete to 100% . and &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;minimize CDMA Work Shop.&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; font-weight: normal;&quot;&gt;Step10. &lt;/span&gt;&lt;/b&gt;Now go to your second download application which is downloaded intially and &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;Run E1732 Downgreder &amp;gt;&amp;gt; Accept Terms and Conation &amp;gt;&amp;gt; Then Click On Next&lt;/span&gt;&lt;/b&gt; and it will read your modem let it be finish then it will show your modem data then click on &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;Start. &lt;/span&gt;&lt;/b&gt;In the process you will get massage like update failure after downloading program. then dont worry and &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;click on OK&lt;/span&gt;&lt;/b&gt;.&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; font-weight: normal;&quot;&gt;Step11. &lt;/span&gt;&lt;/b&gt;Now Again Come to &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;CDMA Workshop&lt;/span&gt;&lt;/b&gt; and come to &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;Main Tab&lt;/span&gt;&lt;/b&gt; and click on &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;Disconnect &lt;/span&gt;&lt;/b&gt;and unplug your modem.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;Step12. Now Again Plug your modem and Run CDMA Workshop and check and select Com port(&lt;b style=&quot;mso-bidi-font-weight: normal;&quot;&gt;com12)&lt;/b&gt; as prefer &amp;nbsp;we have done previously.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;Step13. Then come on CDMA wokrshop and &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;Select Com Port&lt;/span&gt;&lt;/b&gt; and &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;click on Connect&lt;/span&gt;&lt;/b&gt; and navigate to &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;Memory Tab &amp;gt;&amp;gt; NV ITEMS &amp;gt;&amp;gt; Click On Write &lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; font-weight: normal;&quot;&gt;Step14. &lt;/span&gt;&lt;/b&gt;&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt; &lt;/span&gt;&lt;/b&gt;Now you can see one confirm box &lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt;click on OK&lt;/span&gt;&lt;/b&gt;. then&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;;&quot;&gt; Click on Open &lt;/span&gt;&lt;/b&gt;the&lt;b&gt;&lt;span style=&quot;font-family: &quot;Calibri&quot;,&quot;sans-serif&quot;; font-weight: normal;&quot;&gt;n&lt;/span&gt;&lt;/b&gt; borwse and select the file which we have saved before&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;&amp;nbsp;Step15.
 When the process will reach at 100% you can see success message then 
click on OK and From Main Tab Disconnect your modem and you are Done&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;Step16.
 Now just close your CDMA workshop (it shows a dailog box wiil appear 
confirm NO )and unplug your modem close everything you have opened and 
again plug your modem open your idea dashboard and select operator 
manually going to profile management and network settings and connect 
your modem k&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;Step17. For example if you are 
using tata docomo then go to profile management and click on add button 
and type APN: TATA.DOCOMO.INTERNET and dail no *99# and save as default 
that’s it and now go to networks and select your provider manually and 
register and simply go to connection and choose tata and connect and 
enjoy the unlock idea net setter huawei e1732.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;I
 just tried and succeeded k and if you want to use this in e150 model 
try once there is no problem for modem but I did not check so you please
 let me know it works with e150 net setter also k&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;If
 any body having problems with downloading softwares&amp;nbsp; please let me know
 and give me your mail id I will send personally to your mail k for that
 please join my site.&lt;/div&gt;&lt;div class=&quot;MsoNormal&quot;&gt;If like my post Unlock
 idea net setter huawei e1732 - data card unlock software please hit me a
 thanks and if you have any doubts just clarify me by posting comment in
 Unlock idea net setter huawei e1732 - data card unlock software comment
 section ok.&lt;/div&gt;&lt;/div&gt;</content:encoded>
			<link>https://mystudies.ucoz.com/news/unlock_idea_net_setter_huawei_e1732_data_card_unlock_software/2012-01-19-2</link>
			<dc:creator>mani</dc:creator>
			<guid>https://mystudies.ucoz.com/news/unlock_idea_net_setter_huawei_e1732_data_card_unlock_software/2012-01-19-2</guid>
			<pubDate>Thu, 19 Jan 2012 17:29:07 GMT</pubDate>
		</item>
	</channel>
</rss>