<?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>Open Software Solutions &#187; XP Tips</title>
	<atom:link href="http://ossmall.info/category/win-xp-center/xp-tips/feed/" rel="self" type="application/rss+xml" />
	<link>http://ossmall.info</link>
	<description>Open Software Solutions</description>
	<lastBuildDate>Sun, 05 Feb 2012 17:34:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Windows Command Prompt utilities</title>
		<link>http://ossmall.info/windows-command-prompt-utilities/</link>
		<comments>http://ossmall.info/windows-command-prompt-utilities/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 18:08:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/windows-command-prompt-utilities/</guid>
		<description><![CDATA[Here are just a few commands and the most used , with a small description: Start &#62; Run &#62; cmd and the Command Prompt window will apear cmd.exe (Windows 2000 and XP), command.com (98 and Me): These commands (you don&#8217;t need to enter the period and extension) open the window where you enter the other [...]]]></description>
			<content:encoded><![CDATA[<h5>Here are just a few commands and the most used , with a small description:</h5>
<p>Start &gt; Run &gt; cmd</p>
<p>and the Command Prompt window will apear</p>
<p><strong>cmd.exe</strong> (Windows 2000 and XP), command.com (98 and Me): These commands (you don&#8217;t need to enter the period and extension) open the window where you enter the other commands discussed here. Using either one with the /c switch, you can create a shortcut that opens a command window, executes a command, and then closes the window. This allows you to launch a command just by double-clicking its icon or choosing it from the Start menu. For example, to make an icon that refreshes your network connection, right-click the desktop or in any folder window and choose New, Shortcut. In the first box, type cmd /c ipconfig /renew , as well as the discussion of &#8216;<strong>ipconfig.exe</strong>&#8216; below). Click Next and follow the wizard&#8217;s instructions to create the shortcut. If you want the command window to stay open so that you can see the results of your command, simply replace the &#8216;/c&#8217; with /k. You can use this shortcut technique with many of the commands listed here.<br />
<strong><br />
attrib.exe</strong>: This command lets you change one or more of a file&#8217;s attributes (such as &#8216;Hidden&#8217;, &#8216;System&#8217;, &#8216;Read-only&#8217;, or &#8216;Archive&#8217;). It&#8217;s usually easier to right-click the file in an Explorer or folder window, choose Properties, and check the desired boxes But when you need to change attributes for files in multiple subfolders, this command line (with the /s switch) can do it for you in one step.</p>
<p><strong>compact.exe</strong>: If your drive is formatted with the NTFS file system (available only in Windows 2000 and XP), you have the option of compressing files and folders by right-clicking them, choosing Properties, clicking Advanced under the General tab, and selecting the appropriate check box. But what if some of the files in a folder are already compressed (such as JPEG photos), while others could benefit from compressing? Use this command with the /s switch and wild-card characters to compress only specific files in the selected directory (and in all its subdirectories). For example, compact /c /s:c:\doc *.doc will compress all of the Word documents in your Doc folder and subfolders. To uncompress, change the &#8216;/c&#8217; to /u.</p>
<p><strong>ipconfig.exe</strong>: This helpful network utility displays your current IP address, as well as its subnet and gateway addresses. Use the /all switch to see even more network information. The /renew switch (/renew_all in Windows 98 and Me) refreshes the connections. (See also &#8216;ping.exe&#8217; below.)</p>
<p><strong>openfiles.exe</strong>: If you need to figure out who on your network has a shared file open, type this command at the prompt and press &lt;Enter&gt;. You can also use it to close the open files in a shared folder or to disconnect the user currently viewing them. For details, type openfiles /disconnect /? at the command prompt.</p>
<p><strong>ping.exe</strong>: When your network is experiencing technical difficulties, this simple troubleshooting utility will tell you whether two computers are talking to each other. Just type ping, a space, and the network name or IP address of the problem computer. If it reports a reply, you&#8217;ll know that the connection is okay. You can also use this command to confirm that your own Internet connection is working.</p>
<p><strong>recover.exe</strong>: If you lose a file to a corrupt sector on an NTFS disk, this command restores as much of the lost data as possible. Type recover followed by a space and the full path and name of the file you want to resuscitate. No wild-card characters are allowed in the specified file path, and you can recover only one file at a time when using this command.</p>
<p><strong>runas.exe</strong>: People who log in to a non-administrator Windows account (which Microsoft recommends for security reasons) may think that they have to log off and back on to perform administrator-only tasks. Not so! This command launches a program as if you were another user. Just type runas /user: followed by the name of the profile under whose auspices you want to run the application, then a space and the program&#8217;s name. (Use the /? switch to get details on the exact form to use with this command.) You will, of course, be prompted for that profile&#8217;s password before the program launches.</p>
<p><strong>sort.exe</strong>: To sort the items in a text file alphabetically, type sort, a space, the name of the file, another space, the greater-than symbol (&gt;), another space, and the path and name of the file in which the sorted entries will appear (for example, you might type sort messylist.txt &gt; neatlist.txt). Add the /r switch at the end if you want the list to appear in reverse alphabetical order.</p>
<p><strong>taskkill.exe</strong>: You could use Windows XP&#8217;s Task Manager to close any running application or process, but this utility not only closes one app, it also lets you stop multiple programs at once via wild cards and filters. For example, to shut down all applications that are not responding, type taskkill /fi &#8220;status eq not responding&#8221;. For more options, consult the help screen.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h5>Microsoft Knowledge Base Article</h5>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<p><o:p> </o:p></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/windows-command-prompt-utilities/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 steps to help avoid instant message viruses</title>
		<link>http://ossmall.info/5-steps-to-help-avoid-instant-message-viruses/</link>
		<comments>http://ossmall.info/5-steps-to-help-avoid-instant-message-viruses/#comments</comments>
		<pubDate>Sun, 22 Jan 2012 07:21:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Misc Tips]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/5-steps-to-help-avoid-instant-message-viruses/</guid>
		<description><![CDATA[Using an instant messaging (IM) program—such as Windows Live Messenger (formerly MSN Messenger), Windows Messenger, AOL Instant Messenger, Yahoo Messenger, or others—you and a friend can type messages to each other and see the messages almost immediately. Because IM is so popular, virus writers can use it to spread malicious programs. Understanding instant message viruses [...]]]></description>
			<content:encoded><![CDATA[<p>Using an instant messaging (IM) program—such as <a href="http://get.live.com/messenger/overview">Windows Live Messenger</a> (formerly MSN Messenger), <a href="http://www.microsoft.com/windowsxp/using/windowsmessenger/default.mspx">Windows Messenger</a>, AOL Instant Messenger, Yahoo Messenger, or others—you and a friend can type messages to each other and see the messages almost immediately.</p>
<p>Because IM is so popular, virus writers can use it to spread malicious programs.</p>
<h4>Understanding instant message viruses</h4>
<p>Like e-mail viruses, instant message viruses are malicious programs that are designed to travel through IM.</p>
<p>These viruses are spread, in most cases, when a person opens an infected file that was sent in an instant message that appeared to come from a friend.</p>
<p>When you open one of these files, your computer can become infected with a virus. Because of the virus, your computer may slow down or stop responding, or you may not notice any change at all.</p>
<p>However, the virus might have installed a covert program on your computer that could damage software, hardware, or important files, and that may include spyware, which can track information entered on the computer.</p>
<p>A computer infected by a virus may continue to spread the infection by sending copies of the virus to everyone on your IM contact list, that is, the collection of IM names that you can store in your IM program.</p>
<h4>5 steps to help avoid instant message viruses</h4>
<p>As with most threats on the Internet, you can help keep yourself safe by taking basic precautions. If you know how to avoid e-mail viruses, you&#8217;ll already be familiar with many of these steps.</p>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td nowrap="nowrap" valign="top">
<p align="right">1.</p>
</td>
<td valign="top"><strong>Be careful downloading files in IM.</strong> Never open, accept, or download   a file in IM from someone you don&#8217;t know. If the file comes from someone you   do know, don&#8217;t open it unless you know what the file is and you were   expecting it. Contact the sender by e-mail, phone, or some other method to   confirm that what they sent was not a virus.</td>
</tr>
<tr>
<td nowrap="nowrap" valign="top">
<p align="right">2.</p>
</td>
<td valign="top"><strong>Update your Windows software.</strong> Visit <a href="http://go.microsoft.com/?linkid=3646728">Microsoft Update</a> to scan   your computer and install any high-priority updates that are offered to you.   If you have <a href="http://www.microsoft.com/protect/computer/updates/automatic.mspx">Automatic   Updates</a> enabled, the updates are delivered to you when they are released,   but you have to make sure you install them.</td>
</tr>
<tr>
<td nowrap="nowrap" valign="top">
<p align="right">3.</p>
</td>
<td valign="top"><strong>Make sure you&#8217;re using an updated version of your IM software.</strong>   Using the most up-to-date version of your IM software can better protect your   computer against viruses and spyware. If you&#8217;re using MSN Messenger, upgrade   to <a href="http://get.live.com/messenger/">Windows Live Messenger</a>, which   will block attachments that might contain malware and allow you to scan   attachments for viruses.</td>
</tr>
<tr>
<td nowrap="nowrap" valign="top">
<p align="right">4.</p>
</td>
<td valign="top"><strong>Use antivirus software and keep it updated.</strong> Antivirus software can   help to detect and remove IM viruses from your computer, but only if you keep   the antivirus software current. If you&#8217;ve purchased a subscription from an <a href="http://www.microsoft.com/protect/yourself/downloads/default.mspx">antivirus   software company</a>, your antivirus software may update itself when you&#8217;re   connected to the Internet.</td>
</tr>
<tr>
<td nowrap="nowrap" valign="top">
<p align="right">5.</p>
</td>
<td valign="top"><strong>Use antispyware software and keep it updated.</strong> Some IM viruses may   install spyware or other unwanted software on your computer. Antispyware   software can help to protect your computer from spyware and remove any   spyware you may already have. If you don&#8217;t have antispyware software, you can   download Windows Defender. Windows Defender comes with <a href="http://www.microsoft.com/protect/computer/spyware/vista.mspx">Windows   Vista</a>. If you use Windows XP SP2, you can download <a href="http://www.microsoft.com/athome/security/spyware/software/default.mspx">Windows   Defender</a> for no charge.</td>
</tr>
</table>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h5>Microsoft Knowledge Base Article</h5>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<p><o:p> </o:p></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/5-steps-to-help-avoid-instant-message-viruses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Explanation of Regsvr32 usage and error messages</title>
		<link>http://ossmall.info/explanation-of-regsvr32-usage-and-error-messages/</link>
		<comments>http://ossmall.info/explanation-of-regsvr32-usage-and-error-messages/#comments</comments>
		<pubDate>Thu, 19 Jan 2012 16:47:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Misc Tips]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/explanation-of-regsvr32-usage-and-error-messages/</guid>
		<description><![CDATA[SUMMARY You can use the Regsvr32 tool (Regsvr32.exe) to register and unregister OLE controls such as DLL or ActiveX Controls (OCX) files that are self-registerable. This may be necessary to troubleshoot some issues with Windows, Microsoft Internet Explorer, or other programs. MORE INFORMATION Regsvr32.exe is included with Microsoft Internet Explorer 3.0 or later versions, Windows [...]]]></description>
			<content:encoded><![CDATA[<h2>SUMMARY</h2>
<p><script type="text/javascript"> loadTOCNode(1, \'summary\'); </script>You can use the Regsvr32 tool (Regsvr32.exe) to register and unregister OLE controls such as DLL or ActiveX Controls (OCX) files that are self-registerable. This may be necessary to troubleshoot some issues with Windows, Microsoft Internet Explorer, or other programs.</p>
<h2>MORE INFORMATION</h2>
<p><script type="text/javascript"> loadTOCNode(1, \'moreinformation\'); </script>Regsvr32.exe is included with Microsoft Internet Explorer 3.0 or later versions, Windows 95 OEM Service Release 2 (OSR2) or later versions, and Windows NT 4.0 Service Pack 5 (SP5) or later versions. Regsvr32.exe is installed in the System (Windows Me/Windows 98/Windows 95) or System32 (Windows NT/Windows XP/Windows Vista) folder.</p>
<h3>Regsvr32.exe usage</h3>
<p><script type="text/javascript"> loadTOCNode(2, \'moreinformation\'); </script>RegSvr32.exe has the following command-line options:</p>
<p>Regsvr32 [/u] [/n] [/i[:cmdline]] <var>dllname</var></p>
<p>/u &#8211; Unregister server<br />
/i &#8211; Call DllInstall passing it an optional [cmdline]; when used with /u calls dll uninstall<br />
/n &#8211; do not call DllRegisterServer; this option must be used with /i<br />
/s &#8211; Silent; display no message boxes (added with Windows XP and Windows Vista)</p>
<p>When you use Regsvr32.exe, it attempts to load the component and call its <strong>DLLSelfRegister</strong> function. If this attempt is successful, Regsvr32.exe displays a dialog box that indicates success. If the attempt is unsuccessful, Regsvr32.exe returns an error message. This may include a Win32 error code.</p>
<p>For example, to manually register a Sample.ocx ActiveX control, type the following command at command prompt:</p>
<p>c:\regsvr32.exe sample.ocx</p>
<h3>Regsvr32.exe error messages in Windows Vista</h3>
<p><script type="text/javascript"> loadTOCNode(2, \'moreinformation\'); </script>The following list contains RegSvr32 error messages and possible causes.</p>
<p><strong>The command-flag &#8220;&#8221;%1&#8243;&#8221; is not valid. Please review the command usage and try again.</strong></p>
<p>An invalid combination of options was passed in the command line to regsvr32.exe.</p>
<p><strong>This command is only valid if a Microsoft Visual Studio OLE Custom Control project is opened. </strong></p>
<p>Regsvr32.exe was invoked by Visual Studio but no modules were specified in the command line.</p>
<p><strong>To register a module, you must provide a binary name.</strong></p>
<p>Regsvr32.exe was invoked without specifying any modules in the command line.</p>
<p><strong>The command OleInitialize failed to run. Your computer might be low on memory. Close any open programs and then try again.</strong></p>
<p>Regsvr32 must initialize the COM library before it can call needed COM library functions and uninitialize the library when it shuts down. These error messages occur if an attempt to initialize or uninitialize the COM library is unsuccessful.</p>
<p><strong>The module &#8220;&#8221;%1&#8243;&#8221; failed to load.\n\n Make sure the binary is stored at the specified path or debug it to check for problems with the binary or dependent .DLL files.\n\n%2.</strong></p>
<p>There was an error in loading a module that was specified in the command line. The error text appears as part of the message.</p>
<p><strong>The module &#8220;&#8221;%1&#8243;&#8221; was loaded but the entry-point %2 was not found.\n\nMake sure that &#8220;&#8221;%1&#8243;&#8221; is a valid DLL or OCX file and then try again </strong></p>
<p>Regsvr32.exe was unable to find the required entrypoint in the module specified in the command line. This can occur if the entrypoints are not properly exported from the module or if the module is not a .DLL or .OCX file.</p>
<p><strong>The module &#8220;&#8221;%1&#8243;&#8221; was loaded but the call to %2 failed with error code %3.\n\nFor more information about this problem, search online using the error code as a search term.</strong></p>
<p>There was an error when regsvr32.exe invoked the entrypoint in the module specified in the command line. The error code appears as part of the message</p>
<p><strong>The module &#8220;&#8221;%1&#8243;&#8221; may not compatible with the version of Windows that you&#8217;re running. Check if the module is compatible with an x86 (32-bit) or x64 (64-bit) version of regsvr32.exe.</strong></p>
<p>This error can happen, for example, if regsvr32.exe is run on an x86 machine and the module specified in the command line is a 64-bit module.</p>
<h3>Regsvr32.exe error messages prior to Windows Vista</h3>
<p><script type="text/javascript"> loadTOCNode(2, \'moreinformation\'); </script>The following list contains RegSvr32 error messages and possible causes.</p>
<p><strong>Unrecognized flag: /invalid_flag</strong></p>
<p>You typed an invalid combination of flags or switches (refer to the &#8220;Regsvr32.exe Usage&#8221; section in this article).</p>
<p><strong>No DLL name specified.</strong></p>
<p>You did not include a .dll file name (refer to the &#8220;Regsvr32.exe Usage&#8221; section in this article).</p>
<p><strong><em>Dllname</em> was loaded, but the DllRegisterServer or DllUnregisterServer entry point was not found.</strong></p>
<p><em>Dllname</em> is not a .dll or .ocx file. For example, typing regsvr32 wjview.exe generates this error message.</p>
<p><strong><em>Dllname</em> is not an executable file and no registration helper is registered for this file type.</strong></p>
<p><em>Dllname</em> is not an executable file (.exe, .dll, or .ocx). For example, typing regsvr32 autoexec.bat generates this error message.</p>
<p><strong><em>Dllname</em> was loaded, but the DllRegisterServer or DllUnregisterServer entry point was not found.</strong></p>
<p><em>Dllname</em> may not be exported, or a corrupted version of <em>Dllname</em> may be in memory. Consider using Pview to detect the file and remove it.</p>
<p><strong><em>Dllname</em> is not self-registerable or a corrupted version is in memory.</strong></p>
<p>For example, typing regsvr32 icwdial.dll returns this error message because the Icwdial.dll file is not self-registerable. If you suspect a corrupted version of <var>Dllname</var> is in memory, try restarting your computer or re-extract the original version of the file. If you are running Windows NT, you may need to use the Kill or Pview tool from the <em>Microsoft Windows NT Server 4.0 Resource Kit</em>.</p>
<p><strong>OleInitialize failed (or OleUninitialize failed).</strong></p>
<p>Regsvr32 must initialize the COM library before it can call needed COM library functions and uninitialize the library when it shuts down. These error messages occur if an attempt to initialize or uninitialize the COM library is unsuccessful. For example, the Ole32.dll file may be corrupted or may be the wrong version.</p>
<p><strong>LoadLibrary(&#8220;<var>Dllname</var>&#8220;) failed. GetlastError returns 0&#215;00000485</strong></p>
<p>From Winerror.h, 0&#215;00000485 = 1157 (ERROR_DLL_NOT_FOUND), which means &#8220;One of the library files needed to run this application cannot be found.&#8221; For example, typing regsvr32 missing.dll returns this error message if the Missing.dll file is not found.</p>
<p><strong>LoadLibrary(&#8220;<var>Dllname</var>&#8220;) failed. GetLastError returns 0&#215;00000002</strong></p>
<p>From Winerror.h, 0&#215;00000002 = 2 (ERROR_FILE_NOT_FOUND), which means &#8220;The system cannot find the file specified.&#8221; In other words, a dependent DLL was not found. For example, typing regsvr32 icwdial.dll with Tapi32.dll (a dependency) missing, returns this error message.</p>
<p><strong>LoadLibrary(&#8220;dskmaint.dll&#8221;) failed. GetLastError returns 0x000001f</strong></p>
<p>From Winerror.h, 0x000001f = 31 (ERROR_GEN_FAILURE), which means &#8220;A device attached to the system is not functioning.&#8221; This behavior can occur if you try to register a Win16 .dll file. For example, typing regsvr32 dskmaint.dll returns this error message.</p>
<p><strong>DllRegisterServer (or DllUnregisterServer)in <var>Dllname</var> failed. Return code was: <var>string</var></strong></p>
<p>Search Winerror.h for <var>string</var>.</p>
<h4>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</h4>
<h4>Microsoft Knowledge Base Article</h4>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a><br />
<!--[if !supportLineBreakNewLine]--><br />
<!--[endif]--></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/explanation-of-regsvr32-usage-and-error-messages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rename Recycle Bin</title>
		<link>http://ossmall.info/rename-recycle-bin/</link>
		<comments>http://ossmall.info/rename-recycle-bin/#comments</comments>
		<pubDate>Wed, 04 Jan 2012 13:02:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/rename-recycle-bin/</guid>
		<description><![CDATA[Open up your favorite plain text editor (notepad, for example) and copy the following text into a new file: REGEDIT4 [HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder] &#8220;Attributes&#8221;=hex:50,01,00,20 &#8220;CallForAttributes&#8221;=dword:00000000 Now save this text file as a .reg file, such as &#8220;Rename Recycle Bin.reg&#8221; and put it wherever you like. Double click on the file, and when it asks you if you [...]]]></description>
			<content:encoded><![CDATA[<p>Open up your favorite plain text editor (notepad, for example) and copy the</p>
<p>following text into a new file:</p>
<p>REGEDIT4</p>
<p>[HKEY_CLASSES_ROOT\CLSID\{645FF040-5081-101B-9F08-00AA002F954E}\ShellFolder]<br />
&#8220;Attributes&#8221;=hex:50,01,00,20</p>
<p>&#8220;CallForAttributes&#8221;=dword:00000000</p>
<p>Now save this text file as a .reg file, such as &#8220;Rename Recycle Bin.reg&#8221; and</p>
<p>put it wherever you like. Double click on the file, and when it asks you if</p>
<p>you want to import it into the registry, choose Yes. You&#8217;ll notice a new</p>
<p>option in the right-click menu to Rename the Recycle Bin. You can also</p>
<p>rename it by highlighing the Bin and hitting F2, or by highlighting it and</p>
<p>clicking on the file name (just like renaming any other file.<br />
If you want to turn off this new feature, make another .reg file with the</p>
<p>same content as above, but change the first number in the &#8220;Attributes&#8221;=hex:</p>
<p>line from 50 to 40 and import that file into the registry.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/rename-recycle-bin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The Bootcfg command and its uses</title>
		<link>http://ossmall.info/the-bootcfg-command-and-its-uses/</link>
		<comments>http://ossmall.info/the-bootcfg-command-and-its-uses/#comments</comments>
		<pubDate>Fri, 30 Dec 2011 21:18:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/the-bootcfg-command-and-its-uses/</guid>
		<description><![CDATA[The bootcfg command is a Microsoft Windows XP Recovery Console command that manipulates the Boot.ini file. This command has a function that can scan your hard disks for Microsoft Windows NT 4.0, Microsoft Windows 2000, and Windows XP installations, and then add them to an existing Boot.ini file. The function can also rebuild a new [...]]]></description>
			<content:encoded><![CDATA[<p>The <strong>bootcfg</strong> command is a Microsoft Windows XP Recovery Console command that manipulates the Boot.ini file. This command has a function that can scan your hard disks for Microsoft Windows NT 4.0, Microsoft Windows 2000, and Windows XP installations, and then add them to an existing Boot.ini file. The function can also rebuild a new Boot.ini file if one does not exist. With the <strong>bootcfg</strong> command, additional Boot.ini file parameters can be added to existing or new entries.</p>
<p>To use the <strong>bootcfg</strong> command, start the Recovery Console with the Windows XP CD-ROM, and then click <strong>Recovery Console</strong>. Or, install the Recovery Console locally, and then select the command from the <strong>Boot</strong> menu.</p>
<p>The <strong>bootcfg</strong> command has the following uses:</p>
<table border="1" cellpadding="0">
<tr>
<td></td>
<td>The <strong>bootcfg /default</strong> command sets the default   operating system option in the <strong>Boot</strong> menu. The command   selects the operating system entry automatically.</td>
</tr>
<tr>
<td></td>
<td>The <strong>bootcfg /add</strong> command scans the computer for   Windows NT 4.0, Windows 2000, or Windows XP (if it is dual booting) installations,   and then displays the results. From this location, you can add an   installation to the <strong>Boot</strong> menu.You may receive a message that is similar to the following message:</p>
<p>Scanning all disks for Windows Installations<br />
Please wait, since this may take a while&#8230;</p>
<p>Total Identified Windows Installs: 2</p>
<p>[1] C:\Windows<br />
[2] D:\Windows</p>
<p>Select installation to add: (select a number)</p>
<p>Enter Load Identifier: (Custom description for an operating system loading   from the Boot menu)<br />
Enter Operating System Load Options: (that is: /fastdetect)</p>
<p>This process adds a new entry in the <strong>Boot</strong>   menu. When you add an installation, the <strong>bootcfg</strong> command also makes the   installation the default operating system boot entry.</td>
</tr>
<tr>
<td></td>
<td>The <strong>bootcfg /rebuild</strong> command scans the hard disks   of the computer for Windows NT 4.0, Windows 2000, or Windows XP   installations, and then displays the results. You can add the detected   Windows installations.You may receive a message that is similar to the following message:</p>
<p>Total Identified Windows Installs: 2</p>
<p>[1] C:\Windows<br />
Add installation to boot list? (Yes/No/All):<br />
Enter Load Identifier: (Custom description for an operating system loading   from the Boot menu)<br />
Enter Operating System Load Options: (that is: /fastdetect)</p>
<p>[2] D:\Windows<br />
Add installation to boot list? (Yes/No/All):<br />
Enter Load Identifier: (Custom description for an operating system loading   from the Boot menu)<br />
Enter Operating System Load Options: (that is: /fastdetect)</td>
</tr>
<tr>
<td></td>
<td>The <strong>bootcfg /scan</strong> command scans the hard disks of   the computer for Windows NT 4.0, Windows 2000 or Windows XP installations,   and then displays the results.You may receive a message that is similar to the following message:</p>
<p>Scanning all disks for Windows Installations<br />
Please wait, since this may take a while&#8230;</p>
<p>Total Identified Windows Installs: 2</p>
<p>[1] C:\Windows<br />
[2] D:\Windows</td>
</tr>
<tr>
<td></td>
<td>The <strong>bootcfg /list</strong> command reads the Boot.ini file,   and then displays the operating system identifier, the operating system load   options, and the operating system location (path).You may receive a message that is similar to the following message:</p>
<p>Total entries in boot list: 2</p>
<p>[1] Microsoft Windows Whistler Professional<br />
Operating System Load Options: /fastdetect<br />
Operating System Location: D:\Windows</p>
<p>[2] Microsoft Windows Whistler Server<br />
Operating System Load Options: /fastdetect<br />
Operating System Location: C:\Windows</td>
</tr>
<tr>
<td></td>
<td>The <strong>bootcfg /redirect</strong> command enables redirection   in the boot loader with the configuration specified as port and baudrate.   This command is used to turn on the Headless Administration feature.The following example uses this command:</p>
<p><strong>bootcfg /redirect com1 115200</strong><br />
<strong>bootcfg /redirect useBiosSettings</strong></td>
</tr>
<tr>
<td></td>
<td>The <strong>bootcfg /disableredirect</strong> command disables   redirection in the boot loader with the configuration specified as port and   baudrate. This command is used to turn off the Headless Administration   feature.</td>
</tr>
</table>
<p>You can also modify the Boot.ini file in the Windows XP graphical user interface (GUI):</p>
<table border="1" cellpadding="0">
<tr>
<td>1.</td>
<td>Click <strong>Start</strong>, click <strong>Control Panel</strong>,   click <strong>Performance and Maintenance</strong>, and then click <strong>System</strong>.</td>
</tr>
<tr>
<td>2.</td>
<td>On the <strong>Advanced</strong> tab, click <strong>Startup   and Recovery</strong>, and then click <strong>Settings</strong>.</td>
</tr>
<tr>
<td>3.</td>
<td>Under <strong>System Startup</strong>, click <strong>Edit</strong>.</td>
</tr>
<tr>
<td>4.</td>
<td>Save your changes, and then click <strong>OK</strong>.</td>
</tr>
<tr>
<td>5.</td>
<td>Click <strong>Start</strong>, click <strong>Run</strong>,   and then type msconfig to start the System   Configuration utility.</td>
</tr>
<tr>
<td>6.</td>
<td>Click the <strong>Boot.ini</strong> tab.</td>
</tr>
</table>
<hr align="center" size="2" width="100%" />
<h5>APPLIES TO</h5>
<table border="0" cellpadding="0">
<tr>
<td></td>
<td>Microsoft Windows XP Home Edition</td>
</tr>
<tr>
<td></td>
<td>Microsoft Windows XP Professional</td>
</tr>
</table>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h5>Microsoft Knowledge Base Article</h5>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<p><o:p> </o:p></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/the-bootcfg-command-and-its-uses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Turn off Thumbs.db</title>
		<link>http://ossmall.info/turn-off-thumbsdb/</link>
		<comments>http://ossmall.info/turn-off-thumbsdb/#comments</comments>
		<pubDate>Tue, 27 Dec 2011 09:06:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/turn-off-thumbsdb/</guid>
		<description><![CDATA[Thumbs.db is a file which is created in a folder with Movies or Pictures so that you can view a piece of their content without actualy opening them (you can&#8217;t see thumbnails unless you have the option to view system files turned on). Thumbs.db is there so that you don&#8217;t need to reload a thumbnail [...]]]></description>
			<content:encoded><![CDATA[<p>Thumbs.db is a file which is created in a folder with Movies or Pictures so that you can view a piece of their content without actualy opening them (you can&#8217;t see thumbnails unless you have the option to view system files turned on). Thumbs.db is there so that you don&#8217;t need to reload a thumbnail everytime you browse that folder. Sad fact is, is Thumbs.db takes up about 2kb per file and if you edit a lot of stuff its annoying to keep seeing them popping up all over your computer. You can remove thumbs.db quite easily by following these steps:</p>
<p>1. Go to Run in the startmenu<br />
2. Type gpedit.msc<br />
3. Click OK and the Group Policy will open<br />
4. Go to User Configuration/Administrative Template/Windows Components/ Windows Explorer<br />
5. Scroll down to the bottom of the long list of stuff that now shows up in the menu on the right. Double-Click on Turn off caching of thumbnail pictures.<br />
6. Click on Enable then Apply, Ok. And now you no longer have this annoying problem.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/turn-off-thumbsdb/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove the Highlight from Newly Installed Programs</title>
		<link>http://ossmall.info/remove-the-highlight-from-newly-installed-programs/</link>
		<comments>http://ossmall.info/remove-the-highlight-from-newly-installed-programs/#comments</comments>
		<pubDate>Fri, 16 Dec 2011 13:38:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/remove-the-highlight-from-newly-installed-programs/</guid>
		<description><![CDATA[Remove the popup window that tells you when new software has been installed. Click [Start] &#8211; Right click where your name is shown at the top of the Start Menu and click [Properties] On the Taskbar and Start Menu Property Sheet select the [Start Menu] tab at the top, then next to [Start Menu] at [...]]]></description>
			<content:encoded><![CDATA[<p align="left"><font face="Tahoma" size="2">Remove the popup  			window that tells you when new software has been installed.</font></p>
<p align="left"><font face="Tahoma" size="2"><br />
Click [Start] &#8211; Right click where your name is shown at the top of  			the Start Menu and click [Properties]<br />
On the Taskbar and Start Menu Property Sheet select the [Start  			Menu] tab at the top, then next to [Start Menu] at the bottom of the  			sheet click [Customize]<br />
On the Customize Start Menu Property Sheet, select the [Advanced]  			tab and remove the checkmark next to [Highlight Newly Installed  			Programs]<br />
Click [OK] [Apply] and [OK] to finish the process and remove any  			existing highlights.</font></p>
<p align="left">&nbsp;</p>
<p align="left"><font face="Tahoma" size="2">If the highlight  			persists even after making the changes above you can disable it via  			the registry. Make sure you have a backup prior to editing the  			registry.</font></p>
<p align="left">&nbsp;</p>
<p align="left"><font face="Tahoma" size="2">[Start] [Run] [Regedit]<br />
Registry Key:  			HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\<br />
Advanced<br />
Modify/Create the Value Name according to the Value Data  				listed below.<br />
Data Type: REG_DWORD [Dword Value] // Value Name: Start_NotifyNewApps<br />
Value Data: [0 = No Highlight/ 1 = Highlighted]<br />
Exit Registry and Reboot</font></p>
<p align="left">&nbsp;</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h5>Microsoft Knowledge Base Article</h5>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<p><o:p> </o:p></p>
<p align="left">&nbsp;</p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/remove-the-highlight-from-newly-installed-programs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Virus scanning recommendations for computers that are running Windows Server 2003, Windows 2000, or Windows XP</title>
		<link>http://ossmall.info/virus-scanning-recommendations-for-computers-that-are-running-windows-server-2003-windows-2000-or-windows-xp/</link>
		<comments>http://ossmall.info/virus-scanning-recommendations-for-computers-that-are-running-windows-server-2003-windows-2000-or-windows-xp/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 07:18:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Misc Tips]]></category>
		<category><![CDATA[XP HowTo]]></category>
		<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/virus-scanning-recommendations-for-computers-that-are-running-windows-server-2003-windows-2000-or-windows-xp/</guid>
		<description><![CDATA[Important This article contains information about how to modify the registry. Make sure to back up the registry before you modify it. Make sure that you know how to restore the registry if a problem occurs. INTRODUCTION This article contains recommendations that may help you protect a computer that is running Microsoft Windows Server 2003, [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><strong>Important</strong> This article contains information about how to modify the registry. Make sure to back up the registry before you modify it. Make sure that you know how to restore the registry if a problem occurs.</p>
<p class="MsoNormal"><o:p> </o:p></p>
<h3>INTRODUCTION<o:p></o:p></h3>
<p class="MsoNormal"><script type="text/javascript"> loadTOCNode(1, \'summary\'); </script>This article contains recommendations that may help you protect a computer that is running Microsoft Windows Server 2003, Microsoft Windows 2000, or Microsoft Windows XP from viruses. This article also contains information to help you minimize the effect of antivirus software on system and network performance.<o:p></o:p></p>
<p class="topofpage"><o:p> </o:p></p>
<h3>MORE INFORMATION<o:p></o:p></h3>
<h4><script type="text/javascript"> loadTOCNode(1, \'moreinformation\'); </script>For computers that are running Windows Server 2003, Windows 2000, or Windows XP<o:p></o:p></h4>
<p class="MsoNormal"><script type="text/javascript"> loadTOCNode(2, \'moreinformation\'); </script>Do not scan the following files and folders. These files are not at risk of infection. If you scan these files, serious performance problems may occur because of file locking. Where a specific set of files is identified by name, exclude only those files instead of the whole folder. Sometimes, the whole folder must be excluded. Do not exclude any one of these based on the file name extension. For example, do not exclude all files that have a .dit extension. Microsoft has no control over other files that may use the same extensions as the following files.<o:p></o:p></p>
<table class="MsoNormalTable" border="0" cellpadding="0">
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Microsoft Windows Update or Automatic Update related files<o:p></o:p></p>
<table class="MsoNormalTable" border="0" cellpadding="0">
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">The Windows Update or Automatic Update database file.     This file is located in the following folder: <o:p></o:p></p>
<p class="MsoNormal">%windir%\SoftwareDistribution\Datastore<o:p></o:p></p>
<p class="MsoNormal">Exclude the <strong>Datastore.edb</strong> file.<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">The transaction log files. These files are located in     the following folder:<o:p></o:p></p>
<p class="MsoNormal">%windir%\SoftwareDistribution\Datastore\Logs<o:p></o:p></p>
<p class="MsoNormal">Exclude the following files:<o:p></o:p></p>
<table class="MsoNormalTable" border="0" cellpadding="0">
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Edb*.log</p>
<p><strong>Note</strong> The wildcard character indicates that there may be several       files.<o:p></o:p></td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Res1.log<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Res2.log<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Edb.chk<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Tmp.edb<o:p></o:p></p>
</td>
</tr>
</table>
<p class="MsoNormal"><o:p></o:p></p>
</td>
</tr>
</table>
<p class="MsoNormal"><o:p></o:p></p>
</td>
</tr>
</table>
<p class="topofpage"><o:p> </o:p></p>
<h4>For Windows Server 2003 and Windows 2000 domain controllers<o:p></o:p></h4>
<p class="MsoNormal"><script type="text/javascript"> loadTOCNode(2, \'moreinformation\'); </script>Because domain controllers provide a critical service to clients, the risk of disruption of their activities as a result of malicious code from a virus must be minimized. Antivirus software is the generally accepted way to mitigate the risk of virus infection. Install and configure antivirus software so that the risk to the domain controller is reduced as much as possible and so that performance is affected as little as possible. The following list contains recommendations to help you configure and install antivirus software on a Windows 2000 or on a Windows Server 2003 domain controller:</p>
<p><strong>Warning</strong> Microsoft recommends that you apply the following specified configuration to a test configuration to make sure that in your specific environment it does not introduce unexpected factors or compromise the stability of the system. The risk from too much scanning is that files are inappropriately flagged as having been changed, resulting in excessive replication in Active Directory. If testing verifies that replication is not affected by the following recommendations, you can apply the antivirus software to the production environment.</p>
<p><strong>Note </strong>Specific recommendations from antivirus software vendors may supersede the recommendations in the article.<o:p></o:p></p>
<table class="MsoNormalTable" border="0" cellpadding="0">
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Antivirus software must be installed on all domain   controllers in the enterprise. Ideally, try to install such software on all   other server and client systems that have to interact with the domain   controllers. It is optimal to catch the virus at the earliest point, such as   at the firewall or at the client system where the virus is first introduced.   This prevents the virus from ever reaching the infrastructure systems that   the clients depend on. <o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Use a version of antivirus software that is designed to   work with Active Directory domain controllers and that uses the correct   Application Programming Interfaces (APIs) to access files on the server.   Older versions of most vendor software inappropriately modify file metadata   as it is scanned, causing the File Replication Service engine to recognize a   file change and therefore schedule the file for replication. Newer versions   prevent this problem. For additional information, click the following article   number to view the article in the Microsoft Knowledge Base: <o:p></o:p></p>
<p class="MsoNormal"><a href="http://support.microsoft.com/kb/815263/">815263</a><span class="plink"> (http://support.microsoft.com/kb/815263/)</span> Antivirus,   backup, and disk optimization programs that are compatible with the File   Replication service <o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Do not use a domain controller to browse the Web or to   perform any other activities that may introduce malicious code. <o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Where possible, do not use the domain controller as a file   sharing server. Virus scanning software must be run against all files in   those shares, and this can put an unsatisfactory load on the processor and   the memory resources of the server <o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Do not place Active Directory or FRS database and log   files on NTFS file system compressed volumes.<br />
For additional information, click the following article number to view the   article in the Microsoft Knowledge Base: <o:p></o:p></p>
<p class="MsoNormal"><a href="http://support.microsoft.com/kb/318116/">318116</a><span class="plink"> (http://support.microsoft.com/kb/318116/)</span> Issues with Jet   Databases on compressed drives <o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Do not scan the following files and folders. These files   are not at risk of infection, and if you include them, this may cause serious   performance problems because of file locking. Where a specific set of files   is identified by name, exclude only those files instead of the whole folder.   Sometimes, the whole folder must be excluded. Do not exclude any of these   based on the file-name extension; for example, do not exclude all files with   a .dit extension). Microsoft has no control over other files that may use the   same extension as those shown here.</p>
<p><strong>Warning</strong> Serious problems might occur if you modify the registry   incorrectly by using Registry Editor or by using another method. These   problems might require that you reinstall your operating system. Microsoft   cannot guarantee that these problems can be solved. Modify the registry at   your own risk.<o:p></o:p></p>
<table class="MsoNormalTable" border="0" cellpadding="0">
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Active Directory and Active Directory-related files: <o:p></o:p></p>
<table class="MsoNormalTable" border="0" cellpadding="0">
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Main NTDS database files. The location of these files       is specified in the following registry key: <o:p></o:p></p>
<p class="MsoNormal">HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\NTDS\Parameters\DSA       Database File<o:p></o:p></p>
<p class="MsoNormal">The default location is %windir%\ntds. Exclude the       following files: <o:p></o:p></p>
<p class="MsoNormal">Ntds.dit<br />
Ntds.pat<o:p></o:p></td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Active Directory transaction log files. The location       of these files is specified in the following registry key: <o:p></o:p></p>
<p class="MsoNormal">HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\NTDS\Parameters\Database       Log Files Path<o:p></o:p></p>
<p class="MsoNormal">The default location is %windir%\ntds. Exclude the       following files: <o:p></o:p></p>
<p class="MsoNormal">EDB*.log (the wildcard character indicates that there       may be several files)<br />
Res1.log<br />
Res2.log<br />
Ntds.pat<o:p></o:p></p>
<p class="MsoNormal"><strong>Note</strong> Microsoft Windows Server 2003 no longer       uses the Ntds.pat file.<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">The NTDS Working folder that is specified in the       following registry key: <o:p></o:p></p>
<p class="MsoNormal">HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\NTDS\Parameters\DSA       Working Directory<o:p></o:p></p>
<p class="MsoNormal">Exclude the following files: <o:p></o:p></p>
<p class="MsoNormal">Temp.edb<br />
Edb.chk<o:p></o:p></td>
</tr>
</table>
<p class="MsoNormal"><o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">SYSVOL files: <o:p></o:p></p>
<table class="MsoNormalTable" border="0" cellpadding="0">
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">The File Replication Service (FRS) Working folder that       is specified in the following registry key: <o:p></o:p></p>
<p class="MsoNormal">HKEY_LOCAL_MACHINE\System\CurrentControlSet\Services\NtFrs\Parameters\Working       Directory<o:p></o:p></p>
<p class="MsoNormal">Exclude the following files: <o:p></o:p></p>
<p class="MsoNormal">FRS Working Dir\jet\sys\edb.chk<br />
FRS Working Dir\jet\ntfrs.jdb<br />
FRS Working Dir\jet\log\*.log<o:p></o:p></td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">The FRS Database Log files that are located in the       following registry key: <o:p></o:p></p>
<p class="MsoNormal">HKEY_LOCAL_MACHINE\system\currentcontrolset\services\NtFrs\Parameters\DB       Log File Directory<o:p></o:p></p>
<p class="MsoNormal">The default location is %windir%\ntfrs. Exclude the       following files: <o:p></o:p></p>
<p class="MsoNormal">FRS Working Dir\jet\log\*.log (if registry key is not       set)<br />
DB Log File Directory\log\*.log (if registry key is set) <o:p></o:p></td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">The Staging folder that is specified in the following       registry key and all of the Staging folder&#8217;s sub-folders: <o:p></o:p></p>
<p class="MsoNormal">HKEY_LOCAL_MACHINE\system\currentcontrolset\services\NtFrs\Parameters\Replica       Sets\GUID\Replica Set Stage<o:p></o:p></p>
<p class="MsoNormal"> The current location of the Staging folder and all of its sub-folders is       the file system reparse target of the replica set staging folders.       Staging defaults to the following location:</p>
<p><strong>%systemroot%\sysvol\staging areas</strong></p>
<p>The current location of the SYSVOL\SYSVOL folder and all of its       sub-folders is the file system reparse target of the replica set root.       The SYSVOL\SYSVOL folder defaults to the following location:</p>
<p><strong>%systemroot%\sysvol\sysvol</strong><o:p></o:p></td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">The FRS Preinstall folder that is in the following       location: <o:p></o:p></p>
<p class="MsoNormal"><var>Replica_root</var>\DO_NOT_REMOVE_NtFrs_PreInstall_Directory<o:p></o:p></p>
<p class="MsoNormal">The Preinstall folder is always open when FRS is       running.<o:p></o:p></p>
</td>
</tr>
</table>
<p class="MsoNormal"> In summary, the targeted and excluded list of folders for a SYSVOL tree     that is placed in its default location would look similar to the following:<o:p></o:p></p>
<pre>1. %systemroot%\sysvol<span>                                                  </span>Exclude<o:p></o:p></pre>
<pre>2. %systemroot%\sysvol\domain <span>                                          </span>Scan<o:p></o:p></pre>
<pre>3. %systemroot%\sysvol\domain\DO_NOT_REMOVE_NtFrs_PreInstall_Directory<span>  </span>Exclude<o:p></o:p></pre>
<pre>4. %systemroot%\sysvol\domain\Policies<span>                                  </span>Scan<o:p></o:p></pre>
<pre>5. %systemroot%\sysvol\domain\Scripts<span>               </span><span>                    </span>Scan<o:p></o:p></pre>
<pre>6. %systemroot%\sysvol\staging<span>                                          </span>Exclude<o:p></o:p></pre>
<pre>7. %systemroot%\sysvol\staging areas<span>                                    </span>Exclude<o:p></o:p></pre>
<pre>8. %systemroot%\sysvol\sysvol<span>                                          </span><span> </span>Exclude<o:p></o:p></pre>
<p class="MsoNormal">&nbsp;</p>
<p>If any one of these folder or files have been moved or placed in a     different location, scan or exclude the equivalent element.<o:p></o:p></td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">DFS</p>
<p>The same resources that are excluded for a SYSVOL replica set must also be excluded     when FRS is used to replicate shares that are mapped to the DFS root and     link targets on Windows 2000 or Windows Server 2003-based member computers     or domain controllers.<o:p></o:p></td>
</tr>
</table>
<p class="MsoNormal"><o:p></o:p></p>
</td>
</tr>
</table>
<p class="topofpage"><o:p> </o:p></p>
<p class="MsoNormal" style="text-align: center" align="center">&nbsp;</p>
<hr align="center" size="2" width="100%" />
<h5>APPLIES TO<o:p></o:p></h5>
<table class="MsoNormalTable" border="0" cellpadding="0">
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Microsoft Windows Server 2003, Datacenter Edition (32-bit   x86)<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Microsoft Windows Server 2003, Enterprise Edition (32-bit   x86)<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Microsoft Windows Server 2003, Standard Edition (32-bit   x86)<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Microsoft Windows XP Professional<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Microsoft Windows XP Home Edition<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Microsoft Windows XP Tablet PC Edition<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Microsoft Windows XP <st1:place w:st="on"><st1:placename w:st="on">Media</st1:placename> <st1:placetype w:st="on">Center</st1:placetype></st1:place>   Edition 2002<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Microsoft Windows 2000 Advanced Server<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Microsoft Windows 2000 Professional Edition<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Microsoft Windows 2000 Datacenter Server<o:p></o:p></p>
</td>
</tr>
<tr>
<td style="padding: 0.75pt">
<p class="MsoNormal">•<o:p></o:p></p>
</td>
<td style="padding: 0.75pt">
<p class="MsoNormal">Microsoft Windows 2000 Server<o:p></o:p></p>
</td>
</tr>
</table>
<p class="MsoNormal"><o:p> </o:p></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/virus-scanning-recommendations-for-computers-that-are-running-windows-server-2003-windows-2000-or-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to make Status Bar permanently visible</title>
		<link>http://ossmall.info/how-to-make-status-bar-parmanently-visible/</link>
		<comments>http://ossmall.info/how-to-make-status-bar-parmanently-visible/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 14:19:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/how-to-make-status-bar-parmanently-visible/</guid>
		<description><![CDATA[Here are the steps you have to make:1. Open just one window of IE 2. Click the &#8220;View&#8221; menu, then &#8220;Status Bar&#8221; 3. Hold down Ctrl while clicking the X to close the window. 4. Open My Computer 5. Click the &#8220;View&#8221; menu, then &#8220;Status Bar&#8221; 6. Click the &#8220;Tools&#8221; menu, then &#8220;Folder Options&#8221; 7. [...]]]></description>
			<content:encoded><![CDATA[<p>Here are the steps you have to make:1.  Open just one window of IE<br />
2.  Click the &#8220;View&#8221; menu, then &#8220;Status Bar&#8221;<br />
3.  Hold down Ctrl while clicking the X to close the window.<br />
4.  Open My Computer<br />
5.  Click the &#8220;View&#8221; menu, then &#8220;Status Bar&#8221;<br />
6.  Click the &#8220;Tools&#8221; menu, then &#8220;Folder Options&#8221;<br />
7.  Click the &#8220;View&#8221; tab<br />
8.  Click &#8220;Apply to all folders&#8221;<br />
9.  Click &#8220;OK&#8221;<br />
10.  Close Windows Explorer.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/how-to-make-status-bar-parmanently-visible/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DOS and Windows IP Command Lines</title>
		<link>http://ossmall.info/dos-and-windows-ip-command-lines/</link>
		<comments>http://ossmall.info/dos-and-windows-ip-command-lines/#comments</comments>
		<pubDate>Sun, 27 Nov 2011 18:56:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Misc Tips]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/dos-and-windows-ip-command-lines/</guid>
		<description><![CDATA[Display Connection Configuration: ipconfig /all Display DNS Cache Info Configuration: ipconfig /displaydns Clear DNS Cache: ipconfig /flushdns Release All IP Address Connections: ipconfig /release Renew All IP Address Connections: ipconfig /renew Re-Register the DNS connections: ipconfig /registerdns Change/Modify DHCP Class ID: ipconfig /setclassid Network Connections: control netconnections Network Setup Wizard: netsetup.cpl Test Connectivity: ping www.ossmall.info [...]]]></description>
			<content:encoded><![CDATA[<p class="MsoNormal"><strong>Display Connection Configuration:</strong> ipconfig /all</p>
<p><strong>Display DNS Cache Info Configuration:</strong> ipconfig /displaydns</p>
<p><strong>Clear DNS Cache:</strong> ipconfig /flushdns</p>
<p><strong>Release All IP Address Connections:</strong> ipconfig /release</p>
<p><strong>Renew All IP Address Connections:</strong> ipconfig /renew</p>
<p><strong>Re-Register the DNS connections:</strong> ipconfig /registerdns</p>
<p><strong>Change/Modify DHCP Class ID:</strong> ipconfig /setclassid<o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<p class="MsoNormal"><strong>Network Connections:</strong> control netconnections</p>
<p><strong>Network Setup Wizard:</strong> netsetup.cpl</p>
<p><strong>Test Connectivity:</strong> ping www.ossmall.info</p>
<p><strong>Trace IP address Route:</strong> tracert</p>
<p><strong>Displays the TCP/IP protocol sessions:</strong> netstat</p>
<p><st1:street w:st="on"><st1:address w:st="on"><strong>Display Local Route</strong></st1:address></st1:street><strong>:</strong> route</p>
<p><strong>Display Resolved MAC Addresses:</strong> arp</p>
<p><strong>Display Name of Computer Currently on:</strong> hostname</p>
<p><strong>Display DHCP Class Information:</strong> ipconfig /showclassid</p>
<p class="MsoNormal"><a href="http://support.microsoft.com/tou/"><nobr></nobr></a><o:p></o:p></p>
<p class="MsoNormal"><o:p> </o:p></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/dos-and-windows-ip-command-lines/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>In Windows Vista  and XP, Event Viewer incorrectly displays IPv6 addresses in event descriptions</title>
		<link>http://ossmall.info/in-windows-vista-and-xp-event-viewer-incorrectly-displays-ipv6-addresses-in-event-descriptions/</link>
		<comments>http://ossmall.info/in-windows-vista-and-xp-event-viewer-incorrectly-displays-ipv6-addresses-in-event-descriptions/#comments</comments>
		<pubDate>Wed, 23 Nov 2011 20:38:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/in-windows-vista-and-xp-event-viewer-incorrectly-displays-ipv6-addresses-in-event-descriptions/</guid>
		<description><![CDATA[In Windows, when you use Event Viewer to view an event log that contains Microsoft Internet Protocol version 6 (IPv6) addresses, the IPv6 addresses do not display correctly in the descriptions of events. For example, an element of the event log payload replaces the scope ID part of the IPv6 address. In some cases, the [...]]]></description>
			<content:encoded><![CDATA[<p>In Windows, when you use Event Viewer to view an event log that contains Microsoft Internet Protocol version 6 (IPv6) addresses, the IPv6 addresses do not display correctly in the descriptions of events. For example, an element of the event log payload replaces the scope ID part of the IPv6 address. In some cases, the multiple replacements are repeated several times in the IPv6 address.</p>
<h2>CAUSE</h2>
<p><script type="text/javascript"> loadTOCNode(1, \'cause\'); </script>This problem occurs when the IPv6 address contains a scope ID. A scope ID is represented by a percent sign (%) that is followed by a number.</p>
<p>In the following example, the IPv6 address contains a scope ID of 1:</p>
<p><var>1234:5678:90123:4567:8901:2345%1</var></p>
<p>Such an address will not display correctly in Event Viewer.</p>
<p>The event descriptions are formed by using a template and by using replacement values from the event payload. You do this by replacing any percent sign that is followed by a number with the appropriate event parameter.</p>
<p>In the <var>1234:5678:90123:4567:8901:2345%1</var> example, <var>%1</var> will be replaced with the first parameter from the event payload. This replacement may be repeated multiple times. The number of times this replacement is repeated depends on the version of the operating system. Multiple replacements will occur if the parameter number that contains the IPv6 address matches the scope ID.</p>
<p><strong>Note</strong> You cannot use an escape character to replace the percent sign in the IPv6 address.</p>
<h2>WORKAROUND</h2>
<p><script type="text/javascript"> loadTOCNode(1, \'workaround\'); </script>To work around this issue when you publish a series of events into an event log, use one of the following methods:</p>
<table border="0" cellpadding="0">
<tr>
<td>&nbsp;</td>
<td>Preprocess the IPv6 parameters to make sure that the scope   ID is removed. For example, use the following IPv6 address format:<var>1234:5678:90123:4567:8901:2345</var></td>
</tr>
<tr>
<td>&nbsp;</td>
<td>Preprocess the IPv6 parameters to make sure that a   character, such as space, is inserted between the percent sign and the   numeric scope ID. For example, use the following IPv6 address format:<var>1234:5678:90123:4567:8901:2345% 1</var></td>
</tr>
</table>
<p>Other workarounds including the following methods:</p>
<table border="0" cellpadding="0">
<tr>
<td>&nbsp;</td>
<td>Remove the parameter that contains IPv6 address from the   event description.</td>
</tr>
<tr>
<td>&nbsp;</td>
<td>Add the parameter to the binary data that is associated   with the event.</td>
</tr>
</table>
<hr align="center" size="2" width="100%" />
<h5>APPLIES TO</h5>
<table border="0" cellpadding="0">
<tr>
<td>
<ul>
<li></li>
</ul>
</td>
<td>Windows Vista Ultimate</td>
</tr>
<tr>
<td>
<ul>
<li></li>
</ul>
</td>
<td>Windows Vista Home Premium</td>
</tr>
<tr>
<td>
<ul>
<li></li>
</ul>
</td>
<td>Windows Vista Business</td>
</tr>
<tr>
<td>
<ul>
<li></li>
</ul>
</td>
<td>Windows Vista Enterprise</td>
</tr>
<tr>
<td>
<ul>
<li></li>
</ul>
</td>
<td>Windows Vista Home Basic</td>
</tr>
<tr>
<td>
<ul>
<li></li>
</ul>
</td>
<td>Microsoft Windows XP Professional</td>
</tr>
<tr>
<td>
<ul>
<li></li>
</ul>
</td>
<td>Microsoft Windows XP Home Edition</td>
</tr>
<tr>
<td>
<ul>
<li></li>
</ul>
</td>
<td>Microsoft Windows XP Media Center   Edition 2002</td>
</tr>
<tr>
<td>
<ul>
<li></li>
</ul>
</td>
<td>Microsoft Windows XP Tablet PC Edition</td>
</tr>
<tr>
<td>
<ul>
<li></li>
</ul>
</td>
<td>Microsoft Windows Millennium Edition</td>
</tr>
</table>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h5>Microsoft Knowledge Base Article</h5>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<p><o:p> </o:p></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/in-windows-vista-and-xp-event-viewer-incorrectly-displays-ipv6-addresses-in-event-descriptions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Memory Performance Tweak XP</title>
		<link>http://ossmall.info/memory-performance-tweak-xp/</link>
		<comments>http://ossmall.info/memory-performance-tweak-xp/#comments</comments>
		<pubDate>Mon, 21 Nov 2011 12:11:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/memory-performance-tweak-xp/</guid>
		<description><![CDATA[management -at least 512MB of ram recommended go to start\run\regedit -and then to the following key HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management DisablePagingExecutive -double click it and in the decimal put a 1 &#8211; this allows XP to keep data in memory now instead of paging sections of ram to harddrive yeilds faster performance. LargeSystemCache- double click it [...]]]></description>
			<content:encoded><![CDATA[<p>management -at least 512MB of ram recommended</p>
<p>go to start\run\regedit -and then to the following key</p>
<p>HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Session Manager\Memory Management</p>
<ol>
<li>DisablePagingExecutive -double click it and in the decimal put a 1 &#8211; this allows XP to keep data in memory now instead of paging sections of ram to harddrive yeilds faster performance.</li>
<li>LargeSystemCache- double click it and change the decimal to 1 -this allows XP Kernel to Run in memory improves system performance alot</li>
</ol>
<p>Reboot the machine , and watch the miracle</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/memory-performance-tweak-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to handle suspicious e-mail</title>
		<link>http://ossmall.info/how-to-handle-suspicious-e-mail/</link>
		<comments>http://ossmall.info/how-to-handle-suspicious-e-mail/#comments</comments>
		<pubDate>Sun, 20 Nov 2011 07:34:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Misc Tips]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/how-to-handle-suspicious-e-mail/</guid>
		<description><![CDATA[Follow these guidelines to help protect yourself from phishing scams sent through e-mail. 1. If you think you&#8217;ve received a phishing e-mail message, do not respond to it. 2. Report suspicious e-mail. Report the e-mail to the faked or &#8220;spoofed&#8221; organization. Contact the organization directly-not through the e-mail you received-and ask for confirmation. Or call [...]]]></description>
			<content:encoded><![CDATA[<p>Follow these guidelines to help protect yourself from phishing scams sent through e-mail.</p>
<h4><a title="ECB" name="ECB"></a>1. If you think you&#8217;ve received a phishing e-mail message, do not respond to it.</h4>
<h4><a title="EGB" name="EGB"></a>2. Report suspicious e-mail.</h4>
<p>Report the e-mail to the faked or &#8220;spoofed&#8221; organization.<br />
Contact the organization directly-not through the e-mail you received-and ask for confirmation. Or call the organization&#8217;s toll-free number and speak to a customer service representative. Report the e-mail to the proper authorities, including the FBI, the Federal Trade Commission (FTC), and the Anti-Phishing Working Group.</p>
<h4><a title="ESB" name="ESB"></a>3. Don&#8217;t click links in e-mail messages.</h4>
<p>Links in phishing e-mail messages often take you to phony sites that encourage you to transmit personal or financial information to con artists. Avoid clicking a link in an e-mail message unless you are sure of the destination. Even if the address bar displays the correct Web address, don&#8217;t risk being fooled. Con artists can display a fake URL in the address bar on your browser.</p>
<h4><a title="EZB" name="EZB"></a>4. Type addresses directly into your browser or use your personal bookmarks.</h4>
<p>If you need to update your account information or change your password, visit the Web site by using your personal bookmark or by typing the URL directly into your browser.</p>
<h4><a title="E3B" name="E3B"></a>5. Check the security certificate before you enter personal or financial information into a Web site.</h4>
<p>Make sure the site is secure before you type. In Internet Explorer, you can do this by checking the yellow lock icon on the status bar, as shown in the following example.</p>
<p>The closed lock icon signifies that the Web site uses encryption to help protect any sensitive, personal information that you enter, such as your credit card number, Social Security number, or payment details. It&#8217;s important to note that this symbol doesn&#8217;t need to appear on every page of a site, only on those pages that request personal information. Unfortunately, even the lock symbol can be faked. To help increase your safety, double-click the lock icon to display the security certificate for the site. The name following <strong>Issued to</strong> should match the name of the site. If the name differs, you may be on a fake site, also called a &#8220;spoofed&#8221; site. If you&#8217;re not sure whether a certificate is legitimate, don&#8217;t enter any personal information. Play it safe and leave.</p>
<p><!--[if gte vml 1]>                                                    <![endif]--><img src="file:///C:/DOCUME%7E1/marius/LOCALS%7E1/Temp/msohtml1/01/clip_image001.gif" alt="Tip" title="Tip" v:shapes="_x0000_s1026" align="left" border="0" height="34" width="34" /><strong>Tip:</strong>  If you don&#8217;t see the status bar at the bottom of your browser window, click <strong>View</strong> at the top of the browser, and then select <strong>Status Bar</strong> to activate it.</p>
<h4><a title="EXC" name="EXC"></a>6. Don&#8217;t enter personal or financial information into pop-up windows.</h4>
<p>One common phishing technique is to launch a fake pop-up window when someone clicks a link in a phishing e-mail message. To make the pop-up window look more convincing, it may be displayed over a window you trust. Even if the pop-up window looks official or claims to be secure, avoid entering sensitive information, because there is no way to check the security certificate. Close pop-up windows by clicking the red X in the top right corner (a &#8220;cancel&#8221; button may not work as you&#8217;d expect).</p>
<h4><a title="E1C" name="E1C"></a>7. Use the latest products and services to help warn and protect you from online scams</h4>
<table border="0" cellpadding="0" cellspacing="0">
<tr>
<td valign="top"></td>
<td><strong>Install the latest e-mail software with spam and anti-phishing   capabilities like Outlook 2003, Windows Live Hotmail or others </strong>to help   identify and warn you about suspicious e-mails.</td>
</tr>
<tr>
<td valign="top"></td>
<td><strong>Install the Microsoft Phishing Filter </strong>using Internet Explorer 7   or Windows Live Toolbar. Phishing   Filter helps protect you from Web fraud and the risks of personal data theft   by warning or blocking you from reported phishing Web sites.</td>
</tr>
<tr>
<td valign="top"></td>
<td><strong>Install up-to-date antivirus and antispyware software.</strong> Some   phishing e-mail contains malicious or unwanted software that can track your   activities or simply slow your computer. Try new antivirus and comprehensive   computer health services like <a href="http://www.microsoft.com/protect/products/computer/onecare.mspx">Windows   Live OneCare </a>and to help prevent spyware or other unwanted software,   download <a href="http://www.microsoft.com/athome/security/spyware/software/default.mspx">Windows   Defender.</a></td>
</tr>
</table>
<h4><a title="E3D" name="E3D"></a>8. Update your computer software.</h4>
<p>At Microsoft, we continue to make improvements to our software to help protect your computer. Visit <a href="http://go.microsoft.com/?linkid=3646728">Microsoft Update</a> to scan your computer and install any high-priority updates that are offered to you.<br />
If you have Automatic Updates enabled, the updates are delivered to you when they are released, but you have to make sure you install them.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h5>Microsoft Knowledge Base Article</h5>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<p><o:p> </o:p></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/how-to-handle-suspicious-e-mail/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Unload.dll&#8217;s to Free Memory</title>
		<link>http://ossmall.info/unloaddlls-to-free-memory/</link>
		<comments>http://ossmall.info/unloaddlls-to-free-memory/#comments</comments>
		<pubDate>Sat, 05 Nov 2011 09:05:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/unloaddlls-to-free-memory/</guid>
		<description><![CDATA[Windows Explorer caches DLLs (Dynamic-Link Libraries) in memory for a period of time after the application using them has been closed. This can be an inefficient use of memory.Find the key [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]. Create a new sub-key named &#8216;AlwaysUnloadDLL&#8217; and set the default value to equal &#8217;1&#8242; to disable Windows caching the DLL in memory. Restart [...]]]></description>
			<content:encoded><![CDATA[<p>Windows Explorer caches DLLs (Dynamic-Link Libraries) in memory for a period of time after the application using them has been closed. This can be an inefficient use of memory.Find the key [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer]. Create a new sub-key named &#8216;AlwaysUnloadDLL&#8217; and set the default value to equal &#8217;1&#8242; to disable Windows caching the DLL in memory. Restart Windows for the change to take effect.I tried this after running a intense program,then watched the task manager;memory recovered it self.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/unloaddlls-to-free-memory/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>iTunes for Windows plays video files without any audio</title>
		<link>http://ossmall.info/itunes-for-windows-plays-video-files-without-any-audio/</link>
		<comments>http://ossmall.info/itunes-for-windows-plays-video-files-without-any-audio/#comments</comments>
		<pubDate>Sat, 08 Oct 2011 10:18:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Apple Products]]></category>
		<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/itunes-for-windows-plays-video-files-without-any-audio/</guid>
		<description><![CDATA[You may experience a situation in which songs will play normally, but all video files play without audio. This will affect video files purchased from the iTunes Store as well as other movies you&#8217;ve added to iTunes. Products affected iTunes for Windows To resolve this issue, it will be necessary to uninstall QuickTime (installed with [...]]]></description>
			<content:encoded><![CDATA[<p>You may experience a situation in which songs will play normally, but all video files play without audio. This will affect video files purchased from the iTunes Store as well as other movies you&#8217;ve added to iTunes.</p>
<h4>Products affected</h4>
<ul type="disc">
<li>iTunes for Windows</li>
</ul>
<p>To resolve this issue, it will be necessary to uninstall QuickTime (installed with iTunes), download the QuickTime standalone installer, and reinstall QuickTime. Follow the steps below to do this:</p>
<p><strong>Microsoft Windows Vista</strong></p>
<ol start="1" type="1">
<li>On the <strong>Start</strong> menu,      click <strong>Control Panel</strong>.</li>
<li>Under Programs, click      Uninstall a program.</li>
</ol>
<p>Alternately, in Classic View of Control Panel, click Programs and Features.</p>
<ol start="3" type="1">
<li>Select QuickTime.</li>
<li>Click Uninstall.</li>
<li>Repeat steps 3 and 4 if you      have multiple QuickTime entries listed.</li>
<li>Download the QuickTime for      Windows standalone installer at <a href="http://www.apple.com/quicktime/download/win.html">http://www.apple.com/quicktime/download/win.html</a>      and save it to your desktop.</li>
<li>Double-click the <tt>QuickTimeInstaller.exe</tt> file on your      desktop and follow the instructions to install QuickTime.</li>
<li>Open iTunes and play a movie      file. The audio should now play with the video.</li>
</ol>
<p><strong>Microsoft Windows XP and Windows 2000</strong></p>
<ol start="1" type="1">
<li>On the <strong>Start </strong>menu,      click <strong>Control Panel</strong>.</li>
<li>Open the Add or Remove      Programs control panel.</li>
<li>Select QuickTime.</li>
<li>Click the Change/Remove      button.</li>
<li>Click Remove.</li>
<li>Click OK.</li>
<li>Repeat steps 3 through 6 if      you have multiple QuickTime entries listed.</li>
<li>Download the QuickTime for      Windows standalone installer at <a href="http://www.apple.com/quicktime/download/win.html">http://www.apple.com/quicktime/download/win.html      </a>and save it to your desktop.</li>
<li>Double-click the <tt>QuickTimeInstaller.exe </tt>file on your      desktop and follow the instructions to install QuickTime.</li>
<li>Open iTunes and play a movie      file. The audio should now play with the video.</li>
</ol>
<h4>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</h4>
<h4>Microsoft Knowledge Base Article<o:p></o:p></h4>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a><o:p></o:p></p>
<p><o:p> </o:p></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/itunes-for-windows-plays-video-files-without-any-audio/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Excel Tips</title>
		<link>http://ossmall.info/microsoft-excel-tips/</link>
		<comments>http://ossmall.info/microsoft-excel-tips/#comments</comments>
		<pubDate>Sun, 18 Sep 2011 09:13:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MS Office Excel]]></category>
		<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/microsoft-excel-tips/</guid>
		<description><![CDATA[Fill in a Series of Dates or Numbers You can easily fill a series of cells with consecutive dates in Excel. First click a cell and enter the starting date in default date format (month/date/year). More the mouse pointer to the bottom right of the cell to get a small cross called Fill Handle. Click [...]]]></description>
			<content:encoded><![CDATA[<p><font face="Verdana" size="2"><strong>Fill in a Series of Dates or Numbers</strong><br />
You can easily fill a series of cells with consecutive dates in Excel. First  click a cell and enter the starting date in default date format  (month/date/year). More the mouse pointer to the bottom right of the cell to get  a small cross called Fill Handle. Click and drag across the cells you want to  fill with the dates. To customize the series, drag with the right mouse button  and click on Series. </font></p>
<p><font face="Verdana" size="2"><strong>Rid Yourself of Fine Lines</strong><br />
To remove cell gridlines from a spreadsheet, Select Options from the Tools menu  and click on the View tab. Under the Window options, uncheck the Gridlines box  and click OK. the gridlines removed from your spreadsheet. </font></p>
<p><font face="Verdana" size="2"><strong>Open Specific Spreadsheets at Start-Up</strong><br />
Excel can be started up with spreadsheets that you most frequently use. To do  this, first open the spreadsheet you want to open at startup. Then click on File  &gt; Save As and locate the XLStart folder within the \Program files\Microsoft  Office\Office folder. click the Save button to save this file in the folder.  Next time you start Excel, this spreadsheet will automatically open. </font></p>
<p><font face="Verdana" size="2"><strong>Fractions or Decimals?</strong><br />
Get better accuracy in fractions than Excel normally gives. you can specify the  number of digits the denominator and numerator of a fraction can have. Simple  click on the cell that has the value and click on Format &gt; Cells. Under the  Number panel, select Fraction from the Category lest. Then select the required  accuracy from the Type list. </font></p>
<p><font face="Verdana" size="2"><strong>Enter More than one line of Data in a Cell</strong><br />
Entering more than one line of text in a cell is as simple as pressing Alt+Enter  to make a new line inside the cell. if you don&#8217;t want line breads, you can have  multiple lines in a given cell is by clicking cells from the Format menu. Click  on the Alignment tab and enable Wrap Text. Entering data wider than the column  width will then wrap on the next line. </font></p>
<p><font face="Verdana" size="2"><strong>Protect Cells From Data Entry</strong><br />
Keeping certain cells in Excel spreadsheets from being modified is easy. Select  the cells you wish to allow writing to. Non-adjacent cells can be selected by  clicking on them while keeping the Ctrl key pressed. After selecting the cells,  click Format &gt; Cells. Under the Protection tab, uncheck the Locked checkbox and  click OK. Next, click on Tools &gt; Protection and select protect Sheet. You will  be prompted for a password that is optional. Click OK and save the spreadsheet.  Now only the unlocked cells and be modified. Trying to overwrite locked cells  result in an alert message being displayed. If you want to protect only a few  cells, it would be good idea to select the entire worksheet and use the Ctrl key  to deselect only the cells you want to protect before unlocking them. </font></p>
<p><font face="Verdana" size="2"><strong>Give your Worksheet a Background</strong><br />
Add a background image to your spreadsheet. click on Format &gt; Sheet &gt;  Background. Browse for the image you want and click Open to select it. The given  image will tile to fit the worksheet. </font></p>
<p><font face="Verdana" size="2"><strong>Don&#8217;t Lose Sight of Your Headings</strong><br />
Keeping the row and/or column heading on your spreadsheet however you scroll can  definitely improve readability of your spreadsheet. Drag the split box next to  the scrollbars to the row and/or column that holds the headings. Click on Window  &gt; Freeze Panes. The tow and/or column will now be locked and remain visible  thought the rest of the spreadsheet. </font></p>
<p><font face="Verdana" size="2"><strong>Change the Cursor&#8217;s Default Direction</strong><br />
When you press the Enter key in a cell, Excel by default moves the cursor below  it. to change this, open Tools &gt; Options and click on the Edit tab. change the  direction of the selection movement from the drop-down list titled Move  Selection after Entry.</font></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/microsoft-excel-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Right click for Command Prompt in any folder</title>
		<link>http://ossmall.info/right-click-for-command-prompt-in-any-folder/</link>
		<comments>http://ossmall.info/right-click-for-command-prompt-in-any-folder/#comments</comments>
		<pubDate>Sun, 11 Sep 2011 12:03:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/right-click-for-command-prompt-in-any-folder/</guid>
		<description><![CDATA[Add the following entries to your registry &#8211; you&#8217;ll be able to right click and open any folder at the command line. &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; [HKEY_CLASSES_ROOT\Folder\shell\command] @=&#8221;Command &#38;Prompt&#8221; [HKEY_CLASSES_ROOT\Folder\shell\command\command] @=&#8221;\&#8221;cmd.exe\&#8221; /k cd \&#8221;%1\&#8221;" &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; Microsoft Knowledge Base Article This article contents is Microsoft Copyrighted material. Microsoft Corporation. All rights reserved. Terms of Use &#124; Trademarks Related Articles or [...]]]></description>
			<content:encoded><![CDATA[<p>Add the following entries to your registry &#8211; you&#8217;ll be able to right click and open any folder at the command line.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>[HKEY_CLASSES_ROOT\Folder\shell\command]<br />
@=&#8221;Command &amp;Prompt&#8221;</p>
<p>[HKEY_CLASSES_ROOT\Folder\shell\command\command]<br />
@=&#8221;\&#8221;cmd.exe\&#8221; /k cd \&#8221;%1\&#8221;"</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/right-click-for-command-prompt-in-any-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>change Thumbnail Size in folders</title>
		<link>http://ossmall.info/change-thumbnail-size-in-folders/</link>
		<comments>http://ossmall.info/change-thumbnail-size-in-folders/#comments</comments>
		<pubDate>Tue, 30 Aug 2011 12:05:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/change-thumbnail-size-in-folders/</guid>
		<description><![CDATA[The thumbnail view in windows explorer gives you easy access to a portfolio of images, but the default image size may not be to your liking. To control the thumbnail dimensions, go to HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer. Make a new DWORD value named ThumbnailSize. Double click the value and type in a number in decimal anywhere from 32 [...]]]></description>
			<content:encoded><![CDATA[<p>The thumbnail view in windows explorer gives you easy access to a portfolio of images, but the default image size may not be to your liking. To control the thumbnail dimensions, go to</p>
<p>HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer.</p>
<p>Make a new DWORD value named ThumbnailSize. Double click the value and type in a number in decimal anywhere from 32 to 256. Making it smaller will display many more images on the screen for quicker perusual. Its an immediate change.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/change-thumbnail-size-in-folders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>You cannot start Windows XP after you install Windows Vista in a dual-boot configuration together with Windows XP</title>
		<link>http://ossmall.info/you-cannot-start-windows-xp-after-you-install-windows-vista-in-a-dual-boot-configuration-together-with-windows-xp/</link>
		<comments>http://ossmall.info/you-cannot-start-windows-xp-after-you-install-windows-vista-in-a-dual-boot-configuration-together-with-windows-xp/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 18:32:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Vista Tips]]></category>
		<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/you-cannot-start-windows-xp-after-you-install-windows-vista-in-a-dual-boot-configuration-together-with-windows-xp/</guid>
		<description><![CDATA[SYMPTOMS After you install Windows Vista in a dual-boot configuration together with Microsoft Windows XP, you receive an error message that resembles the following when you try to start the computer by using Windows XP: Windows could not start because the following file is missing or corrupt: C:\Windows\system32\ntoskrnl.exe. Please re-install a copy of the above [...]]]></description>
			<content:encoded><![CDATA[<h4>SYMPTOMS</h4>
<p><script type="text/javascript"> loadTOCNode(1, \'symptoms\'); </script>After you install Windows Vista in a dual-boot configuration together with Microsoft Windows XP, you receive an error message that resembles the following when you try to start the computer by using Windows XP:</p>
<p>Windows could not start because the following file is missing or corrupt:</p>
<p>C:\Windows\system32\ntoskrnl.exe. Please re-install a copy of the above file.</p>
<h4>CAUSE</h4>
<p><script type="text/javascript"> loadTOCNode(1, \'cause\'); </script>You experience this problem if Windows Vista is installed in formerly unallocated disk space that existed in front of the partition on which Windows XP is installed.</p>
<p>In this situation, the Windows Vista Setup program creates a new partition in the unallocated disk space. Because a new partition is created in front of the partition on which Windows XP is installed, the Boot.ini entry for the Windows XP installation points to an invalid partition.</p>
<p>Consider the following scenario:</p>
<table border="0" cellpadding="0">
<tr>
<td></td>
<td>You have a hard disk, or disk 0, that has some unallocated   hard disk space in front of the Windows XP partition.</td>
</tr>
<tr>
<td></td>
<td>The Windows XP Boot.ini file points to <strong>disk(0)partition(1)</strong>   for the Windows XP startup files.</td>
</tr>
<tr>
<td></td>
<td>The Windows Vista program creates a partition in the   unallocated hard disk space.</td>
</tr>
</table>
<p>In this scenario, the Windows XP startup files are now located on <strong>disk(0)partition(2)</strong>. However, the Boot.ini file still points to <strong>disk(0)partition(1)</strong> for these files. Therefore, Windows XP does not start successfully.</p>
<h4>RESOLUTION</h4>
<p><script type="text/javascript"> loadTOCNode(1, \'resolution\'); </script>To resolve this problem, modify the Windows XP Boot.ini file to point to the correct partition. To do this, follow these steps:</p>
<table border="0" cellpadding="0">
<tr>
<td>1.</td>
<td>Start Windows Vista.</td>
</tr>
<tr>
<td>2.</td>
<td>Right-click <strong>Start</strong><!--[if gte vml 1]>                                                                                          <![endif]--><img src="file:///C:/DOCUME%7E1/marius/LOCALS%7E1/Temp/msohtml1/01/clip_image001.jpg" alt="Start button" title="Start button" v:shapes="_x0000_i1028" height="20" width="20" />,   and then click <strong>Explore</strong>.</td>
</tr>
<tr>
<td>3.</td>
<td>On the <strong>Organize</strong> menu, click <strong>Folder   and Search Options</strong>.</td>
</tr>
<tr>
<td>4.</td>
<td>In the <strong>Folder Options</strong> dialog box, click   the <strong>View</strong> tab.</td>
</tr>
<tr>
<td>5.</td>
<td>In the <strong>Advanced settings</strong> area, click <strong>Show   hidden files and folders</strong>, click to clear the <strong>Hide extensions   for known file types</strong> check box, click to clear the <strong>Hide   protected operating system files (Recommended)</strong> check box, click <strong>Yes</strong>   to confirm that you want to display operating system files, and then click <strong>OK</strong>.</td>
</tr>
<tr>
<td>6.</td>
<td>Locate and then click the Windows XP system drive. In the   Windows Vista Windows Explorer program, this will likely be drive D.</td>
</tr>
<tr>
<td>7.</td>
<td>In the right pane, right-click <strong>boot.ini</strong>,   and then click <strong>Properties</strong>.</td>
</tr>
<tr>
<td>8.</td>
<td>In the <strong>boot.ini Properties</strong> dialog box,   click the <strong>Security</strong> tab, and then click <strong>Advanced</strong>.</td>
</tr>
<tr>
<td>9.</td>
<td>Click the <strong>Owner</strong> tab, and then click <strong>Edit</strong>.<!--[if gte vml 1]>       <![endif]--><img src="file:///C:/DOCUME%7E1/marius/LOCALS%7E1/Temp/msohtml1/01/clip_image002.jpg" alt=" User Account Control permission " title=" User Account Control permission " v:shapes="_x0000_i1029" height="18" width="15" />If   you are prompted for an administrator password or confirmation, type your   password or click <strong>Continue</strong>.</td>
</tr>
<tr>
<td>10.</td>
<td>In the <strong>Change owner to</strong> list, click your   alias or leave the default <strong>Administrators</strong> option selected,   and then click <strong>OK</strong> four times.</td>
</tr>
<tr>
<td>11.</td>
<td>Right-click <strong>boot.ini</strong>, and then click <strong>Edit</strong>.</td>
</tr>
<tr>
<td>12.</td>
<td>Modify the Advanced RISC Computing (ARC) path as   appropriate for the correct path of the Windows XP startup partition. For   example, if the Windows Vista Setup program created a partition in the   unallocated disk space in front of the partition on which Windows XP is   installed, you must increment the partition value by one. Therefore, if the   Boot.ini file contains <strong>partition(1)</strong> along the ARC path of   the Windows XP operating system, modify the ARC path to use <strong>partition(2)</strong>.   In this situation, the ARC path resembles the following:</p>
<pre>multi(0)disk(0)rdisk(0)partition(2)\WINDOWS="Microsoft Windows XP Professional" /fastdetect</pre>
</td>
</tr>
<tr>
<td>13.</td>
<td>Save the changes to the Boot.ini file, and then exit   Notepad.</td>
</tr>
</table>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/you-cannot-start-windows-xp-after-you-install-windows-vista-in-a-dual-boot-configuration-together-with-windows-xp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add_Remove more Windows Components</title>
		<link>http://ossmall.info/add_remove-more-windows-components/</link>
		<comments>http://ossmall.info/add_remove-more-windows-components/#comments</comments>
		<pubDate>Wed, 10 Aug 2011 08:11:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/add_remove-more-windows-components/</guid>
		<description><![CDATA[Add_Remove more Windows Components like MSN Explorer and the Accessories programs This tweak lets you uninstall Windows Components such as MSN Explorer and programs in the Accessories menu on the &#8216;All Programs&#8217; menu. 1. Edit the hidden system file SYSOC.INF in the Windows/System/Inf folder (or WINNT/System/Inf if you upgraded from NT or 2000). 2. Delete [...]]]></description>
			<content:encoded><![CDATA[<p>Add_Remove more Windows Components like MSN Explorer and the Accessories programs</p>
<p>This tweak lets you uninstall Windows Components such as MSN Explorer and programs in the Accessories menu on the &#8216;All Programs&#8217; menu.</p>
<p>1. Edit the hidden system file SYSOC.INF in the Windows/System/Inf folder (or WINNT/System/Inf if you upgraded from NT or 2000).<br />
2. Delete all instances of the word HIDE. Don&#8217;t put any spaces inbetween the commas.<br />
3. Save your changes.<br />
4. Open &#8216;Add or Remove Programs&#8217; in Control Panel.<br />
5. Click on &#8216;Add/Remove Windows Components. You will now see options for &#8216;Accessories and Utilities&#8217; (the programs in the Accessories menu on the Start panel), MSN Explorer and several other components.<br />
6. Uncheck the tick box to remove that component or check it to install it from your XP CD.</p>
<p>Be careful what components you remove though!</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/add_remove-more-windows-components/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XP Swap File Optimization</title>
		<link>http://ossmall.info/xp-swap-file-optimization/</link>
		<comments>http://ossmall.info/xp-swap-file-optimization/#comments</comments>
		<pubDate>Tue, 26 Jul 2011 08:08:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/xp-swap-file-optimization/</guid>
		<description><![CDATA[Optimizing your swap file may seem a moot point now, memory prices being that low, still it&#8217;s never a bad idea. How much swap space do you need? That depends the amount of RAM you have and the programs you use. The rule of the thumb is 1.5 times the amount of system memory, unless [...]]]></description>
			<content:encoded><![CDATA[<p>Optimizing your swap file may seem a moot point now, memory prices being that low, still it&#8217;s never a bad idea.</p>
<p>How much swap space do you need? That depends the amount of RAM you have and the programs you use. The rule of the thumb is 1.5 times the</p>
<p>amount of system memory, unless you have too much memory on your system (make it 1 times or less) or too much load (make it more than you</p>
<p>system&#8217;s load). Say we decided we must create a swap file of 512MB.</p>
<p>Linux guys have always relied on disk partitions specially designated for the swap. That way, the swap is never fragmented. You can use a</p>
<p>similar approach in Windows. If you are doing a fresh install, leave some unpartitioned space in your disk drive to fit the swap file (A little</p>
<p>more than 512MB). If your system is already installed, you must use some re-partitioning software like &#8216;Partition Magic&#8217;.</p>
<p>In Windows, you have to create and format the swap partition using the Disk Management settings (Start-&gt;Control Panel- &gt;Performance and</p>
<p>Maintenance-&gt;Administrative Tools-&gt;Computer Management-&gt;Storage-&gt;Disk Management). Be careful because this tool has the ability to destroy your</p>
<p>data if you are not careful!</p>
<p>Make sure you create an &#8216;Extended&#8217; partition in the free disk space and then create a &#8216;Logical Drive&#8217; inside the extended partition. Apply the</p>
<p>changes and then format it. Note that you don&#8217;t need to format the swap partition using advanced filesystem types like NTFS or FAT32. FAT16 is</p>
<p>quite faster than the other two, and since this partition is only going to host one file, you don&#8217;t need to worry about cluster size. Also, the</p>
<p>security/fault tolerant features of NTFS are not needed for the swap, unless of course you are running under *real* tight security.</p>
<p>From then on, it&#8217;s easy. You have to go to Performance Options (Start-&gt;Control Panel-&gt;Performance and Maintenance- &gt;Administrative Tools-</p>
<p>&gt;System-&gt;Advanced-&gt;Performance-&gt;Settings-&gt;Advanced-&gt;Virtual Memory-&gt;Change). Change the values &#8216;Initial Size&#8217; and &#8216;Maximum Size&#8217; to the size of</p>
<p>your swap (512MB). Note that you have to specify the *same* amount for both values. This will keep your swap file from resizing, fragmenting</p>
<p>and eventually slowing itself down.</p>
<p>Another cool trick can be used if you have more than one disks. Provided that both disks are of almost the same speed, in the above dialog you</p>
<p>can split the swap file in two or more equally sized partitions (256MB each in our example). This will result in greater swap file performance,</p>
<p>since the system will be reading from two disks at the same time. This way you will be actually setting up a raid0-like swap!</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/xp-swap-file-optimization/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Microsoft Word Tips</title>
		<link>http://ossmall.info/microsoft-word-tips/</link>
		<comments>http://ossmall.info/microsoft-word-tips/#comments</comments>
		<pubDate>Sun, 29 May 2011 09:11:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/microsoft-word-tips/</guid>
		<description><![CDATA[&#8216;Webbed &#8216; Tables A &#8216;Web look&#8217; can be imparted to your documents by using a Web formatting style. Select the Table and fro the Table menu, select Table AutoFormat. in the list of styles in the Formats box, three new Web styles have been added. Click on any of them for a &#8216;Webby&#8217; look. Watermark [...]]]></description>
			<content:encoded><![CDATA[<p><font face="Verdana" size="2"><strong>&#8216;Webbed &#8216; Tables</strong><br />
A &#8216;Web look&#8217; can be imparted to your documents by using a Web formatting style.  Select the Table and fro the Table menu, select Table AutoFormat. in the list of  styles in the Formats box, three new Web styles have been added. Click on any of  them for a &#8216;Webby&#8217; look. </font></p>
<p><font face="Verdana" size="2"><strong>Watermark Your Documents</strong><br />
Creating your own watermark for professional looking documents is pretty simple  in Work. First go to view &gt; Header and Footer and click on the Show/Hide Text  toolbar button located on the Header and Footer toolbar (insert icon image).  This should temporarily hide the text. Now you can insert a graphics object  using Clip Art, Word Art or even AutoShape. Place the graphics where you want it  to be seen, and adjust the color of the watermark by right clicking on the  object and choosing properties. </font></p>
<p><font face="Verdana" size="2"><strong>Convert Tables to Plain Old Text</strong><br />
Sometimes copying to and fro with a browser result in unwanted tables being  created. this can be easily removed by converting into individual paragraphs and  click on Table to Text option under Convert in the Table menu. the separation  character can also be specified instead of normal column lines using the  &#8220;Separate text with&#8221; option </font></p>
<p><font face="Verdana" size="2"><strong>Center Text Vertically</strong><br />
Text in Word can be centered horizontally as well as vertically. For the  vertical centering, open File &gt; Page Setup and click on the Layout tab. Select  the Center option in the Alignment pill-down menu. Format you r document as  usual and view its positioning using the print preview button. </font></p>
<p><font face="Verdana" size="2"><strong>Get Rid of Curly Quotes</strong><br />
Typing quotes in Word results in straight quotes being converted to small quoted  automatically. This is done by Autocorrect function. Pressing Ctrl+Z (Shortcut  for Undo) after typing single or double quoted will give you straight quotes. To  permanently turn the feature off, click on Tools &gt; Autocorrect &gt; AutoFormat as  you type and disable Straight quotes with smart quotes. </font></p>
<p><font face="Verdana" size="2"><strong>Collate Documents</strong><br />
Collating documents copies can be done automatically in Word. To collate  documents while you print, click on the Print option from the File menu and  click the &#8220;Collate&#8221; check box in the Copies heading. then fill the number of  copies you want tin the box labeled &#8220;Number of copies&#8221;. Simple click Print to  get the collated multiple copes you want. </font></p>
<p><font face="Verdana" size="2"><strong>Bring Straying Lines Back Into Fold</strong><br />
A cool feature for your squeezers; get those extra lines on the last page of  your document. Click on File &gt; Print Preview. in the Print Preview window, click  the Shrink to Fit button to fit the few overflowing lines onto the last page. </font></p>
<p><font face="Verdana" size="2"><strong>Create Email Signatures</strong><br />
Word allows you to create multiple signatures for your emails created in Word.  To create to add a new signature, go to Tools &gt; Options and click on the General  tab, click the Email Option button. Type the signature it the text box below,  type its name and click Add to add it to the set of signatures you can use. You  can also set the default signatures for New and Forwarded/Replied Messages. </font></p>
<p><font face="Verdana" size="2"><strong>Take the Synonym Shortcut</strong><br />
Checking out synonyms of a word generally involves looking it up in the  thesaurus in the Tools &gt; Language menu. A faster way is to just select the word  and right click it. In the menu, select synonyms and you will be presented with  a list of synonyms to choose from. You can also click on Thesaurus to lookup  more synonyms. often, Word will also present a few antonyms when you know what  you don&#8217;t mean to say.</font></p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/microsoft-word-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get the Classic Media Player Back!</title>
		<link>http://ossmall.info/get-the-classic-media-player-back/</link>
		<comments>http://ossmall.info/get-the-classic-media-player-back/#comments</comments>
		<pubDate>Sat, 28 May 2011 08:10:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/get-the-classic-media-player-back/</guid>
		<description><![CDATA[Are you fed up with the new windows media player. Did you like the version of windows media player that came with windows 2K? Windows XP still has the version of media player installed but they hid it. To get it back follow the directions below: 1. Click on the start button and select run. [...]]]></description>
			<content:encoded><![CDATA[<p>Are you fed up with the new windows media player. Did you like the version of windows media player that came with windows 2K? Windows XP still has the version of media player installed but they hid it. To get it back follow the directions below:</p>
<p>1. Click on the start button and select run.<br />
2. type &#8220;mplayer2&#8243; and click OK. it&#8217;s the orginal movie player.</p>
<p>If you want to make this the default media player follow the directions below:</p>
<p>1. When the classic windows media player is running click on the view menubar and select options.<br />
2. Then click on the format tab anc choose your computer to open all the formats with the player.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/get-the-classic-media-player-back/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Internet Explorer Tips</title>
		<link>http://ossmall.info/internet-explorer-tips/</link>
		<comments>http://ossmall.info/internet-explorer-tips/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 09:02:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/internet-explorer-tips/</guid>
		<description><![CDATA[Create your web Shortcuts To create a new shortcut to a Webpage, open Notepad and type [InternetShortcut] on the first line, then URL = followed by the address of the page on the second line. Save the file with a .URL extension. If you save it in \Windows\Favorites folder, it will be added to the [...]]]></description>
			<content:encoded><![CDATA[<p><font face="Verdana" size="2"><strong>Create your web Shortcuts</strong><br />
To create a new shortcut to a Webpage, open Notepad and type [InternetShortcut]  on the first line, then URL = followed by the address of the page on the second  line. Save the file with a .URL extension. If you save it in \Windows\Favorites  folder, it will be added to the Favorites list in your browser. </font></p>
<p><font face="Verdana" size="2"><strong>Pick Your Wallpaper</strong><br />
Right click on any image in your browser and select Set as Wallpaper to make it  your desktop wallpaper. Internet Explorer will copy the image to the Windows  folder and set it as the wallpaper. </font></p>
<p><font face="Verdana" size="2"><strong>Find Sites With AutoComplete</strong><br />
Whenever you begin typing a URL in the address box, it tried to find a recently  visited page that matches what you are typing. If IE finds a match, it  automatically fills in the rest of the address for you. This is not only  convenient, it can also be useful if you remember only a part of on Internet  address. You can turn the feature on or off from Tools &gt; Internet Options &gt;  Advanced. Scroll down to use inline AutoComplete for Web address. Toggle this on  or off. </font></p>
<p><font face="Verdana" size="2"><strong>Temporary files</strong><br />
Clearing the browser cache can retrieve disk space and can also avoid problems  on certain Web pages. To clear the files, open Tools &gt; Internet Options. Under  the General tab, click on Delete Files to clear the cache. </font></p>
<p><font face="Verdana" size="2"><strong>Offline Web Pages</strong><br />
You can set a page as &#8220;offline&#8221; so you can read it even when you&#8217;re not  connected. On the Favorites menu, click Add to Favorites. Enable Make available  offline. To specify a schedule for updating the page and how much content to  download, click Customize. Follow the instructions on screen. </font></p>
<p><font face="Verdana" size="2"><strong>Script errors</strong><br />
You can turn off useless script error messages from popping up. Click on Tools &gt;  Internet Options &gt; Advanced. Click the checkbox labeled Disable script  debugging. Uncheck the checkbox labeled Display a notification for every script  error. </font></p>
<p><font face="Verdana" size="2"><strong>Searching with Style!</strong><br />
With Internet Explorer, you can search with more than one search engine. click  search on the toolbar and click Customize. Customize your search form the window  that opens. </font></p>
<p><font face="Verdana" size="2"><strong>Never lose an Interesting site like  SoftwareTipsandTricks!</strong><br />
If you remember visiting a site a week or two ago that you forgot to add to your  favorites list, you can still fine it. the History folder maintains a list of  all the sites that you visited for a set number of says. To set the number of  days. click Tools &gt; Internet Options. Under the General tab, set the Days to  Keep Pages in History. You can enter any number between 0 and 999. </font></p>
<p><font face="Verdana" size="2"><strong>Save or print links</strong><br />
You can save or print the information from linked Web pages without displaying  the page on screen. Right-click the link and click Save Target As to save the  linked page to your hard disk or Print Target to print the linked page. </font></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/internet-explorer-tips/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Change the start button name</title>
		<link>http://ossmall.info/change-the-start-button-name/</link>
		<comments>http://ossmall.info/change-the-start-button-name/#comments</comments>
		<pubDate>Sat, 16 Apr 2011 13:27:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[XP Tips]]></category>

		<guid isPermaLink="false">http://ossmall.info/change-the-start-button-name/</guid>
		<description><![CDATA[Navigate to your windows or winnt directory. Make a copy of explorer.exe put it somewhere safe. make another copy name it explorer1.exe, put it in the windows directory. Download a version of a Hex editor on a freeware site. Open up explorer1.exe in the Hex editor . Search for strings named Start Heres some help [...]]]></description>
			<content:encoded><![CDATA[<p>Navigate to your windows or winnt directory.<br />
Make a copy of explorer.exe put it somewhere safe. make another copy name it explorer1.exe, put it in the windows directory.<br />
Download a version of a Hex editor on a freeware site.<br />
Open up explorer1.exe in the Hex editor .<br />
Search for strings named Start<br />
Heres some help with the offsets:<br />
Windows 98<br />
Offset: 0x00028D6E &#8211; 0x00028D76<br />
Windows NT4<br />
Offset: 0x00028BEE &#8211; 0x00028BF6<br />
Windows ME<br />
Offset: 0x00033DDE &#8211; 0x00033DE6<br />
Windows 2000<br />
Offset: 0x0003860E &#8211; 0&#215;00038616<br />
Windows XP (Enhanced Start Menu)<br />
Offset: 0x000412B6 &#8211; 0x000412BE<br />
Windows XP (Classic Start Menu)<br />
Offset: 0x0004158A &#8211; 0&#215;00041592<br />
Windows XP SP1 (Enhanced Start Menu)<br />
Offset: 0x0004208E &#8211; 0&#215;00042096<br />
Windows XP SP1 (Classic Start Menu)<br />
Offset: 0x0004259A &#8211; 0x000425A2<br />
start will be just before this:</p>
<p>There was an internal error and one of the windows you were using has been closed.&#8221;.</p>
<p>now rename start to another five letter word of your choice like Help</p>
<p>save the modified explorer1.exe</p>
<p>open up regedit, you are looking for this key:</p>
<p>[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon]</p>
<p>search for the value named Shell and make it equal to explorer1.exe.</p>
<p>restart for changes to take place.</p>
<p>alternatively, close all apps, fire up task manager and end the process explorer.exe, start new traske explorer1.exe and there you go.</p>
<p>if PC dont boot, slave off , navigate to your windows delete explorer1.exe and rename explorer.exe to explorer1.exe, plug back into your PC and there you go back to normal, i assure you it works great!</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<h3>Microsoft Knowledge Base Article</h3>
<p class="MsoNormal">This article contents is Microsoft Copyrighted material.<br />
Microsoft Corporation. All rights reserved. <a href="http://support.microsoft.com/tou/">Terms of Use</a> | <a href="http://support.microsoft.com/library/toolbar/3.0/trademarks/en-us.mspx">Trademarks</a></p>
<div class="aizatto_related_posts"><span class="aizatto_related_posts_header" >Related Articles or Pages</span><ul></ul></div>]]></content:encoded>
			<wfw:commentRss>http://ossmall.info/change-the-start-button-name/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

