<?xml version="1.0" encoding="iso-8859-1"?><!-- generator="b2evolution/4.0.5" -->
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:admin="http://webns.net/mvcb/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<title>SwisherTech</title>
		<link>http://www.swishertech.com/blog5.php</link>
		<atom:link rel="self" type="application/rss+xml" href="http://www.swishertech.com/blog5.php?tempskin=_rss2" />
		<description></description>
		<language>en-US</language>
		<docs>http://blogs.law.harvard.edu/tech/rss</docs>
		<admin:generatorAgent rdf:resource="http://b2evolution.net/?v=4.0.5"/>
		<ttl>60</ttl>
				<item>
			<title>Force Windows XP to Update Microsoft Products</title>
			<link>http://www.swishertech.com/blog5.php/2009/06/23/force-windows-xp-to-update-microsoft-pro</link>
			<pubDate>Tue, 23 Jun 2009 21:04:58 +0000</pubDate>			<dc:creator>Jonathan</dc:creator>
			<category domain="main">Technology</category>			<guid isPermaLink="false">40@http://www.swishertech.com/</guid>
						<description>&lt;p&gt;I have been needing this for along time. I can not count how many times I have sat around waiting for a Windows XP machine to start Microsoft automatic updates.  In Windows Vista the Widows update window has a button to force the OS to go out to the internet (unless your using a Windows Server Update Service (WSUS)) and get updates.  In Windows XP use this command line tool:&lt;/p&gt;

&lt;p&gt;wuauclt.exe /detectnow&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.swishertech.com/blog5.php/2009/06/23/force-windows-xp-to-update-microsoft-pro&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>I have been needing this for along time. I can not count how many times I have sat around waiting for a Windows XP machine to start Microsoft automatic updates.  In Windows Vista the Widows update window has a button to force the OS to go out to the internet (unless your using a Windows Server Update Service (WSUS)) and get updates.  In Windows XP use this command line tool:</p>

<p>wuauclt.exe /detectnow</p><div class="item_footer"><p><small><a href="http://www.swishertech.com/blog5.php/2009/06/23/force-windows-xp-to-update-microsoft-pro">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.swishertech.com/blog5.php/2009/06/23/force-windows-xp-to-update-microsoft-pro#comments</comments>
			<wfw:commentRss>http://www.swishertech.com/blog5.php?tempskin=_rss2&#38;disp=comments&#38;p=40</wfw:commentRss>
		</item>
				<item>
			<title>Apostrophe in a SQL Query String</title>
			<link>http://www.swishertech.com/blog5.php/2009/06/16/apostrophe-in-a-sql-query-string</link>
			<pubDate>Tue, 16 Jun 2009 15:42:39 +0000</pubDate>			<dc:creator>Jonathan</dc:creator>
			<category domain="main">Programming</category>			<guid isPermaLink="false">39@http://www.swishertech.com/</guid>
						<description>&lt;p&gt;I was running into a problem with a SQL query string being terminated to soon.  One of the variables I was using in the concatenation of the string contained an apostrophe.  In order to handle this situation you have to put two apostrophes to escape the character in the string.&lt;/p&gt;

&lt;p&gt;For example SELECT column1 FROM table WHERE column2=&#039;values&#039;s&#039; needs to be SELECT column1 FROM table WHERE column2=&#039;values&#039;&#039;s&#039;.&lt;/p&gt;

&lt;p&gt;The application I was writing used Jython.  &lt;a href=&quot;http://www.jython.org/&quot;&gt;Jython&lt;/a&gt; is just Python implemented in Java.  I have found working with strings in Jython to be very easy.&lt;/p&gt;

&lt;p&gt;Here is the function I came up with to use on the variable before using it in the SQL query string.&lt;/p&gt;

&lt;pre&gt;
def sqlApostrophes(strInput):
	strOutput = strInput.replace(&quot;&#039;&quot;,&quot;&#039;&#039;&quot;)

	return strOutput
&lt;/pre&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.swishertech.com/blog5.php/2009/06/16/apostrophe-in-a-sql-query-string&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>I was running into a problem with a SQL query string being terminated to soon.  One of the variables I was using in the concatenation of the string contained an apostrophe.  In order to handle this situation you have to put two apostrophes to escape the character in the string.</p>

<p>For example SELECT column1 FROM table WHERE column2='values's' needs to be SELECT column1 FROM table WHERE column2='values''s'.</p>

<p>The application I was writing used Jython.  <a href="http://www.jython.org/">Jython</a> is just Python implemented in Java.  I have found working with strings in Jython to be very easy.</p>

<p>Here is the function I came up with to use on the variable before using it in the SQL query string.</p>

<pre>
def sqlApostrophes(strInput):
	strOutput = strInput.replace("'","''")

	return strOutput
</pre><div class="item_footer"><p><small><a href="http://www.swishertech.com/blog5.php/2009/06/16/apostrophe-in-a-sql-query-string">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.swishertech.com/blog5.php/2009/06/16/apostrophe-in-a-sql-query-string#comments</comments>
			<wfw:commentRss>http://www.swishertech.com/blog5.php?tempskin=_rss2&#38;disp=comments&#38;p=39</wfw:commentRss>
		</item>
				<item>
			<title>IMAP Account in Outlook Not Deleting Mail Items</title>
			<link>http://www.swishertech.com/blog5.php/2009/06/09/imap-account-in-outlook-not-deleting-mai</link>
			<pubDate>Tue, 09 Jun 2009 23:18:40 +0000</pubDate>			<dc:creator>Jonathan</dc:creator>
			<category domain="main">Technology</category>			<guid isPermaLink="false">38@http://www.swishertech.com/</guid>
						<description>&lt;p&gt;I have recently setup an IMAP email account in Outlook.  After using it for a few days I notice that none of the mail items I delete disappear.  Each time I delete a mail item it just becomes grey with a line crossing it off.  I thought at first it just took time for the message to leave the server.  After a couple of days of a cluttered inbox I did a search on the internet and found that you have to tell the Outlook email client to purge all the deleted mail from the server.  Here are the steps:&lt;/p&gt;

&lt;p&gt;When you want to delete all the crossed out emails go to Edit-&gt;Purge-&gt;Purge Marked Items in &amp;#8220;your email account&amp;#8221;&lt;/p&gt;

&lt;div class=&quot;image_block&quot;&gt;&lt;img src=&quot;http://www.swishertech.com/media/blogs/swishertech/purge_from_outlook.png&quot; alt=&quot;&quot; title=&quot;&quot; width=&quot;448&quot; height=&quot;297&quot; /&gt;&lt;/div&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.swishertech.com/blog5.php/2009/06/09/imap-account-in-outlook-not-deleting-mai&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>I have recently setup an IMAP email account in Outlook.  After using it for a few days I notice that none of the mail items I delete disappear.  Each time I delete a mail item it just becomes grey with a line crossing it off.  I thought at first it just took time for the message to leave the server.  After a couple of days of a cluttered inbox I did a search on the internet and found that you have to tell the Outlook email client to purge all the deleted mail from the server.  Here are the steps:</p>

<p>When you want to delete all the crossed out emails go to Edit->Purge->Purge Marked Items in &#8220;your email account&#8221;</p>

<div class="image_block"><img src="http://www.swishertech.com/media/blogs/swishertech/purge_from_outlook.png" alt="" title="" width="448" height="297" /></div><div class="item_footer"><p><small><a href="http://www.swishertech.com/blog5.php/2009/06/09/imap-account-in-outlook-not-deleting-mai">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.swishertech.com/blog5.php/2009/06/09/imap-account-in-outlook-not-deleting-mai#comments</comments>
			<wfw:commentRss>http://www.swishertech.com/blog5.php?tempskin=_rss2&#38;disp=comments&#38;p=38</wfw:commentRss>
		</item>
				<item>
			<title>Virtual PC 2007 Network Adapter Error</title>
			<link>http://www.swishertech.com/blog5.php/2009/05/31/virtual-pc-2007-network-adapter-error</link>
			<pubDate>Sun, 31 May 2009 16:58:22 +0000</pubDate>			<dc:creator>Jonathan</dc:creator>
			<category domain="main">Technology</category>			<guid isPermaLink="false">37@http://www.swishertech.com/</guid>
						<description>&lt;p&gt;Two things happened to me today when I tried setting up Microsoft Virtual PC 2007 on my Windows 7 x64 development machine.  First I received an error saying &quot;Virtual PC could not open the virtual machine network services driver.&quot;  To solve this problem I had to go into the network adapter properties of the host machine and enable &quot;Virtual Machine Network Services.&quot; Here is a picture of the network adapter property you want to have checked.&lt;/p&gt;
&lt;div class=&quot;image_block&quot;&gt;&lt;img src=&quot;http://www.swishertech.com/media/users/jonathan/virtual_machine_network_checkbox.png&quot; alt=&quot;&quot; title=&quot;&quot; width=&quot;259&quot; height=&quot;72&quot; /&gt;&lt;/div&gt;&lt;p&gt; &lt;br /&gt;
I found the solution to this problem at &lt;a href=&quot;http://www.aspdeveloper.net/Virtual_PC/rn-739-39755_Virtual_PC_could_not_open_the_Virtual_Machine_Network_Services_driver.aspx&quot;&gt;http://www.aspdeveloper.net&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;After the network service error was gone I then received an error when starting the virtual machine.  The error said &quot;The network adapter with address &quot;00:00:00:00:00:00&quot; of virtual machine &#039;VMName&#039; failed to initialize because the address is a null address.&quot;  To fix this problem I had to edit the registry by using regedit.  Here are the steps:&lt;br /&gt;
   1.  Examine the key value at HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002bE10318}\nnnn\DriverDesc to locate the desired host adapter where nnnn is a four digit number.&lt;br /&gt;
   2. Look at the GUID value for the NetCfgInstanceId key value.&lt;br /&gt;
   3. Add the DWORD key named &quot;Flags&quot; at HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VPCNetS2\Parameters\Adapters\&quot;guid&quot; and set the value to 0 where &quot;guid&quot; is the GUID found in step 2.&lt;br /&gt;
   4. Restart the computer. &lt;/p&gt;

&lt;p&gt;I found the solution to this problem at &lt;a href=&quot;http://blogs.msdn.com/virtual_pc_guy/archive/2005/01/17/354971.aspx&quot;&gt;http://blogs.msdn.com&lt;/a&gt;&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.swishertech.com/blog5.php/2009/05/31/virtual-pc-2007-network-adapter-error&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>Two things happened to me today when I tried setting up Microsoft Virtual PC 2007 on my Windows 7 x64 development machine.  First I received an error saying "Virtual PC could not open the virtual machine network services driver."  To solve this problem I had to go into the network adapter properties of the host machine and enable "Virtual Machine Network Services." Here is a picture of the network adapter property you want to have checked.</p>
<div class="image_block"><img src="http://www.swishertech.com/media/users/jonathan/virtual_machine_network_checkbox.png" alt="" title="" width="259" height="72" /></div><p> <br />
I found the solution to this problem at <a href="http://www.aspdeveloper.net/Virtual_PC/rn-739-39755_Virtual_PC_could_not_open_the_Virtual_Machine_Network_Services_driver.aspx">http://www.aspdeveloper.net</a></p>

<p>After the network service error was gone I then received an error when starting the virtual machine.  The error said "The network adapter with address "00:00:00:00:00:00" of virtual machine 'VMName' failed to initialize because the address is a null address."  To fix this problem I had to edit the registry by using regedit.  Here are the steps:<br />
   1.  Examine the key value at HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E972-E325-11CE-BFC1-08002bE10318}\nnnn\DriverDesc to locate the desired host adapter where nnnn is a four digit number.<br />
   2. Look at the GUID value for the NetCfgInstanceId key value.<br />
   3. Add the DWORD key named "Flags" at HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\VPCNetS2\Parameters\Adapters\"guid" and set the value to 0 where "guid" is the GUID found in step 2.<br />
   4. Restart the computer. </p>

<p>I found the solution to this problem at <a href="http://blogs.msdn.com/virtual_pc_guy/archive/2005/01/17/354971.aspx">http://blogs.msdn.com</a></p><div class="item_footer"><p><small><a href="http://www.swishertech.com/blog5.php/2009/05/31/virtual-pc-2007-network-adapter-error">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.swishertech.com/blog5.php/2009/05/31/virtual-pc-2007-network-adapter-error#comments</comments>
			<wfw:commentRss>http://www.swishertech.com/blog5.php?tempskin=_rss2&#38;disp=comments&#38;p=37</wfw:commentRss>
		</item>
				<item>
			<title>A fatal error occured while trying to sysprep the machine. Windows 7</title>
			<link>http://www.swishertech.com/blog5.php/2009/05/15/a-fatal-error-occured-while-trying-to-sy-7</link>
			<pubDate>Fri, 15 May 2009 22:36:17 +0000</pubDate>			<dc:creator>Jonathan</dc:creator>
			<category domain="main">Technology</category>			<guid isPermaLink="false">36@http://www.swishertech.com/</guid>
						<description>&lt;p&gt;I was trying to create an image of Windows 7 for Windows Deployment Services (WDS) when I ran into a problem with sysprep. Every time I ran sysprep I would receive this error. &quot;A fatal error occurred while trying to sysprep the machine.&quot;  I tried both a command window and the GUI interface of sysprep.  I then came across this webpage &lt;a href=&quot;http://social.technet.microsoft.com/Forums/en-US/w7itproinstall/thread/8f5002e1-95b4-47bf-b031-4b72b3eb388a/&quot;&gt;http://social.technet.microsoft.com/Forums/en-US/w7itproinstall/thread/8f5002e1-95b4-47bf-b031-4b72b3eb388a/&lt;/a&gt;.  The problem seemed to be with one of the Microsoft Media Player processes.  The process I killed was wmpnscfg.exe. You may need to show processes for all users. Once wmpnscfg.exe was ended sysprep ran just fine.&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.swishertech.com/blog5.php/2009/05/15/a-fatal-error-occured-while-trying-to-sy-7&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>I was trying to create an image of Windows 7 for Windows Deployment Services (WDS) when I ran into a problem with sysprep. Every time I ran sysprep I would receive this error. "A fatal error occurred while trying to sysprep the machine."  I tried both a command window and the GUI interface of sysprep.  I then came across this webpage <a href="http://social.technet.microsoft.com/Forums/en-US/w7itproinstall/thread/8f5002e1-95b4-47bf-b031-4b72b3eb388a/">http://social.technet.microsoft.com/Forums/en-US/w7itproinstall/thread/8f5002e1-95b4-47bf-b031-4b72b3eb388a/</a>.  The problem seemed to be with one of the Microsoft Media Player processes.  The process I killed was wmpnscfg.exe. You may need to show processes for all users. Once wmpnscfg.exe was ended sysprep ran just fine.</p><div class="item_footer"><p><small><a href="http://www.swishertech.com/blog5.php/2009/05/15/a-fatal-error-occured-while-trying-to-sy-7">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.swishertech.com/blog5.php/2009/05/15/a-fatal-error-occured-while-trying-to-sy-7#comments</comments>
			<wfw:commentRss>http://www.swishertech.com/blog5.php?tempskin=_rss2&#38;disp=comments&#38;p=36</wfw:commentRss>
		</item>
				<item>
			<title>HP Pavilion dv9000  service dv9334us nvidia Video Card Driver Issue</title>
			<link>http://www.swishertech.com/blog5.php/2009/02/21/hp-pavilion-dv9000-service-dv9334us-nvid</link>
			<pubDate>Sun, 22 Feb 2009 02:03:38 +0000</pubDate>			<dc:creator>Jonathan</dc:creator>
			<category domain="main">Technology</category>			<guid isPermaLink="false">35@http://www.swishertech.com/</guid>
						<description>&lt;p&gt;After about a whole day of scouring the internet I have found a solution that seems to work.  Before I give the solution let me explain the problem.&lt;/p&gt;

&lt;p&gt;The Problem:&lt;br /&gt;
When I try to install a driver for the nvidia GeForce Go 7600 the computer would restart to a blue screen.  The only option of booting up was with safe mode.  Once in safe mode I could uninstall the driver and restart into regular mode.  This went on all day trying to install video card drivers from the nvidia site and HP site.  I also tried updating the bios and manually specifying the inf file rather than running the setup.exe file.  The problem machine would still boot to a blue screen unless I was using the standard VGA driver.&lt;/p&gt;

&lt;p&gt;The solution:&lt;br /&gt;
After many hours I came across a post here &lt;a href=&quot;http://forum.notebookreview.com/showthread.php?t=51785&quot;&gt;http://forum.notebookreview.com/showthread.php?t=51785&lt;/a&gt;.  The suggestion to use the tweaked driver here &lt;a href=&quot;http://www.tweakforce.com/&quot;&gt;http://www.tweakforce.com/&lt;/a&gt; solved my problem.  The driver acts just like the nvidia driver with the nvidia control panel, but does not cause the computer to blue screen on boot.&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.swishertech.com/blog5.php/2009/02/21/hp-pavilion-dv9000-service-dv9334us-nvid&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>After about a whole day of scouring the internet I have found a solution that seems to work.  Before I give the solution let me explain the problem.</p>

<p>The Problem:<br />
When I try to install a driver for the nvidia GeForce Go 7600 the computer would restart to a blue screen.  The only option of booting up was with safe mode.  Once in safe mode I could uninstall the driver and restart into regular mode.  This went on all day trying to install video card drivers from the nvidia site and HP site.  I also tried updating the bios and manually specifying the inf file rather than running the setup.exe file.  The problem machine would still boot to a blue screen unless I was using the standard VGA driver.</p>

<p>The solution:<br />
After many hours I came across a post here <a href="http://forum.notebookreview.com/showthread.php?t=51785">http://forum.notebookreview.com/showthread.php?t=51785</a>.  The suggestion to use the tweaked driver here <a href="http://www.tweakforce.com/">http://www.tweakforce.com/</a> solved my problem.  The driver acts just like the nvidia driver with the nvidia control panel, but does not cause the computer to blue screen on boot.</p><div class="item_footer"><p><small><a href="http://www.swishertech.com/blog5.php/2009/02/21/hp-pavilion-dv9000-service-dv9334us-nvid">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.swishertech.com/blog5.php/2009/02/21/hp-pavilion-dv9000-service-dv9334us-nvid#comments</comments>
			<wfw:commentRss>http://www.swishertech.com/blog5.php?tempskin=_rss2&#38;disp=comments&#38;p=35</wfw:commentRss>
		</item>
				<item>
			<title>How to check if a group policy has been applied</title>
			<link>http://www.swishertech.com/blog5.php/2009/02/05/how-to-check-if-a-group-policy-has-been-</link>
			<pubDate>Fri, 06 Feb 2009 00:52:29 +0000</pubDate>			<dc:creator>Jonathan</dc:creator>
			<category domain="main">Technology</category>			<guid isPermaLink="false">34@http://www.swishertech.com/</guid>
						<description>&lt;p&gt;A great tool I always forget about is Resultant Set of Policy (RSoP).  You can run the command rsop.msc from the run or command menu.  The wizard will return with the group policy set that is currently applied to the machine.&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.swishertech.com/blog5.php/2009/02/05/how-to-check-if-a-group-policy-has-been-&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>A great tool I always forget about is Resultant Set of Policy (RSoP).  You can run the command rsop.msc from the run or command menu.  The wizard will return with the group policy set that is currently applied to the machine.</p><div class="item_footer"><p><small><a href="http://www.swishertech.com/blog5.php/2009/02/05/how-to-check-if-a-group-policy-has-been-">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.swishertech.com/blog5.php/2009/02/05/how-to-check-if-a-group-policy-has-been-#comments</comments>
			<wfw:commentRss>http://www.swishertech.com/blog5.php?tempskin=_rss2&#38;disp=comments&#38;p=34</wfw:commentRss>
		</item>
				<item>
			<title>Running Tom Cat on Windows 7</title>
			<link>http://www.swishertech.com/blog5.php/2009/02/04/running-tom-cat-on-windows-7</link>
			<pubDate>Thu, 05 Feb 2009 05:29:04 +0000</pubDate>			<dc:creator>Jonathan</dc:creator>
			<category domain="main">Programming</category>
<category domain="alt">Technology</category>			<guid isPermaLink="false">33@http://www.swishertech.com/</guid>
						<description>&lt;p&gt;I was trying to get Tom Cat to start on Windows 7.  When trying to start the service I would receive an error message stating the service could not start.&lt;br /&gt;
After some digging around on the internet the solution to the problem was to set the environment variables.&lt;/p&gt;

&lt;p&gt;right click computer and choose properties.&lt;br /&gt;
click advanced system settings.&lt;br /&gt;
click environment variables.&lt;br /&gt;
under system variables click new.&lt;br /&gt;
input the variable name as JAVA_HOME and the value as the path to the root of the jdk directory.&lt;br /&gt;
Add another new system variable.&lt;br /&gt;
input the variable namee as PATH and the value as the path to the bin folder in the jdk directory.&lt;/p&gt;

&lt;p&gt;i.e.&lt;/p&gt;

&lt;p&gt;JAVA_HOME    C:\Program Files\Java\jdk1.6.0_12&lt;br /&gt;
PATH         C:\Program Files\Java\jdk1.6.0_12\bin&lt;/p&gt;&lt;div class=&quot;item_footer&quot;&gt;&lt;p&gt;&lt;small&gt;&lt;a href=&quot;http://www.swishertech.com/blog5.php/2009/02/04/running-tom-cat-on-windows-7&quot;&gt;Original post&lt;/a&gt; blogged on &lt;a href=&quot;http://b2evolution.net/&quot;&gt;b2evolution&lt;/a&gt;.&lt;/small&gt;&lt;/p&gt;&lt;/div&gt;</description>
			<content:encoded><![CDATA[<p>I was trying to get Tom Cat to start on Windows 7.  When trying to start the service I would receive an error message stating the service could not start.<br />
After some digging around on the internet the solution to the problem was to set the environment variables.</p>

<p>right click computer and choose properties.<br />
click advanced system settings.<br />
click environment variables.<br />
under system variables click new.<br />
input the variable name as JAVA_HOME and the value as the path to the root of the jdk directory.<br />
Add another new system variable.<br />
input the variable namee as PATH and the value as the path to the bin folder in the jdk directory.</p>

<p>i.e.</p>

<p>JAVA_HOME    C:\Program Files\Java\jdk1.6.0_12<br />
PATH         C:\Program Files\Java\jdk1.6.0_12\bin</p><div class="item_footer"><p><small><a href="http://www.swishertech.com/blog5.php/2009/02/04/running-tom-cat-on-windows-7">Original post</a> blogged on <a href="http://b2evolution.net/">b2evolution</a>.</small></p></div>]]></content:encoded>
								<comments>http://www.swishertech.com/blog5.php/2009/02/04/running-tom-cat-on-windows-7#comments</comments>
			<wfw:commentRss>http://www.swishertech.com/blog5.php?tempskin=_rss2&#38;disp=comments&#38;p=33</wfw:commentRss>
		</item>
			</channel>
</rss>

