<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.1" -->
<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/"
	>

<channel>
	<title>TechExpertBlog</title>
	<link>http://www.techexpertblog.com</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Sat, 12 Jul 2008 08:04:52 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.1</generator>
	<language>en</language>
			<item>
		<title>Rename file extention in Linux</title>
		<link>http://www.techexpertblog.com/rename-file-extention-in-linux.html</link>
		<comments>http://www.techexpertblog.com/rename-file-extention-in-linux.html#comments</comments>
		<pubDate>Sat, 12 Jul 2008 08:04:52 +0000</pubDate>
		<dc:creator>Ernest Luk</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<category><![CDATA[LAMP]]></category>

		<guid isPermaLink="false">http://www.techexpertblog.com/rename-file-extention-in-linux.html</guid>
		<description><![CDATA[This script is useful when dealing with a large volume of filename extensions. This script renames all files in a directory and its subdirectories with an &#8216;extension&#8217; of sorts with the description of the file type. Other search techniques and batch renamers can then look after restoring these to common three letter extensions.
ren.sh
t=&#34;/tmp/ren&#34;
find -type f [...]]]></description>
			<content:encoded><![CDATA[<p>This script is useful when dealing with a large volume of filename extensions. This script renames all files in a directory and its subdirectories with an &#8216;extension&#8217; of sorts with the description of the file type. Other search techniques and batch renamers can then look after restoring these to common three letter extensions.</p>
<p><span style="font-weight: bold">ren.sh</span></p>
<p><span style="font-family: courier new">t=&quot;/tmp/ren&quot;</span><br />
<span style="font-family: courier new">find -type f &gt; &quot;$t&quot;</span><br />
<span style="font-family: courier new">while read record[n]</span><br />
<span style="font-family: courier new">do</span><br />
<span style="font-family: courier new">mv &quot;${record[n]}&quot; &quot;${record[n]}.$(file -b &quot;${record[n]}&quot;)&quot;</span><br />
<span style="font-family: courier new">let &quot;n+=1&quot;</span><br />
<span style="font-family: courier new">done &lt; &quot;$t&quot;</span><br />
<span style="font-family: courier new">rm &quot;$t&quot;</span></p>
<p>then, for example, to correctly name all JPG files run (the complete list of files is too large to embed every option), where &quot;JPG&quot; begins the description and &quot;jpg&quot; is the new extension:</p>
<p><span style="font-family: courier new">find -name &quot;*.JPG&quot; -print0 | xargs -0 rename .JPG .jpg</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techexpertblog.com/rename-file-extention-in-linux.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to gernerate a CSR for Apache 2.x</title>
		<link>http://www.techexpertblog.com/how-to-gernerate-a-csr-for-apache-2x.html</link>
		<comments>http://www.techexpertblog.com/how-to-gernerate-a-csr-for-apache-2x.html#comments</comments>
		<pubDate>Mon, 09 Jun 2008 23:57:19 +0000</pubDate>
		<dc:creator>Ernest Luk</dc:creator>
		
		<category><![CDATA[apache]]></category>

		<guid isPermaLink="false">http://www.techexpertblog.com/how-to-gernerate-a-csr-for-apache-2x.html</guid>
		<description><![CDATA[Follow the below instructions to generate a CSR for your Web site. When you have completed generating your CSR, cut/copy and paste it into the CSR field on the SSL certificate-request page.
CSR-Generation Instructions
To generate a triple-DES encrypted key pair and a Certificate Signing Request (CSR):
Enter the following commands:

cd /usr/bin/ (/your path to openssl/)
   [...]]]></description>
			<content:encoded><![CDATA[<p>Follow the below instructions to generate a CSR for your Web site. When you have completed generating your CSR, cut/copy and paste it into the CSR field on the SSL certificate-request page.</p>
<p><strong>CSR-Generation Instructions</strong><br />
To generate a triple-DES encrypted key pair and a Certificate Signing Request (CSR):</p>
<p><strong>Enter the following commands:</strong></p>
<ol type="i">
<li>cd /usr/bin/ (/your path to openssl/)<br />
    Enter a passphrase when prompted to.</li>
<li>openssl genrsa -des3 -out &lt;name of your certificate&gt;.key 1024</li>
<li>openssl req -new -key &lt;name of your certificate&gt;.key -out &lt;name of your certificate&gt;.csr</li>
</ol>
<p>Please enter the information as prompted. If you are requesting a Wildcard certificate, please add an asterisk (*) on the left side of the Common Name (e.g., &quot;*.domainnamegoes.com&quot; or &quot;www*.domainnamegoeshere.com&quot;). This will secure all subdomains of the Common Name.</p>
<p><strong>Now you should have:</strong><br />
<strong>domain.com.key</strong> and <strong>domain.com.csr</strong></p>
<p>Make a<strong> backup copy </strong>of your private key! If you lose it, you have to purchase a new cert!</p>
<p>You should NOT generate the RSA private key with a passphrase if you have scripts that restart apache automatically. If you have, then apache just sit there and wait for the script to input the passphrase!&nbsp;</p>
<p>There is a method that you can disable the passphrase to prompt when you restart apache.</p>
<p><font color="#008000"><span class="green"># mv MYdomain.com.key MYdomain.com.key.has-passphrase</span><br />
</font><font color="#008000"><span class="green"># openssl rsa -in MYdomain.com.key.has-passphrase -out MYdomain.com.key<br />
</span><br />
</font>And then restart apache.</p>
<p>To ensure your SSL works, you should have something like this in your httpd.conf</p>
<p>
&lt;VirtualHost 123.456.789.123:443&gt;<br />
&#8230; some config like DocumentRoot , etc..<br />
SSLEngine&nbsp;&nbsp;on<br />
SSLCertificateFile&nbsp;/etc/httpd/conf/ssl.crt/MYdomain.com.crt<br />
SSLCertificateKeyFile&nbsp;/etc/httpd/conf/ssl.key/MYdomain.com.key<br />
&lt;/VirtualHost&gt;</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techexpertblog.com/how-to-gernerate-a-csr-for-apache-2x.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Subdomain with PLESK</title>
		<link>http://www.techexpertblog.com/subdomain-with-plesk.html</link>
		<comments>http://www.techexpertblog.com/subdomain-with-plesk.html#comments</comments>
		<pubDate>Wed, 12 Mar 2008 06:54:07 +0000</pubDate>
		<dc:creator>Ernest Luk</dc:creator>
		
		<category><![CDATA[PLESK]]></category>

		<guid isPermaLink="false">http://www.techexpertblog.com/subdomain-with-plesk.html</guid>
		<description><![CDATA[Setting up a subdomain with PLESK is easy. Just click the Subdomins icon and click the Add New Subdomain. The subdomain entry will be added to the DNS setting if it&#8217;s not exist.
However, in other cases, you may encouter problems with subdomain. For example, you have have forgotten you check one of the options, you [...]]]></description>
			<content:encoded><![CDATA[<p>Setting up a subdomain with PLESK is easy. Just click the Subdomins icon and click the Add New Subdomain. The subdomain entry will be added to the DNS setting if it&#8217;s not exist.</p>
<p>However, in other cases, you may encouter problems with subdomain. For example, you have have forgotten you check one of the options, you may want to remove one of the option or the IP address of the web site has been changed. Though the subdomain folder has created properly, you will see the default page telling you the subdomain is not setting up properly when you access&nbsp;http://subdomain.domain.com,</p>
<p>You can fix this by</p>
<p>/usr/local/psa/admin/bin/websrvmng &#8211;reconfigure-vhost &#8211;vhost-name=domain.com</p>
<p>the path of the executable may be vary depending on the system.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techexpertblog.com/subdomain-with-plesk.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Drupal Wins Overall 2007 Open Source CMS Award</title>
		<link>http://www.techexpertblog.com/drupal-wins-overall-2007-open-source-cms-award.html</link>
		<comments>http://www.techexpertblog.com/drupal-wins-overall-2007-open-source-cms-award.html#comments</comments>
		<pubDate>Sat, 03 Nov 2007 06:50:31 +0000</pubDate>
		<dc:creator>Ernest Luk</dc:creator>
		
		<category><![CDATA[Drupal]]></category>

		<guid isPermaLink="false">http://www.techexpertblog.com/drupal-wins-overall-2007-open-source-cms-award.html</guid>
		<description><![CDATA[Packt Publishing&#160;today announced that Drupal has won the Overall 2007 Open Source CMS Award. With 18,000 votes on Packt&#8217;s website, coupled with the expert opinions from a panel of judges, Drupal succeeds Joomla! as the overall winner.
Initially released in 2001, Drupal is one of the most downloaded Open Source Content Management Systems with one of [...]]]></description>
			<content:encoded><![CDATA[<p>Packt Publishing&nbsp;today announced that Drupal has won the Overall 2007 Open Source CMS Award. With 18,000 votes on Packt&rsquo;s website, coupled with the expert opinions from a panel of judges, Drupal succeeds Joomla! as the overall winner.</p>
<p>Initially released in 2001, Drupal is one of the most downloaded Open Source Content Management Systems with one of the most enthusiastic and committed communities. &quot;This is a great honor for the Drupal community and the thousands of individual developers who&#8217;ve contributed to the project&quot; confirms Drupal developer and core contributor Jeff Eaton. &quot;We&#8217;ve worked hard to make Drupal as flexible, as scalable, and as accessible as possible. It&#8217;s a great week for all of Open Source; the winners in every category have shown that OSS can produce powerful solutions for a wide range of needs&quot; he concludes.</p>
<p>Winners in the other final categories include:</p>
<ul>
<li>Most Promising: MODx</li>
<li>Best Open Source PHP: Joomla!</li>
<li>Best non PHP Open Source CMS: mojoPortal</li>
<li>Best Social Networking: WordPress</li>
</ul>
<p>The Awards were designed to recognize and reward Open Source CMS&rsquo;s for their consistently high standards in what is an extremely competitive field. The result of this year&rsquo;s Award confirms this quality and also suggests that there isn&rsquo;t necessarily one CMS that is the best, more that there is the best one to fit an individual user&rsquo;s needs and requirements. &nbsp;&nbsp;</p>
<p><a href="http://www.packtpub.com/award">Full results of the Overall 2007 Open Source CMS&nbsp;Award&nbsp;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techexpertblog.com/drupal-wins-overall-2007-open-source-cms-award.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Windows tips and tricks</title>
		<link>http://www.techexpertblog.com/windows-tips-and-tricks.html</link>
		<comments>http://www.techexpertblog.com/windows-tips-and-tricks.html#comments</comments>
		<pubDate>Mon, 08 Oct 2007 02:32:39 +0000</pubDate>
		<dc:creator>Ernest Luk</dc:creator>
		
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.techexpertblog.com/windows-tips-and-tricks.html</guid>
		<description><![CDATA[&#160;




Add OpenWith to all files 
            Backup/Restore the Registry 
            Lockout unwanted Users 
            Customize the System Tray 
    [...]]]></description>
			<content:encoded><![CDATA[<p><font size="2">&nbsp;</font></p>
<table cellspacing="1" width="98%" border="0">
<tbody>
<tr>
<td valign="top" width="43%">
<p><a href="http://www.techexpertblog.com/#OpenWith">Add OpenWith to all files </a><br />
            <a href="#Backup">Backup/Restore the Registry </a><br />
            <a href="#LockOut">Lockout unwanted Users </a><br />
            <a href="#Customize">Customize the System Tray </a><br />
            <a href="#Icons">Changing Windows&#8217; Icons </a><a href="#Backup"><br />
            </a><a href="#Registered">Change Registered User </a><br />
            <a href="#Registered">Change Registered Owner </a><br />
            <a href="#SoundEvents">Add/Remove Sound Events </a><br />
            <a href="#Opening">Open a DOS Window to a folder </a><br />
            <a href="#Exchange">Change Exchange/Outlook Mailbox </a><br />
            <a href="#RightClick">Add Apps to Right Click </a><br />
            <a href="#FromHere">Add Explore to all Folders </a><br />
            <a href="#Banner">Creating a Logon Banner </a><br />
            <a href="#Opener">Creating a Default File Opener </a><br />
            <a href="#Tips">Changing the Tips of the Day </a><br />
            <a href="#Automatic">Automatic Screen Refresh </a><br />
            <a href="#Disable">Disable Password Caching </a><br />
            <a href="#NEW">Removing Items from NEW </a><br />
            <a href="#Recycle">Recycle Bin Edits </a><br />
            <a href="#MyComputer">Disabling My Computer </a><br />
            <a href="#Icons">Changing Desktop Icons </a><br />
            <a href="#Animation">Turn Off Window Animation </a><br />
            <a href="#Restrictions">Change/add restriction and features </a><br />
            <a href="keyboard.htm">Change Keyboard layout </a></p>
</td>
<td valign="top" width="57%">
<p><a href="#Telnet">Making Telnets window larger </a><br />
            <a href="#Multiple">Multiple Columns For the Start Menu </a><br />
            <a href="#FolderLocation">Change Default Folder Locations </a><br />
            <a href="#DisablingDrives">Disabling Drives in My Computer </a><br />
            <a href="#ExpressSplash">Disable the Outlook Express Splash Screen </a><br />
            <a href="#Locationpath">Change Location of Windows Installation Files </a><br />
            <a href="#TitleBar">Change the caption on the Title Bar for Outlook</a> <br />
            <a href="#TitleBar">Change the caption on the Title Bar on I.E. </a><br />
            <a href="#Restrictions">Clearing the Documents Menu Automatically </a><br />
            <a href="#Start">Disabling the Right-Click on the Start Button </a><br />
            <a href="#OpeningExplorer">Opening the Explorer from My Computer </a><br />
            <a href="#MinPassword">Setting the Minimum Password Length </a><br />
            <a href="#Specifying">Add\Delete programs to run on boot up </a><br />
            <a href="#Shortcut">Removing the Shortcut Icon Arrows </a><br />
            <a href="#String">Changing your Modem&#8217;s Initialization String </a><br />
            <a href="#Timeout">Increasing the Modem Timeout </a><br />
            <a href="#ControlPanel">Clear Apps from Add/Remove</a><br />
            <a href="#Grayed">The Fix For Grayed Out Boxes </a><br />
            <a href="#AddingItems1">Adding Items to the Start Button </a><br />
            <a href="#MaxMTU">Change the MaxMTU for faster Downloads </a><br />
            <a href="#RemoveOpen">Remove Open, Explore &amp; Find from Start Menu </a><br />
            <a href="#KnownDLLs">More Protection for system files </a><br />
            <a href="#Deleting">Delete Registry Keys from Command Line </a></p>
</td>
</tr>
</tbody>
</table>
<p align="left"><a name="Backup"><strong>Backup / Restore the Registry</strong></a></p>
<p align="left">To Backup/Restore the Windows Registry: <strong>Windows 9x</strong><a href="news/news4.htm"> For XP 2000 click here</a></p>
<ol>
<li>If you are in MSDOS, at the C:\Windows prompt type</li>
<li>Attrib -s -r -h C:\Windows\System.dat (press Enter)</li>
<li>Attrib -s -r -h C:\Windows\User.dat (press Enter)</li>
</ol>
<p align="left">To make the backup copies type:</p>
<ol>
<li>copy C:\Windows\System.dat C:\Windows\System.000 (press Enter)</li>
<li>copy C:\Windows\User.dat C:\Windows\user.000 (press Enter)</li>
</ol>
<p align="left">To Restore the Registry</p>
<ol>
<li>copy C:\Windows\System.000 C:\Windows\System.dat (press Enter)</li>
<li>copy C:\Windows\User.000 C:\Windows\user.dat (press Enter)</li>
</ol>
<p align="left"><a name="OpenWith"><strong>Add Open With to all files </strong></a></p>
<p align="left">You can add &quot;Open With&#8230;&quot; to the Right click context menu of all files.This is great for when you have several programs you want to open the same file types with. I use three different text editors so I added it to the &quot;.txt&quot; key.</p>
<p align="left">1. Open RegEdit <br />
2. Go to HKEY_CLASSES_ROOT\*\Shell <br />
3. Add a new Key named &quot;OpenWith&quot; by right clicking the &quot;Shell&quot; Key and selecting new <br />
4. Set the (Default) to &quot;Op&amp;en With&#8230;&quot; <br />
5. Add a new Key named &quot;Command&quot; by right clicking the &quot;OpenWith&quot; Key and selecting new <br />
6. Set the (Default) to &quot;C:\Windows\rundll32.exe shell32.dll,OpenAs_RunDLL %1&quot;, C:\ being your Windows drive. You must enter the &quot;OpenAs_RunDLL %1&quot; exactly this way.</p>
<p align="left"><a class="style8" name="Customize"><strong>Customize the System Tray</strong></a></p>
<p align="left">You can add your name or anything you like that consists of 8 characters or less. This will replace the AM or PM next to the system time. But you can corrupt some trial licenses of software that you may have downloaded.</p>
<p align="left">1. Open RegEdit <br />
2. Go to HKEY_CURRENT_USER\Control Panel\International <br />
3. Add two new String values, &quot;s1159&quot; and &quot;s2359&quot; <br />
4. Right click the new value name and modify. Enter anything you like up to 8 characters.</p>
<p align="left">If you enter two different values when modifying, you can have the system tray display the two different values in the AM and PM.</p>
<p align="left"><a name="LockOut"><strong>Lock Out Unwanted Users</strong></a></p>
<p align="left">Want to keep people from accessing Windows, even as the default user? If you do not have a domain do not attempt this.</p>
<p align="left">1. Open RegEdit <br />
2. Go to HKEY_LOCAL_MACHINE\Network\Logon <br />
3. Create a dword value &quot;MustBeValidated&quot; <br />
4. Set the value to 1 <br />
This forced logon can be bypassed in Safe Mode on Windows 9x</p>
<p align="left"><a class="style8" name="ExpressSplash"><strong>Disable the Outlook Express Splash Screen</strong></a></p>
<p align="left">You can make OutLook Express load quicker by disabling the splash screen:</p>
<p align="left">1. Open RegEdit <br />
2. Go to HKEY_CURRENT_USER\Software\Microsoft\OutLook Express <br />
3. Add a string value &quot;NoSplash&quot; <br />
4. Set the value data to 1 as a Dword value</p>
<p align="left"><a class="style8" name="Multiple"><strong>Multiple Columns For the Start Menu </strong></a></p>
<p align="left">To make Windows use multiple Start Menu Columns instead of a single scrolling column, like Windows 9x had, Also if you are using Classic Mode in XP</p>
<p align="left">1. Open RegEdit <br />
2. Go to the key <br />
HKEY_LOCAL_MACHINE\ Software\ Microsoft\ Windows\ CurrentVersion\ Explorer\ Advanced <br />
3. Create a string value &quot;StartMenuScrollPrograms&quot; <br />
4. Right click the new string value and select modify <br />
5. Set the value to &quot;FALSE&quot;</p>
<p align="left"><a name="Icons"><strong>Changing Windows&#8217; Icons </strong></a></p>
<p align="left">You can change the Icons Windows uses for folders, the Start Menu, opened and closed folder in the Explorer, and many more.</p>
<p align="left">1. Open RegEdit <br />
2. Go to <br />
HKEY_LOCAL_MACHINE\ Software\ Microsoft\ Windows\ CurrentVersion\ Explorer\ Shell Icons <br />
3. Add a string value for each Icon you wish to change. <br />
Example: &quot;3&quot; =&quot;C:\Windows\Icons\MyIcon.ico,0&quot; This will change the closed folders in the Explorer to &quot;MyIcon.ico&quot;. Here is a complete list for each value.</p>
<table>
<tbody>
<tr>
<td>0= Unknown file type <br />
            1= MSN file types <br />
            2= Applications Generic <br />
            3= Closed Folder <br />
            4= Open Folder <br />
            5= 5.25&quot; Drive <br />
            6= 3.25&quot; Drive <br />
            7= Removable Drive <br />
            8= Hard Drive <br />
            9= NetWork Drive <br />
            10= Network Drive Offline <br />
            11= CD-ROM Drive <br />
            12= RAM Drive <br />
            13= Entire Network</td>
<td>14= Network Hub <br />
            15= My Computer <br />
            16= Printer <br />
            17= Network Neighborhood <br />
            18= Network Workgroup <br />
            19= Start Menu&#8217;s Program Folders <br />
            20= Start Menu&#8217;s Documents <br />
            21= Start Menu&#8217;s Setting <br />
            22= Start Menu&#8217;s Find <br />
            23= Start Menu&#8217;s Help <br />
            24= Start Menu&#8217;s Run <br />
            25= Start Menu&#8217;s Suspend <br />
            26= Start Menu&#8217;s PC Undock <br />
            27= Start Menu&#8217;s Shutdown</td>
<td>28= Shared <br />
            29= Shortcut Arrow <br />
            30= (Unknown Overlay) <br />
            31= Recycle Bin Empty <br />
            32= Recycle Bin Full <br />
            33= Dial-up Network <br />
            34= DeskTop <br />
            35= Control Panel <br />
            36= Start Menu&#8217;s Programs <br />
            37= Printer Folder <br />
            38= Fonts Folder <br />
            39= Taskbar Icon <br />
            40= Audio CD</td>
</tr>
</tbody>
</table>
<p align="left">You need to reboot after making changes. You may need to delete the hidden file ShellIconCache if after rebooting the desired Icons are not displayed.</p>
<p align="left"><a name="FolderLocation"><strong>Change Default Folder Locations </strong></a></p>
<p align="left">You can change or delete the Windows mandatory locations of folder like My Documents:</p>
<p align="left">1. Open RegEdit <br />
2. Go to HKEY_CURRENT_USER\ Software\ Microsoft\ Windows\ CurrentVersion\ Explorer\ Shell Folders <br />
3. Change the desired folder location, My Documents is normally list as &quot;Personal&quot; <br />
4. Open the Explorer and rename or create the folder you wish.</p>
<p align="left">To change the desired location of the Program Files folder <br />
1. Go to <br />
HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion <br />
2. Change the value of &quot;ProgramFiles&quot;, or &quot;ProgramFilesDir&quot; <br />
Now when you install a new program it will default to the new location you have selected.</p>
<p align="left"><strong><a name="Registered">Change the Registered Change the User Information</a></strong></p>
<p>You can change the Registered Owner or Registered Organization to anything you want even after Windows is installed.</p>
<p>1) Open RegEdit <br />
2) Got to<br />
HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows\ CurrentVersion. <br />
3) Change the value of &quot;RegisteredOrganization&quot; or &quot;RegisteredOwner&quot;, to what ever you want</p>
<p align="left"><a name="Opening"><strong>Opening a DOS Window to either the Drive or Directory in Explorer </strong></a></p>
<p>Add the following Registry Keys for a Directory: <br />
HKEY_CLASSES_ROOT\Directory\shell\opennew <br />
@=&quot;Dos Prompt in that Directory&quot;</p>
<p>HKEY_CLASSES_ROOT\Directory\shell\opennew\command <br />
@=&quot;command.com /k cd %1&quot;</p>
<p>Add or Edit the following Registry Keys for a Drive: <br />
HKEY_CLASSES_ROOT\Drive\shell\opennew <br />
@=&quot;Dos Prompt in that Drive&quot;</p>
<p>HKEY_CLASSES_ROOT\Drive\shell\opennew\command <br />
@=&quot;command.com /k cd %1&quot;</p>
<p>These will allow you to right click on either the drive or the directory and the option of starting the dos prompt will pop up.</p>
<p align="left"><a name="Exchange"><strong>Changing Exchange/Outlook Mailbox Location </strong></a></p>
<p>To change the location of your mailbox for Exchange: <br />
1. Open RegEdit <br />
2. Go to <br />
HKEY_CURRENT_USER\Software\ Microsoft\Windows Messaging Subsystem\ Profiles <br />
3. Go to the profile you want to change <br />
4. Go to the value name that has the file location for your mailbox (*.PST) file <br />
5. Make the change to file location or name</p>
<p>To change the location of your mailbox for Outlook <br />
1. Open RegEdit <br />
2. Go to HKEY_CURRENT_USER\Software\Microsoft\Outlook (or Outlook Express if Outlook Express) <br />
3. Go to the section &quot;Store Root&quot; <br />
4. Make the change to file location</p>
<p align="left"><a name="SoundEvents"><strong>Add/Remove Sound Events from Control Panel </strong></a></p>
<p>You can Add and delete sounds events in the Control Panel. In order to do that:</p>
<p>1. Open RegEdit <br />
2. Go to HKEY_CURRENT_USER\AppEvents\Schemes\Apps and HKEY_CURRENT_USER\AppEvents\Schemes\Eventlabels. If this key does not exist you can create it and add events. <br />
3. You can add/delete any items you want to or delete the ones you no longer want.</p>
<p align="left"><a name="RightClick"><strong>Adding an Application to the Right Click on Every Folder </strong></a></p>
<p>Here is how to add any application to the Context Menu when you right click on any Folder. This way you do not have to always go to the Start Menu. When you right click on any folder, you can have access to that application, the same as using Sent To.</p>
<p>1. Open RegEdit <br />
2. Go to HKEY_CLASSES_ROOT\Folder\shell <br />
3. Add a new Key to the &quot;Shell&quot; Key and name it anything you like. <br />
4. Give it a default value that will appear when you right click a folder, i.e. NewKey (use an &quot;&amp;&quot; without the quotes, in front of any character and it will allow you to use the keyboard) <br />
5. Click on the Key HKEY_CLASSES_ROOT\Folder\shell\NewKey <br />
6. Add a New Key named Command <br />
7. Set the (Default) value of the application you want to run <br />
8. For example: c:\program files\internet explorer\iexplore.exe (Include the full path and parameters if you need them)</p>
<p align="left"><a name="FromHere"><strong>Adding Explore From Here to Every Folder </strong></a></p>
<p>When you want to right click on any folder and want to open up an Explorer window of that folder.</p>
<p>1. Open RegEdit <br />
2. Go to HKEY_CLASSES_ROOT\Folder\shell <br />
3. Add a new Key &quot;RootExplore &quot; under the &quot;Shell&quot; Key <br />
4. Set the (Default) value to &quot;E&amp;xplore From Here &quot; <br />
5. Right Click the &quot;RootExplore &quot; Key and add a new Key &quot;Command&quot;to the RootExplore <br />
6. Set the (Default) value of Explorer.exe /e,/root,/idlist,%i</p>
<p align="left"><a name="Locationpath"><strong>Changing the Location of Windows&#8217; Installation Files </strong></a></p>
<p>If you need to change the drive and or path where Windows looks for its installation files: <br />
1.Open RegEdit <br />
2.Go to <br />
HKEY_LOCAL_MACHINE\SOFTWARE\ Microsoft\ Windows\ CurrentVersion\ Setup <br />
3.Edit the value next to SourcePath</p>
<p align="left"><a name="Banner"><strong>Creating a Logon Banner </strong></a></p>
<p>If you want to create a&nbsp; Logon Banner: A message box to appear below your logon on.</p>
<p>1.Open RegEdit <br />
2.Go To <br />
<strong>For Windows 9x and ME -</strong><br />
HKEY_LOCAL_MACHINE\SOFTWARE\ Microsoft\ Windows\ CurrentVersion\ Winlogon</p>
<p><strong>For Windows 2000 XP 2003 Vista - </strong><br />
HKEY_LOCAL_MACHINE\SOFTWARE\ Microsoft\ Windows\ CurrentVersion\ Winlogon</p>
<p>
3.Create a new String value&quot;LegalNoticeCaption &quot; <br />
4. Enter the Title of the window. What is displayed in the Title Bar. <br />
5. Create a new string value &quot;LegalNoticeText&quot; <br />
6. Enter the text for your message box that will appear even before the Logon window.</p>
<p align="left"><a name="Opener"><strong>Creating a Default File Opener </strong></a></p>
<p>If you have a un-registered file type and want to view it instead of having to select Open With. Use Explorer&#8217;s Right-click and add your program to the right-click options by: <br />
1. Open RegEdit <br />
2. Go to HKEY_CLASSES_ROOT\Unknown\Shell <br />
3. Right click on &quot;Shell&quot; and create a New Key and name it &quot;Open &quot; <br />
4. Create a New Key under the &quot;Open&quot; key you just created and name it &quot;Command&quot; <br />
5. Set the (Default) value to the path and filename of the program you want to use to open the file type <br />
6. For example: C:\Windows\NOTEPAD.EXE %1 <br />
You must use the &quot;%1&quot; for this to work.and a space between the exe and the %1</p>
<p align="left"><a name="Deleting"><strong>Deleting Registry Keys from the Command Line </strong></a></p>
<p>There are two ways to delete a key from the Registry from the Command line. At the Windows Command line:</p>
<p>RegEdit /l location of System.dat /R location of User.dat /D Registry key to delete <br />
You cannot be in Windows at the time you use this switch.</p>
<p>Or you can create a reg file as such: <br />
REGEDIT4</p>
<p><span class="style8"><strong>[-</strong></span>HKEY_LOCAL_MACHINE\the key you want to delete] <br />
Note the negative sign just behind the[<br />
Then at the Command line type: <br />
1. RegEdit C:\Windows\(name of the regfile).</p>
<p align="left"><a name="Restrictions"><strong>Change/Add Restrictions And Features </strong></a></p>
<p>If you want to make restrictions to what users can do or use on their computer without having to run Poledit, you can edit the Registry. You can add and delete Windows features in this Key shown below.</p>
<p>Zero is Off and the value 1 is On. Example: to Save Windows settings add or modify the value name NoSaveSettings to 0, if set to1 Windows will not save settings. And NoDeletePrinter set to 1 will prevent the user from deleting a printer.</p>
<p>The same key shows up at: <br />
HKEY_USERS\(yourprofilename)\ Software\ Microsoft\ Windows\ CurrentVersion\ Policies\ Explorer so change it there also if you are using different profiles.</p>
<p>1.Open RegEdit <br />
2.Go to <br />
HKEY_CURRENT_USER\Software\Microsoft\ CurrentVersion\ Policies <br />
3.Go to the Explorer Key (Additional keys that can be created under Policies are System, Explorer, Network&nbsp;&nbsp; and WinOldApp ) <br />
4.You can then add DWORD or binary values set to 1 in the appropriate keys for ON and 0 for off. <br />
NoDeletePrinter - Disables Deletion of Printers <br />
NoAddPrinter - Disables Addition of Printers <br />
NoRun - Disables Run Command <br />
NoSetFolders - Removes Folders from Settings on Start Menu <br />
NoSetTaskbar - Removes Taskbar from Settings on Start Menu <br />
NoFind - Removes the Find Command <br />
NoDrives - Hides Drives in My Computers <br />
NoNetHood - Hides the Network Neighborhood <br />
NoDesktop - Hides all icons on the Desktop <br />
NoClose - Disables Shutdown <br />
NoSaveSettings - Don&#8217;t save settings on exit <br />
DisableRegistryTools - Disable Registry Editing Tools <br />
NoRecentDocsMenu - Hides the Documents shortcut at the Start button <br />
NoRecentDocsHistory- Clears history of Documents <br />
NoFileMenu _ Hides the Files Menu in Explorer <br />
NoActiveDesktop - No Active Desktop <br />
NoActiveDesktopChanges- No changes allowed <br />
NoInternetIcon - No Internet Explorer Icon on the Desktop <br />
NoFavoritesMenu - Hides the Favorites menu <br />
NoChangeStartMenu _ Disables changes to the Start Menu <br />
NoFolderOptions _ Hides the Folder Options in the Explorer <br />
ClearRecentDocsOnExit - Empty the recent Docs folder on reboot <br />
NoLogoff - Hides the Log Off &#8230;. in the Start Menu</p>
<p>And here are a few more you can play with <br />
ShowInfoTip <br />
NoTrayContextMenu <br />
NoStartMenuSubFolders <br />
NoWindowsUpdate <br />
NoViewContextMenu <br />
EnforceShellExtensionSecurity <br />
LinkResolveIgnoreLinkInfo <br />
NoDriveTypeAutoRun <br />
NoStartBanner <br />
NoSetActiveDesktop <br />
EditLevel <br />
NoNetConnectDisconnect <br />
RestrictRun - Disables all exe programs except those listed in the RestrictRun subkey <br />
This key has many other available keys, there is one to even hide the taskbar, one to hide the control panel and more. I&#8217;m not telling you how, as someone may want to play a trick on you. The policies key has a great deal of control over how and what program can run and how one can access what feature.</p>
<p>In the System key you can enter: <br />
NoDispCPL - Disable Display Control Panel <br />
NoDispBackgroundPage - Hide Background Page <br />
NoDispScrSavPage - Hide Screen Saver Page <br />
NoDispAppearancePage - Hide Appearance Page <br />
NoDispSettingsPage - Hide Settings Page <br />
NoSecCPL - Disable Password Control Panel <br />
NoPwdPage - Hide Password Change Page <br />
NoAdminPage - Hide Remote Administration Page <br />
NoProfilePage - Hide User Profiles Page <br />
NoDevMgrPage - Hide Device Manager Page <br />
NoConfigPage - Hide Hardware Profiles Page <br />
NoFileSysPage - Hide File System Button <br />
NoVirtMemPage - Hide Virtual Memory Button</p>
<p>In the Network key you can enter: <br />
NoNetSetup - Disable the Network Control Panel <br />
NoNetSetupIDPage - Hide Identification Page <br />
NoNetSetupSecurityPage - Hide Access Control Page <br />
NoFileSharingControl - Disable File Sharing Controls <br />
NoPrintSharing - Disable Print Sharing Controls</p>
<p>In the WinOldApp key you can enter: <br />
Disabled - Disable MS-DOS Prompt <br />
NoRealMode - Disables Single-Mode MS-DOS</p>
<p align="left"><a name="Automatic"><strong>Automatic Screen Refresh </strong></a></p>
<p>When you make changes to your file system and use Explorer, the changes are not usually displayed until you press the F5 key <br />
To refresh automatically: <br />
1. Open RegEdit <br />
2. Go to<br />
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Update <br />
3. Set the value name &quot;UpdateMode&quot; to 1</p>
<p align="left"><a name="Disable"><strong>Disable Password Caching </strong></a></p>
<p>To disable password caching, which allows for the single Network login and eliminates the secondary Windows logon screen. Either use the same password or:</p>
<p>1. Open RegEdit <br />
2. Go to the key<br />
HKEY_LOCAL_MACHINE\SOFTWARE \Microsoft\ Windows\ CurrentVersion\ Policies\ Network <br />
3. Add a Dword value &quot;DisablePwdCaching&quot; and set the value to 1</p>
<p align="left"><a name="MaxMTU"><strong>Changing the MaxMTU for faster Downloads </strong></a></p>
<p>There are four Internet settings that can be configured, you can get greater throughput (faster Internet downloads) by modifying a few settings. <br />
They are the MaxMTU, MaxMSS and DefaultRcvWindow, and DefaultTTL</p>
<p>1.Open RegEdit <br />
2.Go to <br />
HKEY_LOCAL_MACHINE\System\CurrentControlset\ Services\ Class\ net\ 000x <br />
(where x is your particular network adapter binding.) <br />
3.Right click on the right panel <br />
4.Select New\String Value and create the value name IPMTU <br />
5.Double click on it and enter then the number you want. The usual change is to 576 <br />
6.Similarly, you can add IPMSS and give it a value of 536</p>
<p>(Windows 9X)You can set DefaultRcvWindow, and DefaultTTL by adding these string values to HKEY_LOCAL_MACHINE\ System\ CurrentControlset\ Services\ VXD\ MSTCP <br />
Set the DefaultRcvWindow to&quot;5840&quot;and the DefaultTTL to &quot;128&quot;</p>
<p>Note: These settings will slow down your network access speed slightly, but you will probably not even see the difference if you are using a network card. If you are using Direct Cable you should see a sight difference.</p>
<p align="left"><a name="AddingItems1"><strong>Adding Items to the Start Button </strong></a></p>
<p>To add items when you right-click on the Start Button: <br />
1.Open RegEdit <br />
2.Go to HKEY_CLASSES_ROOT\Directory\Shell <br />
3.Right-click on Shell and select New Key <br />
4.Type in the name of the key and press the Enter key <br />
5.In the Default name that shows in the right hand panel, you can add a title with a &quot;&amp;&quot; character in front of the letter for a shortcut <br />
6.Right-click on the key you just created and create another key under it called command <br />
7.For the value of this command, enter the full path and program you want to execute <br />
8.Now when you right click on the Start Button, your new program will be there. <br />
9.For example, if you want Word to be added, you would add that as the first key, the default in the right panel would be &amp;Word so when you right click on the Start Button, the W would be the Hot Key on your keyboard. The value of the key would be C:\Program Files\Office\Winword\Winword.exe</p>
<p align="left"><a name="RemoveOpen"><strong>Remove Open, Explore &amp; Find from Start Button </strong></a></p>
<p>When you right click on the Start Button, you can select Open, Explore or Find. <br />
Open shows your Programs folder. Explore starts the Explorer and allows access to all drives. <br />
Find allows you to search and then run programs. In certain situations you might want to disable this feature. <br />
To remove them: <br />
1.Open RegEdit <br />
2.Go to HKEY_CLASSES_ROOT\Directory\Shell\Find <br />
3.Delete Find <br />
4.Scroll down below Directory to Folder <br />
5.Expand this section under shell <br />
6.Delete Explore and Open <br />
Caution: - When you remove Open, you cannot open any folders.</p>
<p align="left"><a name="NEW"><strong>Removing Items from NEW Context Menu </strong></a></p>
<p>When you right-click on the desktop and select New, or use the File Menu item in the Explore and select New a list of default templates you can open up are listed. <br />
To remove items from that list: <br />
1. Open RegEdit <br />
2. Do a Search for the string ShellNew in the HKEY_CLASSES_ROOT Hive <br />
3. Delete the ShellNew command key for the items you want to remove.</p>
<p align="left"><a name="Telnet"><strong>Changing Telnet Window </strong></a></p>
<p>You can view more data if you increase the line count of Telnet. By Default it has a window size of 25 lines. To increase this so you can scroll back and look at a larger number on lines: <br />
1. Open RegEdit <br />
2. Go to HKEY_CURRENT_USER\Software\Microsoft\Telnet <br />
3. Modify the value data of &quot;Rows&quot;</p>
<p align="left"><a name="Tips"><strong>&nbsp;Changing the Tips of the Day </strong></a></p>
<p>You can edit the Tips of the day in the Registry by going to: <br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\ Windows\ CurrentVersion\ explorer\ Tips</p>
<p align="left"><a name="DisablingDrives"><strong>Disabling Drives in My Computer </strong></a></p>
<p align="left">To turn off the display of local or networked drives when you click on My Computer: <br />
1.Open RegEdit <br />
2.Go to<br />
HKEY_CURRENT_USER\Software\ Microsoft\ Windows\ CurrentVersion\ Policies\ Explorer <br />
3.Add a New DWORD item and name it NoDrives <br />
4.Give it a value of 3FFFFFF <br />
5.Now when you click on My Computer, none of your drives will show.</p>
<p align="left"><a class="style8" name="TitleBar"><strong>Changing the caption on the Title Bar </strong></a></p>
<p>Change the Caption on the Title Bar for OutLook Express or the Internet Explorer: <br />
For Outlook Express: <br />
1. Open RegEdit <br />
2. Go to<br />
HKEY_CURRENT_USER\Software\Microsoft\OutLook Express<br />
<em>For IE5 and up use:</em><br />
HKEY_CURRENT_USER\IDENTITIES \{9DDDACCO-38F2-11D6-93CA-812B1F3493B}\ SOFTWARE\ MICROSOFT\ OUTLOOK EXPRESS\5.0<br />
3. Add a string value &quot;WindowTitle&quot; (no space) <br />
4. Modify the value to what ever you like.</p>
<p>For no splash screen, add a dword value &quot;NoSplash&quot; set to 1<br />
<em>The Key {9DDDACCO-38F2-11D6-93CA-812B1F3493B} can be any key you find here. Each user has his own Key number.<br />
The Key 5.0 is whatever version of IE you have </em></p>
<p>For Internet Explorer: <br />
1. Open RegEdit <br />
2. Go to HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer\Main <br />
3. Add a string value &quot;Window Title&quot; (use a space) <br />
4. Modify the value to what ever you like.</p>
<p align="left"><a name="Start"><strong>Disabling the Right-Click on the Start Button </strong></a></p>
<p>Normally, when you right button click on the Start button, it allows you to open your programs folder, the Explorer and run Find. <br />
In situations where you don&#8217;t want to allow users to be able to do this in order to secure your computer. <br />
1.Open RegEdit <br />
2.Search for Desktop <br />
3.This should bring you to HKEY_CLASSES_ROOT\Directory <br />
4.Expand this section <br />
5.Under Shell is Find <br />
6.Delete Find <br />
7.Move down a little in the Registry to Folder <br />
8.Expand this section and remove Explore and Open <br />
Now when you right click on the Start button, nothing should happen. <br />
You can delete only those items that you need. <br />
Note: - On Microsoft keyboards, this also disables the Window-E (for Explorer) and Window-F <br />
(for Find) keys. <br />
See the section on Installation in the RESKIT to see how to do this automatically during an install.</p>
<p align="left"><a name="MyComputer"><strong>Disabling My Computer </strong></a></p>
<p>In areas where you are trying to restrict what users can do on the computer, it might be beneficial to disable the ability to click on My Computer and have access to the drives, control panel etc. <br />
To disable this: <br />
1.Open RegEdit <br />
2.Search for 20D04FE0-3AEA-1069-A2D8-08002B30309D <br />
3.This should bring you to the HKEY_CLASSES_ROOT\CLSID section <br />
4.Delete the entire section. <br />
Now when you click on My Computer, nothing will happen. <br />
You might want to export this section to a Registry file before deleting it just in case you want to enable it again. Or you can rename it to 20D0HideMyComputer4FE0-3AEA-1069-A2D8-08002B30309D. You can also hide all the Desktop Icons, see Change/Add restrictions.</p>
<p align="left"><a name="OpeningExplorer"><strong>Opening Explorer from My Computer </strong></a></p>
<p>By default, when you click on the My Computer icon, you get a display of all your drives, the Control Panel etc. If you would like to have this open the Explorer: <br />
1. Open RegEdit <br />
2. Go to <br />
HKEY_CLASSES_ROOT\CLSID\ {20D04FE0-3AEA-1069-A2D8-08002B30309D}\ Shell <br />
3 . Add a new Key named &quot;Open&quot; if it does not exists by right clicking &quot;Shell&quot; and selecting new. <br />
4. . Add a new Key named &quot;Command&quot; by right clicking &quot;Open&quot; and selecting new <br />
5. Set the (Default) value for the Command Key to &quot;Explorer.exe&quot; or &quot;C:\Windows\Explorer.exe&quot;</p>
<p align="left"><a name="Recycle"><strong>Recycle Bin Edits </strong></a></p>
<p>Fooling with the recycle bin. Why not make the icon context menu act like other icon context menus. <br />
Add rename to the menu: <br />
HKEY_CLASSES_ROOT\CLSID\ {645FF040-5081-101B-9F08-00AA002F954E}\ ShellFolder <br />
&quot;Attributes&quot;=hex:50,01,00,20 <br />
Add delete to the menu: <br />
HKEY_CLASSES_ROOT\CLSID\ {645FF040-5081-101B-9F08-00AA002F954E}\ ShellFolder <br />
&quot;Attributes&quot;=hex:60,01,00,20 <br />
Add rename and delete to the menu: <br />
HKEY_CLASSES_ROOT\CLSID\ {645FF040-5081-101B-9F08-00AA002F954E} \ShellFolder <br />
&quot;Attributes&quot;=hex:70,01,00,20 <br />
Restore the recycle bin to Windows defaults including un-deleting the icon after deletion: <br />
Restore the icon. <br />
HKEY_LOCAL_MACHINE\SOFTWARE\ Microsoft\ Windows \CurrentVersion\ explorer\<br />
Desktop\NameSpace\{645FF040-5081-101B-9F08-00AA002F954E} <br />
@=&quot;Recycle Bin&quot; <br />
Reset Windows defaults. <br />
HKEY_CLASSES_ROOT\CLSID\ {645FF040-5081-101B-9F08-00AA002F954E} \ShellFolder <br />
&quot;Attributes&quot;=hex:40,01,00,20 <br />
Other edits to the recycle bin icon: <br />
HKEY_CLASSES_ROOT\CLSID\ {645FF040-5081-101B-9F08-00AA002F954E}\ ShellFolder <br />
&quot;Attributes&quot;=hex:40,01,01,20 &#8230; standard shortcut arrow <br />
&quot;Attributes&quot;=hex:40,01,02,20 &#8230; a different shortcut arrow <br />
&quot;Attributes&quot;=hex:40,01,04,20 &#8230; and still another shortcut arrow <br />
&quot;Attributes&quot;=hex:40,01,08,20 &#8230; make it look disabled (like it&#8217;s been cut)&nbsp;</p>
<p>For Windows XP and 2000 also edit HKEY_CURRENT_USER\ Software\ Microsoft\ Windows\ CurrentVersion\ Explorer\ CLSID\ {645FF040-5081-101B-9F08-00AA002F954E} <br />
For Windows ME also edit HKEY_CURRENT_USER \Software\ Classes\ CLSID\ {645FF040-5081-101B-9F08-00AA002F954E}</p>
<p align="left"><a name="MinPassword"><strong>Setting the Minimum Password Length </strong></a></p>
<p>1.Open RegEdit <br />
2.Go to <br />
HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows\ CurrentVersion\ Policies\ Network <br />
3. Now, choose the Edit/New/Binary value command and call the new value MinPwdLen. Press Enter twice and Assign it a value equal to your minimum password length.</p>
<p align="left"><a name="Specifying"><strong>Add\delete programs to run every time Windows starts </strong></a></p>
<p>You can start or stop programs from executing at boot up by adding or deleting them to/from the run Keys in the Registry. Windows loads programs to start in the following order; Program listed in the Local Machine hive, then the Current User hive, then theWin.ini Run= and Load = lines. then finally programs in your Start Up folder.</p>
<p>To add or remove programs in the Registry <br />
1.Open RegEdit <br />
2.Go to the desired Key <br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows \CurrentVersion \Run <br />
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows \CurrentVersion \RunServices <br />
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows \CurrentVersion \Run <br />
HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows \CurrentVersion \RunServices <br />
3. Add a new String Value and name it anything you like <br />
4. For the value data, enter the path and executable for the program you want to run.</p>
<p>By adding the value to the HKEY_CURRENT_USER hive instead allows the program to start only when that user is logged on.</p>
<p>If you add the value to the RunOnce key the program will run once and be removed from the key by Windows.</p>
<p align="left"><a name="Shortcut"><strong>Removing the Shortcut Icon Arrows </strong></a></p>
<p>1.Open RegEdit <br />
2.Open the Key HKEY_CLASSES_ROOT <br />
3.Open the Key LNKFILE <br />
4.Delete the value IsShortcut <br />
5.Open the next Key PIFFILE <br />
6.Delete the value IsShortcut <br />
7.Restart the Windows</p>
<p align="left"><a name="Animation"><strong>Turn Off Window Animation </strong></a></p>
<p>You can shut off the animation displayed when you minimize and maximize Windows. <br />
1. Open RegEdit <br />
2. Go to HKEY_CURRENT_USER\Control panel \Desktop\ WindowMetrics <br />
3. Create a new string value &quot;MinAnimate&quot;. <br />
4. Set the value data of 0 for Off or 1 for On</p>
<p align="left"><a name="String"><strong>Changing your Modem&#8217;s Initialization String </strong></a></p>
<p>1.Open RegEdit <br />
2.Go to<br />
HKEY_LOCAL_MACHINE\System\CurrentControlSet \Services \Class \Modem \0000 \Init <br />
3.Change the settings to the new values</p>
<p align="left"><a name="Timeout"><strong>Increasing the Modem Timeout </strong></a></p>
<p>If your modem it is timing out during file transfers or loading Web Pages, you might try increasing the timeout period. To change the Time Out:: <br />
1.Open RegEdit <br />
2.Go to HKEY_LOCAL_MACHINE\System\CurrentControlSet\ Services\ Class\ Modem\ XXXX\ Settings Where XXXX is the number of your modem <br />
3. In the right panel and double click on Inactivity Timeout <br />
4.The number of minutes for a timeout should be entered between the brackets. <br />
5.For example, a setting could have S19=&lt;10&gt; to set it to 10 minutes.</p>
<p align="left"><a name="ControlPanel"><strong>Removing Programs from Control Panel&#8217;s Add/Remove Programs Section </strong></a></p>
<p>If you uninstalled a program by deleting the files, it may still show up in the Add/Remove programs list in the Control Panel. <br />
In order to remove it from the list. <br />
1.Open RegEdit <br />
2.Go to HKEY_LOCAL_MACHINE\ SOFTWARE\ Microsoft\ Windows\ CurrentVersion\ Uninstall <br />
3.Delete any programs here. <br />
If you have a problem locating the desired program open each key and view the DisplayName value</p>
<p align="left"><a name="Grayed"><strong>The Fix for Grayed Out Boxes </strong></a></p>
<p>The File Types tab in Explorer&#8217;s View / Options menu lets you edit most of your file types, but certain settings cannot be changed. The default action for a batch file, for instance, runs the batch file instead of opening it via Notepad or Wordpad. Thus, when you double-click on AUTOEXEC.BAT, a DOS window opens, and the file executes. If you want to change this default action and edit a batch file when you double-click on it, however, the File Types tab does not let you do so; the Set Default button for the file type called MS-DOS Batch File is always grayed out.</p>
<p>The button is grayed out because HKEY_CLASSES_ROOT&#8217;s batfile key contains an EditFlag value entry. Such entries are used throughout the Registry to prevent novice users from altering certain system settings. The binary data in batfile&#8217;s EditFlag reads d0 04 00 00. If you change this value to 00 00 00 00, you can then change any of the batch file settings. Do not, however, indiscriminately zero out EditFlag; if you do so in a system ProgID such as Drive or AudioCD, it completely disappears from the File Types list. For ProgIDs that are linked to extensions, set all EditFlags to 00 00 00 00. For system ProgIDs, replace EditFlag data with 02 00 00 00.</p>
<p>If you wish to have access to some buttons while leaving others grayed out, you must know the function of each EditFlag bit. The last two bytes of data are always zero, but most bits within the first two bytes have a specific effect:</p>
<ul>
<li>Byte 1, bit 1: Removes the file type from the master list in the File Types tab (select View / Options under Explorer) if it has an associated extension.</li>
<li>Byte 1, bit 2: Adds the file type to the File Types tab if it does not have an associated extension.</li>
<li>Byte 1, bit 3: Identifies a type with no associated extension.</li>
<li>Byte 1, bit 4: Grays out the Edit button in the File Types tab.</li>
<li>Byte 1, bit 5: Grays out the Remove button in the File Types tab.</li>
<li>Byte 1, bit 6: Grays out the New button in the Edit File Type dialog (select the Edit button in the File Types tab).</li>
<li>Byte 1, bit 7: Grays out the Edit button in the Edit File Type dialog.</li>
<li>Byte 1, bit 8: Grays out the Remove button in the Edit File Type dialog.</li>
<li>Byte 2, bit 1: Prevents you from editing a file type&#8217;s description in the Edit File Type dialog.</li>
<li>Byte 2, bit 2: Grays out the Change Icon button in the Edit File Type dialog.</li>
<li>Byte 2, bit 3: Grays out the SetDefault button in the Edit File Type dialog.</li>
<li>Byte 2, bit 4: Prevents you from editing an action&#8217;s description in the Edit Action dialog (select the Edit button in the Edit File Type dialog).</li>
<li>Byte 2, bit 5: Prevents you from editing the command line in the Edit Action dialog.</li>
<li>Byte 2, bit 6: Prevents you from setting DDE (Dynamic Data Exchange) fields in the Edit Action dialog.</li>
</ul>
<p>The EditFlags value for Drive, for instance, is d2 01 00 00 in Hex (1101 0010 0000 0001 in binary). Bits 2, 5, 7, and 8 are on in byte 1, and bit 1 is on in byte 2. The EditFlag for batfile is d0 04 00 00 in Hex or 1101 0000 0000 0100 in binary. In this case, bits 5, 7, and 8 are on in byte 1, and bit 3 is on in byte 2.</p>
<p>Bits 4, 5, and 6 of byte 2 apply only to actions that are protected. EditFlags with action keys (such as HKEY_CLASSES_ROOT\batfile\shell\open) determine protection. If byte 1, bit 1 of such an EditFlag is 0 (or if there is no EditFlag), then the action is protected. If byte 1, bit 1 is 1, then the action is unprotected.</p>
<p align="left"><a name="KnownDLLs"><strong>Protection on system files </strong></a></p>
<p>To enable protection on system files such as the KnownDLLs list, add the&nbsp; following value;</p>
<p>1. Open RegEdit <br />
2. HKEY_LOCAL_MACHINE\System\CurrentControlSet\ Control\ SessionManager <br />
3. Create the a Dword value and name it &quot;ProtectionMode &quot; <br />
4. Set the Value to1</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techexpertblog.com/windows-tips-and-tricks.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Why Do I Choose Drupal?</title>
		<link>http://www.techexpertblog.com/why-do-i-choose-drupal.html</link>
		<comments>http://www.techexpertblog.com/why-do-i-choose-drupal.html#comments</comments>
		<pubDate>Thu, 20 Sep 2007 09:30:06 +0000</pubDate>
		<dc:creator>Ernest Luk</dc:creator>
		
		<category><![CDATA[Drupal]]></category>

		<category><![CDATA[CMS]]></category>

		<guid isPermaLink="false">http://www.techexpertblog.com/why-do-i-choose-drupal.html</guid>
		<description><![CDATA[There&#8217;s no silver bullet for web based content management system (CMS) !&#160;Instead of building a new CMS, I wanted to work&#160;on an open source&#160;CMS. So,&#160;I don&#8217;t need to spend days and nights to build&#160;features around the system.&#160;I have evaluated over dozens of open source CMSs such as Drupal, Joomla, Mambo, Xoops, MODx, PHP-Nuke, PostNuke, SimpleCMS, [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s no silver bullet for web based content management system (CMS) !&nbsp;Instead of building a new CMS, I wanted to work&nbsp;on an open source&nbsp;CMS. So,&nbsp;I don&#8217;t need to spend days and nights to build&nbsp;features around the system.&nbsp;I have evaluated over dozens of open source CMSs such as Drupal, Joomla, Mambo, Xoops, MODx, PHP-Nuke, PostNuke, SimpleCMS, CMS Mades Simple, Typo3,&nbsp;WordPress&nbsp;etc. Yet, it is extremely difficult for me to choose from one of them. Many times, I wanted to build a new CMS that customized for my needs.</p>
<p>Yeah, I built a web based CMS for Computerworld and PCWorld back in 1999 when I was working for IDG Hong Kong. It&#8217;s highly customized for online publish using ASP and SQL Server. I built the system from scratch in 3 months myself with the implementation of software and hardware architecture. I named the system &quot;<strong>WebPub</strong>&quot;. The features of the system include article management, categorization, user management, access permission, newsletter subscription, online polling and front page management etc. In addtion, it supports Chinese or double-byte characters as we publish titles in Chinese as well. Following is a screen shot of the system.</p>
<p>&nbsp;&nbsp;<a target="_blank" href="http://www.techexpertblog.com/wp-content/uploads/image/webpub2_l.jpg"><img class="" height="375" alt="" width="500" border="0" src="http://www.techexpertblog.com/wp-content/uploads/image/webpub2_s.jpg" /></a><br />
WebPub 2.0</p>
<p>Easy of use or user friendly, shorter learning curve, flexible, extensible and community support are main criteria for me to evaluate a CMS. Most importantly, search engine (SEO) friendly and multi-languages support (I18N) are&nbsp;essential factors. Because, being indexed by Google and major search engines and ranked on top of the search engine result page (SERP) are&nbsp;vital for today&#8217;s web sites - it means business. And this is one of my goals for my clients at work.</p>
<p>After comprehensive evaluation and comparison, &nbsp;I decided to go with Drupal. Because Drupal provides clean URL or user friendly URL through Apache&#8217;s mod_rewrite and support for multi-languages or translation. The learning curve for studying the Drupal API is relatively short and easy to learn. However, it&#8217;s not as easy as osCommerce&nbsp;&#8211;&nbsp;a robust open source ecommerce system for online stores, which I have worked on since 2003. Still, I&nbsp;can master Drupal in a few weeks.&nbsp;it gives me more time to build solutions on it rather than coding on a core system for a new system. Even people at IBM are using the same aproach to building solutions, Using open source software to design, develop, and deploy a collaborative Web site <a href="http://www-128.ibm.com/developerworks/ibm/library/i-osource1">http://www-128.ibm.com/developerworks/ibm/library/i-osource1</a>.</p>
<p>My first Drupal site is the company site for <a href="http://www.affineinc.com">Affine Communications Inc.</a>, which is optimized for SEO purpose. I will build more solutions based on Drupal.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techexpertblog.com/why-do-i-choose-drupal.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Unix FTP Command Reference</title>
		<link>http://www.techexpertblog.com/unix-ftp-command-reference.html</link>
		<comments>http://www.techexpertblog.com/unix-ftp-command-reference.html#comments</comments>
		<pubDate>Thu, 20 Sep 2007 07:44:24 +0000</pubDate>
		<dc:creator>Ernest Luk</dc:creator>
		
		<category><![CDATA[Linux]]></category>

		<guid isPermaLink="false">http://www.techexpertblog.com/unix-ftp-command-reference.html</guid>
		<description><![CDATA[Common FTP Commands&#160;




?
to request help or information about the FTP commands


ascii
to set the mode of file transfer to ASCII 
            (this is the default and transmits seven bits per character)


binary
to set the mode of file transfer to binary 
      [...]]]></description>
			<content:encoded><![CDATA[<h3>Common FTP Commands&nbsp;</h3>
<p><center></p>
<table border="1">
<tbody>
<tr>
<th align="left"><tt>?</tt></th>
<td colspan="2"><em>to request <tt>help</tt> or information about the FTP commands</em></td>
</tr>
<tr>
<th align="left"><tt>ascii</tt></th>
<td colspan="2"><em>to set the mode of file transfer to ASCII <br />
            (this is the default and transmits seven bits per character)</em></td>
</tr>
<tr>
<th align="left"><tt>binary</tt></th>
<td colspan="2"><em>to set the mode of file transfer to binary <br />
            (the binary mode transmits all eight bits per byte and thus provides less chance of a transmission error and must be used to transmit files other than ASCII files)</em></td>
</tr>
<tr>
<th align="left"><tt>bye</tt></th>
<td colspan="2"><em>to exit the FTP environment (same as <tt>quit</tt>)</em></td>
</tr>
<tr>
<th align="left"><tt>cd</tt></th>
<td colspan="2"><em>to change directory on the remote machine</em></td>
</tr>
<tr>
<th align="left"><tt>close</tt></th>
<td colspan="2"><em>to terminate a connection with another computer</em></td>
</tr>
<tr>
<td>&nbsp;</td>
<th nowrap="nowrap" align="left"><tt>close brubeck</tt></th>
<td>closes the current FTP connection with <tt>brubeck</tt>, <br />
            &nbsp; but still leaves you within the FTP environment.</td>
</tr>
<tr>
<th align="left"><tt>delete</tt></th>
<td colspan="2"><em>to delete (remove) a file in the current remote directory (same as <tt>rm</tt> in UNIX)</em></td>
</tr>
<tr>
<th align="left"><tt>get</tt></th>
<td colspan="2"><em>to copy one file from the remote machine to the local machine</em></td>
</tr>
<tr>
<td>&nbsp;</td>
<th nowrap="nowrap" align="left"><tt>get ABC DEF</tt></th>
<td>copies file <tt>ABC</tt> in the current remote directory to (or on top of) a file named <tt>DEF</tt> in your current local directory.</td>
</tr>
<tr>
<td>&nbsp;</td>
<th nowrap="nowrap" align="left"><tt>get ABC</tt></th>
<td>copies file <tt>ABC</tt> in the current remote directory to (or on top of) a file with the same name, <tt>ABC</tt>, in your current local directory.</td>
</tr>
<tr>
<th align="left"><tt>help</tt></th>
<td colspan="2"><em>to request a list of all available FTP commands</em></td>
</tr>
<tr>
<th align="left"><tt>lcd</tt></th>
<td colspan="2"><em>to change directory on your local machine (same as UNIX <tt>cd</tt>)</em></td>
</tr>
<tr>
<th align="left"><tt>ls</tt></th>
<td colspan="2"><em>to list the names of the files in the current remote directory</em></td>
</tr>
<tr>
<th align="left"><tt>mkdir</tt></th>
<td colspan="2"><em>to make a new directory within the current remote directory</em></td>
</tr>
<tr>
<th align="left"><tt>mget</tt></th>
<td colspan="2"><em>to copy multiple files from the remote machine to the local machine; <br />
            &nbsp; you are prompted for a <tt>y</tt>/<tt>n</tt> answer before transferring each file</em></td>
</tr>
<tr>
<td>&nbsp;</td>
<th nowrap="nowrap" align="left"><tt>mget *</tt></th>
<td>copies all the files in the current remote directory to your current local directory, using the same filenames. Notice the use of the wild card character, <tt>*</tt>.</td>
</tr>
<tr>
<th align="left"><tt>mput</tt></th>
<td colspan="2"><em>to copy multiple files from the local machine to the remote machine; <br />
            &nbsp; you are prompted for a <tt>y</tt>/<tt>n</tt> answer before transferring each file</em></td>
</tr>
<tr>
<th align="left"><tt>open</tt></th>
<td colspan="2"><em>to open a connection with another computer</em></td>
</tr>
<tr>
<td>&nbsp;</td>
<th nowrap="nowrap" align="left"><tt>open brubeck</tt></th>
<td>opens a new FTP connection with <tt>brubeck</tt>; <br />
            &nbsp; you must enter a username and password for a <tt>brubeck</tt> account <br />
            &nbsp; &nbsp; &nbsp; (unless it is to be an anonymous connection).</td>
</tr>
<tr>
<th align="left"><tt>put</tt></th>
<td colspan="2"><em>to copy one file from the local machine to the remote machine </em></td>
</tr>
<tr>
<th align="left"><tt>pwd</tt></th>
<td colspan="2"><em>to find out the pathname of the current directory on the remote machine </em></td>
</tr>
<tr>
<th align="left"><tt>quit</tt></th>
<td colspan="2"><em>to exit the FTP environment (same as <tt>bye</tt>)</em></td>
</tr>
<tr>
<th align="left"><tt>rmdir</tt></th>
<td colspan="2"><em>to to remove (delete) a directory in the current remote directory </em></td>
</tr>
<tr>
        </tr>
</tbody>
</table>
<p></center></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techexpertblog.com/unix-ftp-command-reference.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Change Windows Logon Screen Logo</title>
		<link>http://www.techexpertblog.com/change-windows-logon-screen-logo.html</link>
		<comments>http://www.techexpertblog.com/change-windows-logon-screen-logo.html#comments</comments>
		<pubDate>Fri, 31 Aug 2007 19:05:26 +0000</pubDate>
		<dc:creator>Ernest Luk</dc:creator>
		
		<category><![CDATA[Microsoft]]></category>

		<guid isPermaLink="false">http://www.techexpertblog.com/change-windows-logon-screen-logo.html</guid>
		<description><![CDATA[Do you want to have your own customized logon screen with your logo&#160;for Microsoft Windows?
Here is how to do it. When you log on Windows XP/2000, it uses the default Graphical Identification and Authentication (GINA) file msgina.dll. You can change some of the items in this file, including the top portion of the logon screen [...]]]></description>
			<content:encoded><![CDATA[<p>Do you want to have your own customized logon screen with your logo&nbsp;for Microsoft Windows?</p>
<p>Here is how to do it. When you log on Windows XP/2000, it uses the default Graphical Identification and Authentication (GINA) file msgina.dll. You can change some of the items in this file, including the top portion of the logon screen (i.e., the logo). You can use several utilities to modify the file; I chose Resource Hacker (ResHack.exe), available at <a href="http://www.users.on.net/johnson/resourcehacker">http://www.users.on.net/johnson/resourcehacker</a>.</p>
<p>Before you start, double-click the My Computer icon on your desktop. From the File menu, select Tools, Folder Options. Click the View tab. Then, select the Show hidden files and folders option and clear the Hide protected operating system files (Recommended) option. Next, backup the msgina.dll file. Finally, install Win2K&#8217;s Recovery Console for fast access to the recovery options in case you have a problem. (To install the Recovery Console, run \install_source\winnt32 /cmdcons.)</p>
<p>To begin the modification process, copy msgina.dll from&nbsp; System32\msgina.dll to \Winnt\System32\msgina2.dll. Create and save the bitmap you want to load. (Win2K Pro&#8217;s original bitmap attributes are 413 x 79 pixels, so you need to match this size.)</p>
<p>Use ResHack.exe to open msgina2.dll and navigate to bitmap 101, language 1033. (Note that only Win2K Pro systems use this bitmap. For Win2K Server, Win2K Advanced Server, and Windows NT Server , go to bitmaps 101-114, language 1033. Also, each OS uses different bitmaps during different parts of the logon process.)</p>
<p>From the File menu, select Action, Replace bitmap. Make sure that the bitmap you replace corresponds with the entry under Select bitmap to replace, on the right-hand side of the window. Save the msgina2.dll file and apply the change.</p>
<p>A registry setting identifies the name of the GINA; when this registry setting is missing, the OS uses msgina.dll. Use a registry editor e.g., regedit, to add the registry subkey<br />
<strong><br />
HKEY_LOCAL_MACHINE\SOFTWARE\<br />
</strong><strong>&nbsp;&nbsp;&nbsp; Microsoft\WindowsNT\CurrentVersion\Winlogon\Ginadll</strong>,&nbsp;</p>
<p>and set the value to msgina2.dll. (Note that some third-party programs such as Lotus Notes and Symantec&#8217;s pcAnywhere also change the GINA file. Make sure to check which version of the file you need.)</p>
<p>To check your new entry, run regedit and go to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Ginadll. You must reboot the machine for the change to take effect, although you&#8217;ll notice the change on the logoff screen. To revert to the Win2K logo, simply delete the registry subkey you created.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techexpertblog.com/change-windows-logon-screen-logo.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Obtain domain transfer Authorization Code from your registrar</title>
		<link>http://www.techexpertblog.com/obtain-domain-transfer-authorization-code-from-your-registrar.html</link>
		<comments>http://www.techexpertblog.com/obtain-domain-transfer-authorization-code-from-your-registrar.html#comments</comments>
		<pubDate>Thu, 30 Aug 2007 20:13:35 +0000</pubDate>
		<dc:creator>Ernest Luk</dc:creator>
		
		<category><![CDATA[Web Hosting]]></category>

		<guid isPermaLink="false">http://www.techexpertblog.com/obtain-domain-transfer-authorization-code-from-your-registrar.html</guid>
		<description><![CDATA[Registrar Specific Instructions for Obtaining Transfer Authorization Code (Auth Code)
If you want to transfer your .com. .net, .biz, .us, .org or .info domain, you will need to contact your current registrar and request the domain&#8217;s Authorization Code (also referred to as an auth code, Authinfo code or an EPP code). An authorization code is usually [...]]]></description>
			<content:encoded><![CDATA[<p>Registrar Specific Instructions for Obtaining Transfer Authorization Code (Auth Code)</p>
<p>If you want to transfer your .com. .net, .biz, .us, .org or .info domain, you will need to contact your current registrar and request the domain&#8217;s Authorization Code (also referred to as an auth code, Authinfo code or an EPP code). An authorization code is usually a 6- to 16-character code assigned by the registrar. Authorization codes are basically a password for the domain serving as an extra security measure. The auth codes ensure that only a domain owner can make domain name transfers. The Registry requires the Auth Code so for .BIZ, .US, .ORG, and .INFO domains you will not be able to continue a transfer until you are able to get the Authorization Code from your current registrar.&nbsp;You should&nbsp;obtain your domain&#8217;s Authorization Code before initiating a domain transfer request.</p>
<p>Simply follow instructions listed below for that particular registrar to obtain your domain name&#8217;s authorization code.</p>
<p>If your registrar doesn&#8217;t have a an article on Authorization Codes or Auth Codes, email your existing registrar&#8217;s customer support from the domain&#8217;s administrative contact address and request your Authorization Code or Auth Code for a particular domain name. If you are told a .ORG, .BIZ, .INFO, .US or .NAME domain name does not have an authorization code, then the registrar is mistaken. Be persistent! Registrars are contractually required to provide auth codes upon registrant request.</p>
<p>Current registries assigning auth codes are: Verisign (the .COM and .NET Registry), Public Interest Registry (the .ORG Registry), Afilias (the .INFO Registry), NeuLevel (the .BIZ Registry), and NeuStar (the .US Registry). Auth codes provide an extra level of security for your domain names.</p>
<p><strong>Registrars<br />
</strong>4Domains.com<br />
For this registrar, Auth Code is simply your domain management password.</p>
<p>Address Creation<br />
Email technical support at <a href="mailto:support@addresscreation.com">support@addresscreation.com</a> from domain&#8217;s administrative contact email address requesting domain&#8217;s Authorization Code.</p>
<p><strong>AIT Domains<br />
</strong>Send a transfer request via an online support ticket initiated at <a href="http://aitdomains.com/tickets.htm">http://aitdomains.com/tickets.htm</a>. Request that they send domain&#8217;s Authorization Code.</p>
<p><strong>AW Registry</strong><br />
Email registration support at <a href="mailto:support@awregistry.net">support@awregistry.net</a> from domain&#8217;s Administrative email address requesting a domain&#8217;s Authorization Code.</p>
<p><strong>BulkRegister.com<br />
</strong>Email <a href="mailto:domainsupport@bulkregister.com">domainsupport@bulkregister.com</a> from domain&#8217;s &lsquo;Admin&rsquo; contact. If reseller is listed as &lsquo;Admin&rsquo; contact, call or email reseller and ask for your domain&#8217;s Authorization Code (Auth Code).</p>
<p><strong>Directi.com</strong></p>
<p>Login to Control Panel at <a href="http://manage.directi.com/customer">http://manage.directi.com/customer</a> <br />
Go to Domains &raquo; Search &raquo; Domain Registration Search, and search for domain name that you wish to transfer away. <br />
In the Orders List View that appears, click on the Domain Name. <br />
On the next page you would find the &quot;Domain Transfer Secret&quot; which is what Directi calls the Authorization Code.</p>
<p><strong>DirectNIC.com<br />
</strong>Login into account at <a href="https://secure.directnic.com/myaccount/">https://secure.directnic.com/myaccount/</a>. Submit a Trouble Ticket requesting domain&#8217;s Authinfo code. Authorization code is usually first three letters of a domain and the domain id (available by searching for your domain at Registry operator&#8217;s whois site).</p>
<p><strong>Domain Monger<br />
</strong>Create a support ticket at <a href="http://manage.domainmonger.com/contactus.html">http://manage.domainmonger.com/contactus.html</a> requesting your domain&#8217;s Authorization Code (Auth Code).</p>
<p><strong>Dotster&reg;</strong></p>
<p>Log into your account at <a href="http://www.dotster.com">http://www.dotster.com</a>. <br />
From the Quick List, click on the Domain Name you wish to transfer <br />
Scroll down to bottom of Domain Detail Page, click &quot;Request Transfer Authorization Code&quot; link to obtain the Auth code. It will be sent to domain&#8217;s administrative contact email address within minutes.</p>
<p><strong>EnCirca<br />
</strong>EnCirca requires registrants to set the auth code themselves. To set an auth code, simply login to your account at <a href="https://www.encirca.biz/myaccount/">https://www.encirca.biz/myaccount/</a> and modify the domain by selecting the &#8216;modify domain&#8217;. Enter your desired auth code into &quot;Authorization Info&quot; box, select &#8216;continue&#8217; and then &#8216;commit&#8217; to save your changes.</p>
<p><strong>eNom&reg;</strong></p>
<p>Login to eNom account at <a href="http://www.enom.com/Login.asp">http://www.enom.com/Login.asp</a> <br />
Choose menu option DOMAINS, my domains <br />
Click on the link for specific domain name that you wish to work with which brings up the domain control panel. <br />
On domain control panel, scroll down to UTILITIES, click &raquo; Contact/WhoIs Information option. <br />
At the bottom of the contact info page you will see the domain name authorization key. <br />
If you do not have a direct eNom account, contact your reseller to obtain a domain&#8217;s Authorization Code. If reseller&#8217;s name is unknown, go to the eNom &quot;help&quot; page at <a href="http://www.enom.com/help/">http://www.enom.com/help/</a> and enter your domain name in the &quot;Reseller Information Retrieval Tool.&quot;</p>
<p><strong>Joker.com</strong></p>
<p>Log in at <a href="http://www.joker.com">http://www.joker.com</a>. <br />
Browse to the service zone for a domain. <br />
Request &quot;AUTH-ID&quot;</p>
<p><strong>Melbourne IT<br />
</strong>Email <a href="mailto:das@melbourneit.com.au">das@melbourneit.com.au</a> with Domain Name, Registry Key, and request Auth code. Authorization Code will be sent to &lsquo;Admin&rsquo; email contact.</p>
<p><strong>Names4Ever.com<br />
</strong>Transfer Auth Code is your Names4Ever.com account password.</p>
<p><strong>NamesDirect<br />
</strong>Log into account at <a href="http://www.namesdirect.com/manage/">http://www.namesdirect.com/manage/</a>. <br />
In the Quick List, click on the domain name you wish to transfer. <br />
Scroll down and click &quot;Request Transfer Authorization Code&quot; link near page bottom to obtain domain&#8217;s Auth code. It will be emailed directly to domain&#8217;s administrative email address.</p>
<p><strong>NameScout<br />
</strong>Send an email message to <a href="mailto:service@namescout.com">service@namescout.com</a> from the domain owner&#8217;s email address as it appears in their records (consult Whois). In the request, list your domain names and ask that your authorization codes be sent.</p>
<p><strong>Name Secure</strong><br />
Please contact NameSecure Customer Service with a list of your domain names requesting they provide your domain authorization codes.</p>
<p><strong>NameZero<br />
</strong>Log into account at <a href="http://www.namezero.com/login.php">http://www.namezero.com/login.php</a>. <br />
Click on the Domain Name you wish to transfer. <br />
On Domain Detail page, scroll down to bottom and click &quot;Request Transfer Authorization Code&quot; to obtain domain&#8217;s Auth code. It will be e-mailed to the domain&#8217;s administrative email address on file.</p>
<p><strong>Network Solutions&reg;<br />
</strong>Call Network Solutions 24 hour support line at (888) 642-9675. Request the Authorization Code for a particular domain. They will send authorization code to the domain&#8217;s &lsquo;Admin&rsquo; contact email address.</p>
<p><strong>Register.com<br />
</strong>Login to your account at <a href="http://mydomain.register.com/">http://mydomain.register.com/</a>. Within Account Management, click on a Domain Name to view its details. It&#8217;s Auth Code is listed on the domain details page.</p>
<p><strong>RegisterFly.com - Losing ICANN Accreditation</strong><br />
Registrants at RegisterFly.com should be aware that ICANN has issued a formal notice of termination of RegisterFly.com&#8217;s Registration Accreditation Agreement (RAA). ICANN has issued a letter to RegisterFly indicating that it will cease operating as an ICANN-Accredited Registrar on March 31, 2007. &raquo; More on RegisterFly.com Pending Termination | &raquo; Consult ICANN&#8217;s RegisterFly.com FAQ | &raquo; Latest News on RegisterFly (courtesy Google News)</p>
<p>Complete the following steps to be able to gain auth code and unlock a domain at RegisterFly.com.</p>
<p>Log into your RegisterFly.com account at <a href="https://registerfly.com/scripts/login.php">https://registerfly.com/scripts/login.php</a> <br />
Click on total domains <br />
Click on the domain for which you require auth code <br />
It will say locked at the domains properties click on it to unlock the domain. <br />
Click on domain contact information (plus sign) <br />
Press configure <br />
On the next page will be to see the auth code for the domain at the bottom of the page. <br />
Please also remove the protect fly for the transfer of domain. <br />
If your control panel shows no auth codes or shows &ldquo;RRP&rdquo; or doesn&rsquo;t allow you to log in or doesn&rsquo;t show all of your domain names, you will need to contact RegisterFly. Several customers have reported successfully getting auth codes by submitting a support ticket with the appropriate subject (requesting an auth code or unlocking a domain ). Registerfly has also indicated that this is the best way to get auth codes. The average turn-around time is 1-3 days. If you are unable to submit a support ticket, write to <a href="mailto:compliance@registerfly.com">compliance@registerfly.com</a> . In your email, include the following:</p>
<p>All domain names affected; <br />
Your registerfly account name; <br />
Email address associated with your registerfly account; and <br />
A brief explanation of the specific problem (in other words, say &ldquo;I can&rsquo;t get auth codes from the control panel,&rdquo; or &ldquo;I can&rsquo;t unlock my domain name in the control panel,&rdquo; or &ldquo;I can&rsquo;t log into my control panel&rdquo; etc.).&nbsp;</p>
<p><strong>Stargate<br />
</strong>Login to your account at <a href="https://www.stargateinc.com/us/account/login.asp">https://www.stargateinc.com/us/account/login.asp</a>. Click on the link &quot;Get AuthInfo Code.&quot;</p>
<p><strong>Tucows Open SRS<br />
</strong>Auth code located in account within the Domain Details at <a href="http://manage.opensrs.net">http://manage.opensrs.net</a>. Obtain Username and password from reseller.</p>
<p><strong>Verio<br />
</strong>Request your domain&#8217;s Authorization Code by sending an email to <a href="mailto:domreg@verio-hosting.com">domreg@verio-hosting.com</a> from &lsquo;Admin&rsquo; contact. They will send the Auth Code.</p>
<p><strong>Yahoo! Domains</strong><br />
Sign in to your Yahoo! Business Control Panel (you&#8217;ll be prompted to enter your Yahoo! ID and password if you haven&#8217;t already done so). <br />
Click the &quot;Domain Control Panel&quot; link under your domain name. <br />
On your Domain Control Panel, click &quot;View Your Authorization Code.&quot; <br />
Note: If you&#8217;re a Yahoo! Website Services customer, you won&#8217;t see this task. To retrieve your authorization code, you must contact Yahoo.</p>
<p>On the following page, you&#8217;ll see your domain&#8217;s unique authorization code. We recommend printing this code for your records, as you&#8217;ll need to provide it to your new registration upon transfer.&nbsp;</p>
<p>Once you have your Auth Code<br />
Once you have obtained your auth code and initiated the transfer request, you will be required to enter your Auth code for .BIZ, .INFO, .US and .ORG domains during the transfer process. You will be able view the status of your transfer on our Registrar Transfer Status page within your account.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.techexpertblog.com/obtain-domain-transfer-authorization-code-from-your-registrar.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>OSCommerce Performance Optimization</title>
		<link>http://www.techexpertblog.com/oscommerce-performance-optimization.html</link>
		<comments>http://www.techexpertblog.com/oscommerce-performance-optimization.html#comments</comments>
		<pubDate>Sat, 11 Aug 2007 06:37:28 +0000</pubDate>
		<dc:creator>Ernest Luk</dc:creator>
		
		<category><![CDATA[OSCommerce]]></category>

		<guid isPermaLink="false">http://www.techexpertblog.com/oscommerce-performance-optimization.html</guid>
		<description><![CDATA[There&#8217;re some basic tips to optimize the performance of your OSCommerce powered store front.
IMAGES
It&#8217;s important that you have dedicated thumbnail size picture for an item instead of doing it &#34;on the fly&#34; as it decreases server load tremendously. Alternatively,&#160;you can&#160;use automatic thumbnail generator with cache features.&#160;The effects may not be noticeable on a store with [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;re some basic tips to optimize the performance of your OSCommerce powered store front.</p>
<p><strong>IMAGES</strong><br />
It&#8217;s important that you have dedicated thumbnail size picture for an item instead of doing it &quot;on the fly&quot; as it decreases server load tremendously. Alternatively,&nbsp;you can&nbsp;use <a target="_blank" href="http://www.oscommerce.com/community/contributions,1484">automatic thumbnail generator with cache features</a>.&nbsp;The effects may not be noticeable on a store with 1 or 2 visitors per hour but if you do any kind of serious volume you will defitely want to cache the images. if you&#8217;ve spent the server resources to create the thumbnail image why not store it and use it later instead of creating it again?</p>
<p><strong>CONTRIBUTIONS</strong><br />
Install ONLY the ones that you need to operate and ONLY the ones that will either save time or add value to the shopping experience. What contributions will fit these requirements will depend on the type of store you have and products for sale. Each contribution you install will add overhead to process the logic whether it be pure PHP code or MySQL queries (or both). As a&nbsp;rule of thumb,&nbsp;KEEP THE NUMBER OF CONTRIBUTIONS INSTALLED TO A MINIMUM. Too many times a store owner will go contribution happy and install every toy possible. This adds tremendous bloat to the code base and performance suffers. The intent was to make a better shopping experience but the net effect is to DECREASE the experience due to slow loading pages.</p>
<p><strong>REMOVE FEATURES NOT USED</strong><br />
There are several features of stock osCommerce that stores may or may not use that would help performance if removed. For example: banners, &quot;requests since&quot; / counter footer display, who&#8217;s online, etc.</p>
<p>If you don&#8217;t use the features remove (comment out) the code.</p>
<p>Another benefit of eliminating those features is that it prevents a store from using the MySQL query caching features. On each insert the cache is flushed. Of course, this also means storing the sessions on the filesystem!</p>
<p><strong>STS - Simple Template System</strong><br />
It is one of the worse offenders for queries and is also one of the more popular template systems available for osCommerce. If you have a significant number of categories on your store this contribution will kill your page performance. It performs a full table scan on each page request. If you have more than a few hundred categories it will increase your page load time by 200-300% based on server specifications.</p>
<p>In short, if you want speed don&#8217;t use a template system. Learn to modify the monolithic application that is osCommerce.</p>
<p><strong>SESSIONS</strong><br />
If you store the sessions in the database consider adding a (primary) multi-column index on sesskey and expiry columns. This will take up more physical space but will be much faster and will be a const query type.</p>
<p><strong>CACHING - Stock Code and Page Cache</strong><br />
The ability to cache data is very important to performance, especially if you have a large number of categories, products, and/or orders. It&#8217;s&nbsp;recommend creating a directory ABOVE the publicly accessible document root and giving it proper permissions for the server read/write. Creating it ABOVE the document root ensures that would-be hackers cannot access it with their web browser. Set your cache directory settings to this filepath to keep it from being stored in the &quot;/tmp&quot; folder which will cause issues.</p>
<p>Once you have the cache folder created and settings configured TURN ON THE CACHE FEATURES. This is especially effective with the category box!</p>
<p>The <a target="_blank" href="http://www.oscommerce.com/community/contributions,2561">Page Cache contribution</a>&nbsp; was created for those stores that have so many contributions installed it would be nearly impossible to optimize the code. The correct answer is to not bloat the store with contributions that are not needed, but if you find yourself in that position then Page Cache may be for you. Use the Page Cache contribution as a last resort, not as a first line choice.</p>
<p><strong>COMPRESS YOUR PAGE OUTPUT<br />
</strong>Most are aware of page compression via GZIP. The optimal setting is compression level 1 for speed as higher levels will not result in signifant reduction of page size. However, a quick trick is to phyically compress the data being GZIP&#8217;d by removing extra whitespace and line breaks.</p>
<p>Here is the function&nbsp;can be&nbsp;used:</p>
<p>Code:<br />
<font face="Courier New">function compress_buffer ($buffer) {<br />
&nbsp;# Return the compressed buffer<br />
&nbsp;return str_replace(&quot;\n&quot;, &#8216; &#8216;, preg_replace(&#8217;/\&gt;\s+\&lt;/&#8217;, &#8216;&gt; &lt;&#8217;, $buffer));<br />
}</font></p>
<p>Of course, this is offered as a starting point for you and you&#8217;ll have to figure out how to use it in combination with GZIP.</p>
<p>The physical page compression with GZIP compression will reduce the output HTML code by some 60-75% and will dramatically increase page performance especially on dial connections.</p>
<p><strong>CODE / QUERY OPTIMIZATION</strong><br />
The fact is&nbsp;that every store is different. They all start with the same code base but each store installs different contributions which results in great variation as to which code needs to be optimized.</p>
<p>A good starting point would be to install a per page query output contribution. This will allow you to see which queries are being executed on a per page basis and easily identify those that are redundant or taking excessive time to execute. Once you pinoint what needs to be done it&#8217;s easier to actually do it. Never perform ANY optimization blindly. ALWAYS modify code for a purpose. Sounds like common sense? You would be surpised.</p>
<p>Once again,&nbsp;this won&#8217;t approach specific contribution optimizations but will only discuss those that are common to every osC store. One such contribution is an abstraction of the MS3 tax class for MS2. This replaces the stock MS2 tax code with the new tax class for MS3 which is much more efficient and uses less queries per page. The tax query is EXECUTED ON EACH PRICE DISPLAY EVEN IF THE SETTING TO DISPLAY TAX IS DISABLED. It&#8217;s important to know that fact since most think if they turn off the option in the admin control panel it will not query for the tax. This is false and even if the setting is turned off it will STILL RUN THE TAX QUERY. Why is this important? Because the tax query is one of the most server intensive queries for all of osCommerce! For a 2 minute install it will increase the page performance / server load tremendously.</p>
<p>The <strong>also_purchased</strong> module (product info pages) is a powerful upsale tool however, it is the absolutely most server intensive query for the osCommerce application. This is especially true for those stores that have a significant number of products and orders. This would&nbsp;bring a dual 2.8 Ghz CPU, 1GB RAM server to its knees, by just running that 1 query. As you accumulate more orders you will get a feel for which products would be ideal cross sell items and thus it would be advisable to install a X-Sell contribution. It may be a bit more work to maintain but the increase in product page performance is well worth the effort.</p>
<p>On each page request the contents of the configuration table are loaded as define statements. The implication of this is that on each page request the server must perform a table scan to generate the data, which depending on how many contributions you have installed will add overhead to each page load. An excellent contribution that addresses this issue is <a href="http://www.oscommerce.com/community/contributions,1862" target="_blank">Faster Page Loads, Less DB Queries</a>. This contribution caches the data and eliminates the database query, thereby saving the table scan for when the cache is not present. This contribution is HIGHLY recommended.</p>
<p>This post is not meant to be a difinitive guide to optimizing an osCommerce store but will hopefully give you a few pointers as to which areas should be addressed as a priority to your optimizination efforts.</p>
<p>Source: <a href="http://forums.oscommerce.com/index.php?showtopic=144736">http://forums.oscommerce.com/index.php?showtopic=144736</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.techexpertblog.com/oscommerce-performance-optimization.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
