<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
    <title>EENetworks Tech Notes</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/" />
    <link rel="self" type="application/atom+xml" href="http://www.eenetworks.com/blog/atom.xml" />
    <id>tag:www.eenetworks.com,2007-08-10:/blog//1</id>
    <updated>2007-12-27T21:03:05Z</updated>
    <subtitle>Computer information and articles</subtitle>
    <generator uri="http://www.sixapart.com/movabletype/">Movable Type Publishing Platform 4.0rc3-en</generator>

<entry>
    <title>init script for vncreflector</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/12/init-script-for-vncreflector.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.31</id>

    <published>2007-12-27T20:58:59Z</published>
    <updated>2007-12-27T21:03:05Z</updated>

    <summary><![CDATA[Here's an init script for vncreflector I threw together.&nbsp; It's a hacked up copy of the init script for vncserver.&nbsp; Ideally, it would handle multiple instances of vncreflector like the vncserver init script does, but that will have to wait...]]></summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[Here's an init script for vncreflector I threw together.&nbsp; It's a hacked up copy of the init script for vncserver.&nbsp; Ideally, it would handle multiple instances of vncreflector like the vncserver init script does, but that will have to wait until I have some more time (read: until I actually need multiple instances of vncreflector running).<br /> ]]>
        <![CDATA[<code>#!/bin/bash<br />#<br /># chkconfig: - 91 35<br /># description: Starts and stops vncreflector. \<br />#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; VNC Reflector is a specialized VNC server which acts \<br />#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; as a proxy sitting between real VNC server (host) \<br />#&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; and a number of VNC clients.<br /><br /># Source function library.<br />. /etc/init.d/functions<br /><br /># Source networking configuration.<br />. /etc/sysconfig/network<br /><br /># Check that networking is up.<br />[ ${NETWORKING} = "no" ] &amp;&amp; exit 0<br /><br />unset VNCREFLECTORARGS<br />[ -f /etc/sysconfig/vncreflector ] &amp;&amp; . /etc/sysconfig/vncreflector<br /><br />prog=$"VNC Reflector"<br /><br />start() {<br />&nbsp;&nbsp;&nbsp; echo -n $"Starting $prog: "<br />&nbsp;&nbsp;&nbsp; ulimit -S -c 0 &gt;/dev/null 2&gt;&amp;1<br />&nbsp;&nbsp;&nbsp; RETVAL=0<br />&nbsp;&nbsp;&nbsp; unset BASH_ENV ENV<br />&nbsp;&nbsp;&nbsp; initlog $INITLOG_ARGS -c \<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "vncreflector -q -g /var/log/reflector.log -i /var/run/vncreflector.pid -p /etc/vncreflector/passwd /etc/vncreflector/host_info"<br />&nbsp;&nbsp;&nbsp; RETVAL=$?<br />&nbsp;&nbsp;&nbsp; [ "$RETVAL" -ne 0 ] &amp;&amp; break<br />&nbsp;&nbsp;&nbsp; [ "$RETVAL" -eq 0 ] &amp;&amp; success $"vncreflector startup" || \<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; failure $"vncreflector start"<br />&nbsp;&nbsp;&nbsp; echo<br />&nbsp;&nbsp;&nbsp; [ "$RETVAL" -eq 0 ] &amp;&amp; touch /var/lock/subsys/vncreflector<br />}<br /><br />stop() {<br />&nbsp;&nbsp;&nbsp; echo -n $"Shutting down $prog: "<br />&nbsp;&nbsp;&nbsp; unset BASH_ENV ENV<br />&nbsp;&nbsp;&nbsp; initlog $INITLOG_ARGS -c \<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; "bash -c \". /etc/init.d/functions &amp;&amp; killproc vncreflector\""<br />&nbsp;&nbsp;&nbsp; RETVAL=$?<br />&nbsp;&nbsp;&nbsp; [ "$RETVAL" -eq 0 ] &amp;&amp; success $"vncreflector shutdown" || \<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; failure $"vncreflector shutdown"<br />&nbsp;&nbsp;&nbsp; echo<br />&nbsp;&nbsp;&nbsp; [ "$RETVAL" -eq 0 ] &amp;&amp; rm -f /var/lock/subsys/vncreflector<br />}<br /><br /># See how we were called.<br />case "$1" in<br />&nbsp; start)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; start<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;;<br />&nbsp; stop)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; stop<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;;<br />&nbsp; restart|reload)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; stop<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sleep 3<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; start<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;;<br />&nbsp; condrestart)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; if [ -f /var/lock/subsys/vncreflector ]; then<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; stop<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; sleep 3<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; start<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; fi<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;;<br />&nbsp; status)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; status vncreflector<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ;;<br />&nbsp; *)<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; echo $"Usage: $0 {start|stop|restart|condrestart|status}"<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; exit 1<br />esac<br /><br /></code>]]>
    </content>
</entry>

<entry>
    <title>buildMetarDB.php &amp; SQLite</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/12/buildmetardbphp-sqlite.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.30</id>

    <published>2007-12-18T23:43:05Z</published>
    <updated>2007-12-18T23:48:00Z</updated>

    <summary>Syntax to build locationsDB:php /usr/local/lib/php/data/Services_Weather/buildMetarDB.php -v -l -t sqlite -r tcp -h localhost -d /usr/local/lib/php/data/Services_Weather/servicesWeatherDB Syntax to build airportsDB:php /usr/local/lib/php/data/Services_Weather/buildMetarDB.php -v -a -t sqlite -r tcp -h localhost -d /usr/local/lib/php/data/Services_Weather/servicesWeatherDB NotesProbably doesn&apos;t hurt to build both....</summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[Syntax to build locationsDB:<br /><br /><blockquote><code>php /usr/local/lib/php/data/Services_Weather/buildMetarDB.php -v -l -t sqlite -r tcp -h localhost -d /usr/local/lib/php/data/Services_Weather/servicesWeatherDB<br /></code></blockquote> <br />Syntax to build airportsDB:<br /><br /><blockquote><code>php
/usr/local/lib/php/data/Services_Weather/buildMetarDB.php -v -a -t
sqlite -r tcp -h localhost -d
/usr/local/lib/php/data/Services_Weather/servicesWeatherDB<br /></code></blockquote> <br /><b>Notes</b><br />Probably doesn't hurt to build both.<br />]]>
        
    </content>
</entry>

<entry>
    <title>Windows Defender: Application failed to initialize</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/11/windows-defender-application-f.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.29</id>

    <published>2007-11-21T21:24:35Z</published>
    <updated>2007-11-21T21:31:59Z</updated>

    <summary><![CDATA[Problem DescriptionCustomer's computer plagued by several strange errors.&nbsp; Couldn't print, Webroot Spy Sweeper wouldn't work, Trend Micro AntiVirus wouldn't start, and Windows Defender failed to start.SolutionAfter further troubleshooting, went into Services and found that many services were mysteriously disabled.&nbsp; By...]]></summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[<b>Problem Description</b><br />Customer's computer plagued by several strange errors.&nbsp; Couldn't print, Webroot Spy Sweeper wouldn't work, Trend Micro AntiVirus wouldn't start, and Windows Defender failed to start.<br /><br /><b>Solution</b><br />After further troubleshooting, went into Services and found that many services were mysteriously disabled.&nbsp; By sorting by Startup Type and comparing the disabled items with <a href="http://www.blackviper.com/WinVista/servicecfg.htm">this list</a>, was able to re-enable the disabled services.<br /> ]]>
        
    </content>
</entry>

<entry>
    <title>iTunes: Missing from Add or Remove Programs</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/11/itunes-missing-from-add-or-rem.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.27</id>

    <published>2007-11-13T14:19:45Z</published>
    <updated>2007-11-13T14:21:19Z</updated>

    <summary>To manually uninstall iTunes version 5.0.1.4, go to Start, Run, then enter:MsiExec.exe /x {78F4DFCE-1336-4027-BCB2-1A00C24A8653}...</summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[To manually uninstall iTunes version 5.0.1.4, go to Start, Run, then enter:<br /><br /><blockquote><code>MsiExec.exe /x {78F4DFCE-1336-4027-BCB2-1A00C24A8653}<br /></code></blockquote> ]]>
        
    </content>
</entry>

<entry>
    <title>Jetpack.exe: error -1811: File not found</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/11/jetpackexe-error-1811-file-not.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.25</id>

    <published>2007-11-11T18:17:34Z</published>
    <updated>2007-11-11T18:19:34Z</updated>

    <summary>IssueCustomer&apos;s Windows 2000 server reports a service failed upon startup. Checking Event Viewer shows that it&apos;s the DHCP service that failed to start. Digging deeper, the DHCP service failes while initialized the Jet Database Engine. The specific error number is...</summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[<b>Issue</b><br />Customer's Windows 2000 server reports a service failed upon startup. Checking Event Viewer shows that it's the DHCP service that failed to start. Digging deeper, the DHCP service failes while initialized the Jet Database Engine. The specific error number is -1811.<br /><br /><b>Resolution</b><br />Uninstall DHCP server using Add/Remove Programs, Add/Remove Windows Components, Networking Services. Reboot. Reinstall DHCP server using Add/Remove Programs, Add/Remove Windows Components, Networking Services. Check Event Viewer. DHCP server service is now running properly. Rebuild DHCP scopes as necessary.<br /><br /><b>Notes</b><br /><br /><ul><li><a href="http://support.microsoft.com/?kbid=172570">Jetpack Error Codes for Windows 2000 and Windows NT 4.0</a></li><li><a href="http:///">Thread from ExamNotes.net</a> regarding this issue</li><li><a href="http://www.windowsitlibrary.com/Content/155/08/3.html">More information</a> about DHCP errors and how to fix them&nbsp; </li></ul>]]>
        
    </content>
</entry>

<entry>
    <title>Windows: Dialog box says, &quot;This disk or device contains more than one type of content&quot;, and, &quot;What do you want Windows to do?&quot;</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/11/windows-dialog-box-says-this-d.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.24</id>

    <published>2007-11-11T17:15:46Z</published>
    <updated>2007-11-11T18:25:43Z</updated>

    <summary>IssueWhen inserting a USB memory stick, or CD-ROM/DVD-ROM, digital camera, or other removalable media, Windows spits out a dialog box that reads: &quot;This disk or device contains more than one type of content.&quot; And further: &quot;What do you want Windows...</summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[<b>Issue</b><br />When inserting a USB memory stick, or CD-ROM/DVD-ROM, digital camera, or other removalable media, Windows spits out a dialog box that reads: "This disk or device contains more than one type of content." And further: "What do you want Windows to do?" Then there is a list of choices. Sometimes the dialog box has a checkbox that allows for this action to be the default. Other times the dialog box does not this feature.<br /><br /><b>Solution</b><br /><a href="http://www.annoyances.org/exec/show/article03-018">This article</a> at ORA's <a href="http://www.annoyances.org/">Annoyances.org</a> has the proper answer.<br /><br />Basically, download <a href="http://www.microsoft.com/windowsxp/downloads/powertoys/xppowertoys.mspx">Microsoft's TweakUI</a> utility, and use it's AutoPlay disabler to disable AutoPlay for the drive letter in question. Or better yet, disable AutoPlay for every drive letter on the computer.<br /><br /><b>Notes</b><br />In my opinion, AutoPlay and AutoRun are obnoxious and dangerous.<br /><br /><ul><li><a href="http://www.chami.com/tips/windows/122896W.html">How to permanantly disable AutoPlay</a> - Good, but only seems to cover Windows 95, NT</li></ul>]]>
        
    </content>
</entry>

<entry>
    <title>Mac OS: AOL for Mac OS 9</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/11/mac-os-aol-for-mac-os-9.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.23</id>

    <published>2007-11-10T21:30:16Z</published>
    <updated>2007-11-10T21:30:55Z</updated>

    <summary>IssueYou want to run AOL under Mac OS 9.x.SolutionAccording to sources, the last known version of AOL to run under Macintosh OS 9 is AOL 5. Get it here....</summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[<b>Issue</b><br />You want to run AOL under Mac OS 9.x.<br /><br /><b>Solution</b><br />According to sources, the last known version of AOL to run under Macintosh OS 9 is AOL 5. Get it <a href="ftp://mirrors.aol.com/pub/aol/install_aol_5.0.hqx">here</a>. ]]>
        
    </content>
</entry>

<entry>
    <title>Microsoft Word: Only starts in Safe Mode</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/11/microsoft-word-only-starts-in.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.22</id>

    <published>2007-11-09T18:07:16Z</published>
    <updated>2007-11-09T18:10:13Z</updated>

    <summary><![CDATA[Problem DescriptionWhen starting Microsoft Word, a dialog box appears:Microsoft WordMicrosoft Word has encountered a problem and needs to close.&nbsp; We are sorry for the inconvenience.The information you were working on might be lost.&nbsp; Microsoft Word can try to recover it...]]></summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[<b>Problem Description</b><br />When starting Microsoft Word, a dialog box appears:<br /><br /><blockquote><code>Microsoft Word<br /><br />Microsoft Word has encountered a problem and needs to close.&nbsp; We are sorry for the inconvenience.<br /><br />The information you were working on might be lost.&nbsp; Microsoft Word can try to recover it for you.<br /><br />Recover my work and restart Microsoft Word<br /><br />Please tell Microsoft about this problem.<br /><br />We have created an error report that you can send to help us improve Microsoft Word.&nbsp; We will treat this report as confidential and anonymous.<br /><br />To see what data this error report contains, click here.<br /><br />Send Error Report&nbsp;&nbsp; Don't Send<br /><br /></code></blockquote>Regardless of which button is clicked, the following dialog box appears:<br /><br /><blockquote><code>Microsoft Word<br /><br />Word failed to start correctly last time.&nbsp; Starting Word in safe mode will help you correct or isolate a startup problem in order to successfully start the program.&nbsp; Some functionality may be disabled in this mode.<br /><br />Do you want to start Word in safe mode?<br /><br />Yes&nbsp;&nbsp; No<br /></code></blockquote><b>Solution</b><br />Rename or delete the <code>normal.dot</code> file. <code>Normal.dot</code> is stored in different places depending on which version of Microsoft Word and which version of Windows you have.&nbsp; ]]>
        
    </content>
</entry>

<entry>
    <title>Windows XP: Inserting an index entry into index $0 of file 174747</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/11/windows-xp-inserting-an-index.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.21</id>

    <published>2007-11-09T13:19:39Z</published>
    <updated>2007-11-10T16:04:46Z</updated>

    <summary>Option 1Remove hard drive to be checked from original computer.Temporarily install it into a second computer running XP*.Start the second computer.Note the letter of the hard drive to be checked by going to My Computer.From a command prompt, run chkdsk...</summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[<b>Option 1</b><br /><br /><ul><li>Remove hard drive to be checked from original computer.</li><li>Temporarily install it into a second computer running XP*.</li><li>Start the second computer.</li><li>Note the letter of the hard drive to be checked by going to My Computer.</li><li>From a command prompt, run chkdsk as follows: <br /></li></ul><blockquote><code>chkdsk /i /c /v /r x:<br /></code></blockquote>where x: is the drive letter of the problem hard drive<br /><br /><ul><li>After chkdsk finishes, run it again, as follows: </li></ul><blockquote><code>chkdsk /x /v /r x:<br /></code></blockquote>where x: is the drive letter of the problem hard drive<br /><br /><br /><b>Option 2<br /><br /></b><ul><li>Boot computer using BartPE boot CD.</li><li>From a command prompt, run chkdsk as follows: <br /></li></ul><blockquote><code>chkdsk /i /c /v /r c:<br /></code></blockquote>change c: to the drive letter of the problem hard drive if necessary.<br /><br /><ul><li>After chkdsk finishes, run it again, as follows: </li></ul><blockquote><code>chkdsk /x /v /r c:<br /></code></blockquote>again changing c: to the drive letter of the problem hard drive if necessary.<br /><br /><br /><b>WARNING<br /><br /></b><b>* WARNING!!!&nbsp; </b>Be careful not to install a hard drive from a Windows 2000 or Windows NT computer into a computer running XP.&nbsp; Windows XP automatically forces an NTFS filesystem from Windows 2000 or Windows NT to be "upgraded", which will probably cause serious issues when reinstalling the drive into its original computer. ]]>
        
    </content>
</entry>

<entry>
    <title>Windows XP: Filmstrip missing from the View menu in Explorer</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/11/windows-xp-filmstrip-missing-f.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.20</id>

    <published>2007-11-09T13:14:23Z</published>
    <updated>2007-11-09T13:15:33Z</updated>

    <summary>SolutionRight click on My Computer, then click on Properties.Click on the Advanced tab, then click on the Settings button under the Performance group.To enable the Filmstrip view in Explorer, check the &quot;Use common tasks in folders&quot; check box....</summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[<b>Solution<br /><br /></b><ul><li>Right click on My Computer, then click on Properties.</li><li>Click on the Advanced tab, then click on the Settings button under the Performance group.</li><li>To enable the Filmstrip view in Explorer, check the "Use common tasks in folders" check box.</li></ul> ]]>
        
    </content>
</entry>

<entry>
    <title>cPanel: Trying to change FTP quota fails: &quot;The server was not able to find the document (./frontend/monsoon/ftp/editquota.html) you requested . Please check the url and try again.&quot;</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/11/cpanel-trying-to-change-ftp-qu.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.19</id>

    <published>2007-11-09T12:46:59Z</published>
    <updated>2007-11-09T12:49:09Z</updated>

    <summary>SolutionAs root, run:cd /usr/local/cpanel/base/frontend/monsoon/ftpln -fs ../../x/ftp/editquota.html editquota.htmlln -fs ../../x/ftp/doeditquota.html doeditquota.html...</summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[<b>Solution</b><br />As root, run:<br /><br /><blockquote><code>cd /usr/local/cpanel/base/frontend/monsoon/ftp<br />ln -fs ../../x/ftp/editquota.html editquota.html<br />ln -fs ../../x/ftp/doeditquota.html doeditquota.html<br /><br /></code></blockquote> ]]>
        
    </content>
</entry>

<entry>
    <title>Microsoft Windows Product Key Update Tool</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/10/microsoft-windows-product-key.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.18</id>

    <published>2007-10-30T19:28:11Z</published>
    <updated>2007-10-30T19:39:04Z</updated>

    <summary>Got a valid product key for Windows, but getting Windows Genuine Advantage notifications?...</summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[Got a valid product key for Windows, but getting <a href="http://en.wikipedia.org/wiki/Windows_Genuine_Advantage">Windows Genuine Advantage</a> notifications?<br /> ]]>
        <![CDATA[Download the <a href="http://www.microsoft.com/genuine/selfhelp/PkuInstructions.aspx?displaylang=en">Windows Product Key Update Tool</a> from Microsoft.<br />
<br />
It can change an invalid Windows product key for <a href="http://en.wikipedia.org/wiki/Windows_xp">Windows XP</a> or <a href="http://en.wikipedia.org/wiki/Windows_Vista">Windows Vista</a>.&nbsp; It can handle switching from a bogus <a href="http://en.wikipedia.org/wiki/Volume_license_key">Volume License Key</a> (such as the infamous <a href="http://en.wikipedia.org/wiki/Volume_license_key#FCKGW">FCKGW</a> key).]]>
    </content>
</entry>

<entry>
    <title>The &quot;PaperPort Black &amp; White Image&quot; printer doesn&apos;t work</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/10/the-paperport-black-white-imag.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.17</id>

    <published>2007-10-24T19:06:25Z</published>
    <updated>2007-10-24T19:08:51Z</updated>

    <summary><![CDATA[Problem DescriptionWhen customer tries to print to the PaperPort Black &amp; White Image printer, nothing happens....]]></summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[<b>Problem Description</b><br />When customer tries to print to the PaperPort Black &amp; White Image printer, nothing happens.<br /> ]]>
        <![CDATA[Also, if you try to access the properties of the printer, you will get and explorer.exe error, and Windows will ask you if you want to install a new driver.<br /><br /><i>C:\WINDOWS\Explorer.EXE<br /><br />Function address 0x6a906370 caused a protection fault. (exception code 0xc0000005)<br />Some or all property page(s) may not be displayed.<br /><br />OK</i><br /><br />Followed by the message:<br /><br /><i>Printer Properties<br /><br />The 'PaperPort Mono Printer Driver' printer driver is not installed on this computer.&nbsp; Some printer properties will not be accessible unless you install the printer driver.&nbsp; Do you want to install the driver now?<br /><br />Yes&nbsp; No</i><br /><br />If you click yes, the Add Printer Driver Wizard opens. The PaperPort Mono Printer Driver is not in the list of the available printers, however.<br /><br />If you pick a different driver than the correct one for PaperPort Mono Printer Driver, the wizard will complete, but you receive the Function address 0x6a906370 caused a protection fault message again. The PaperPort Mono Printer still does not work, and the same error messages come up when you try to go to the properties for the PaperPort Mono Printer.<br /><br />If you cancel the Add Printer Driver Wizard, you receive the Function address 0x6a906370 caused a protection fault message again. The PaperPort Mono Printer still does not work, and the same error messages come up when you try to go to the properties for the PaperPort Mono Printer.<br /><br />If you click no, the PaperPort Mono Printer Driver Properties window opens, but there are property pages that are missing.<br /><br /><b>Solution</b><br />Note: Requires the original ScanSoft PaperPort 9.0 installation disk.<br /><br />From the Control Panel, start Add or Remove Programs.<br /><br />Scroll down to and click on the PaperPort 9.0 entry. Then click on the Change button. When asked whether you want to Repair or Remove the software, select Repair. Follow the instructions.<br /><br /><b>Notes</b><br />May work with other versions of PaperPort as well. Only tested with PaperPort 9.0.<br /><br />System that originally had the problem had both versions 8.0 and 9.0 of PaperPort installed.<br /><br />May also apply to the PaperPort Color Image printer.<br />]]>
    </content>
</entry>

<entry>
    <title>Windows 2000: &quot;NTDetect Failed&quot;</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/10/windows-2000-ntdetect-failed.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.16</id>

    <published>2007-10-24T19:01:00Z</published>
    <updated>2007-10-24T19:18:40Z</updated>

    <summary>Problem DescriptionWhen booting up computer, message &quot;NTDetect Failed&quot; is displayed....</summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[<p><b>Problem Description</b><br />When booting up computer, message "NTDetect Failed" is displayed.<br /></p>]]>
        <![CDATA[<b>Resolution</b><br />
Reinstall Windows 2000. Boot from Windows 2000 <span class="caps">CD, </span>select Repair, select Manual repair. Uncheck everything except Startup Environment. If this doesn't work, boot from the Windows 2000 <span class="caps">CD, </span>select Repair, then select Fast repair.<br /><br />
<b>Notes &amp; References</b><br />
<ul><li>http://www.jsifaq.com/SUBI/tip4200/rh4267.htm</li>
<li>May apply to other NT-based versions of Windows, e.g. NT 4.0, <span class="caps">XP,</span> 2003, et al.</li></ul>]]>
    </content>
</entry>

<entry>
    <title>Outlook Express New Mail Notification</title>
    <link rel="alternate" type="text/html" href="http://www.eenetworks.com/blog/2007/09/outlook-express-new-mail-notif.html" />
    <id>tag:www.eenetworks.com,2007:/blog//1.13</id>

    <published>2007-09-05T16:13:24Z</published>
    <updated>2007-09-05T16:17:33Z</updated>

    <summary>Many of Microsoft&apos;s &quot;free&quot; applications are intentionally missing features in an effort to entice users into purchasing the full-blown version of the application.Outlook Express is one example....</summary>
    <author>
        <name>Ebon Elza</name>
        <uri>http://www.eenetworks.com</uri>
    </author>
    
    
    <content type="html" xml:lang="en" xml:base="http://www.eenetworks.com/blog/">
        <![CDATA[Many of Microsoft's "free" applications are intentionally missing features in an effort to entice users into purchasing the full-blown version of the application.<br /><br />Outlook Express is one example.<br /><br /> ]]>
        <![CDATA[While OE can play a sound when new mail arrives, some users like to have a pop-up notification when new mail arrives.<br /><br />There is, however, a program from a company called <a href="http://www.accuratesolution.net/">Accurate Solutions</a> that can display pop-up notifications.<br /><br /><span class="mt-enclosure mt-enclosure-file"><a href="http://www.eenetworks.com/blog/assetts/files/oema.exe">oema.exe</a></span>.<br />]]>
    </content>
</entry>

</feed>
