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

<channel>
	<title>Jason Stone - Geek in SoCal &#187; Software</title>
	<atom:link href="http://jasonstone.name/taxonomy/computer/software/feed/" rel="self" type="application/rss+xml" />
	<link>http://jasonstone.name</link>
	<description>Computer geek and Photography enthusiast</description>
	<lastBuildDate>Wed, 18 Aug 2010 19:52:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Backup DacEasy data automatically for multiple companies 3</title>
		<link>http://jasonstone.name/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/</link>
		<comments>http://jasonstone.name/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/#comments</comments>
		<pubDate>Wed, 16 May 2007 16:00:05 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[batch-files]]></category>
		<category><![CDATA[Coding]]></category>
		<category><![CDATA[daceasy]]></category>
		<category><![CDATA[scripts]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/</guid>
		<description><![CDATA[How to Backup DacEasy data automatically for multiple companies part 3 using windows batch files]]></description>
			<content:encoded><![CDATA[<p>You might want to read the previous articles before proceeding:<br />
<strong>Part 1</strong> &#8211; <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/">Need a Quicker way to backup DacEasy Data?</a><br />
<strong>Part 2</strong> &#8211; <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/">Choosing what DacEasy files to backup</a></p>
<p>are not familiar with running batch files in windows, please consider an alternative.</p>
<p class="new">Create a new folder on your C:\ drive called <strong>dacBackup</strong></p>
<p>Copy the following code into a new file called &#8220;dacBackup.cmd&#8221; and save it in the same folder:</p>
<p class="code">:: First, I create a temporary directory to copy the data to.<br />
md c:\dacBackup\DacEasy<br />
:: Copy each of the individual modules from<br />
:: their working directories to the temporary directory.<br />
(xcopy C:\DacEasy\bc\profiles\DacEasyCompany1 C:\dacBackup\DacEasy\bc\profiles\DacEasyCompany1 /I /E /V /Y<br />
xcopy C:\DacEasy\ac\DacEasyCompany1 C:\dacBackup\DacEasy\ac\DacEasyCompany1 /I /E /V /Y<br />
xcopy C:\DacEasy\py\DacEasyCompany1 C:\dacBackup\DacEasy\py\DacEasyCompany1 /I /E /V /Y<br />
xcopy C:\DacEasy\bc\profiles\DacEasyCompany2 C:\dacBackup\DacEasy\bc\profiles\DacEasyCompany2 /I /E /V /Y<br />
xcopy C:\DacEasy\ac\DacEasyCompany2 C:\dacBackup\DacEasy\ac\DacEasyCompany2 /I /E /V /Y<br />
xcopy C:\DacEasy\py\DacEasyCompany2 C:\dacBackup\DacEasy\py\DacEasyCompany2 /I /E /V /Y<br />
) &gt; C:\dacBackup\dacCopy.log<br />
:: By enclosing the XCOPY commands in parenthesis, I<br />
:: can create a single log file of every command within<br />
:: the group. This logfile is created and saved as<br />
:: &#8220;C:\dacBackup\dacCopy.log&#8221;<br />
@echo off<br />
:: Set Variables<br />
set Today=%Date:~4,2%-%Date:~7,2%-%Date:~10,4%<br />
set fileName=DacBackup<br />
set dDay=%Date:~0,3%<br />
set BackupFolder=C:\dacBackup<br />
set BackupFile=%BackupFolder%\%fileName%(%dDay%)Full.bkf<br />
set JobName=%Today% DacEasy Backup<br />
set Description=DacEasy Backup %Today%<br />
:: Back up Files and Shares<br />
C:\windows\system32\ntbackup.exe backup &#8220;C:\dacBackup\DacEasy&#8221; /n &#8220;DacEasy Backup %Today%&#8221; /d &#8220;%Description%&#8221; /v:yes /r:no /rs:no /hc:off /m normal /j &#8220;%JobName%&#8221; /f &#8220;%BackupFile%&#8221;<br />
:: Removes temporary directory<br />
rd /S /Q c:\dacBackup\DacEasy</p>
<p>If you have trouble trying to copy and paste the code above, I have also provided the script for download in 2 different compressed file formats (ZIP and RAR):
</p>
<p class="download">Download <!--download id="2"--></p>
<p class="download">Download <!--download id="3"--></p>
<p class="construction">If you choose to download one of the compressed files, you will have to extract and decompress the file. Windows XP should be able to open ZIP files natively. If you still have trouble extracting the file, you can get a free evaluation of Winzip from their <a href="http://www.winzip.com/">website</a></p>
<p>Don&#8217;t forget to modify the XCOPY commands to point to your actual DacEasy directories.</p>
<p>Once you have finished modifying the &#8220;dacBackup.cmd&#8221; file, you can try it out by double-clicking on it.</p>
<p>If it worked, you will notice a new file inside the dacBackup folder which contains a backup of your DacEasy data folders.</p>
<p class="navigation">
<p class="left"><span>«</span> <strong>Part 2</strong> &#8211; <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/">Choosing what DacEasy files to backup</a></p>
<p class="right"><strong>Part 4</strong> &#8211; <a href="http://jasonstone.name/2007/05/10/add-scheduled-task/">Automating your backup script</a> <span>»</span></p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/">http://jasonstone.name/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Built Workstations</title>
		<link>http://jasonstone.name/2007/05/15/custom-built-workstations/</link>
		<comments>http://jasonstone.name/2007/05/15/custom-built-workstations/#comments</comments>
		<pubDate>Wed, 16 May 2007 03:29:19 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[California]]></category>
		<category><![CDATA[custom-system-builder]]></category>
		<category><![CDATA[ddr2]]></category>
		<category><![CDATA[hard-drive]]></category>
		<category><![CDATA[intel-core-2-duo]]></category>
		<category><![CDATA[ram]]></category>
		<category><![CDATA[sata2]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2007/05/15/custom-built-workstations/</guid>
		<description><![CDATA[Blogging about the computers that I build for customers seems like the easiest way for me to keep track of each one. So whenever I sell a new custom built system, I will make a new post including the specs of the computer or server.]]></description>
			<content:encoded><![CDATA[<p>Blogging about the computers that I build for customers seems like the easiest way for me to keep track of each one. So whenever I sell a new custom built system, I will make a new post including the specs of the computer or server.<br />
Custom Built Workstations (3):</p>
<ul>
<li>Processor: <strong><a href="http://www.intel.com/">Intel</a> Core 2 Duo</strong> E6420 2.13ghz (1066mhz FSB)</li>
<li>Memory: <a href="http://www.ocztechnology.com/index.html">OCZ</a> <strong>2GB Dual Channel DDR2</strong> (PC2-8500z 5-5-5-15 1066MHZ <strong>nVidia Sli Certified</strong> 240-PIN) w/Heat Spreader</li>
<li>Hard Drive: <strong>160 GB</strong> SATA2 (NCQ)</li>
<li>CD/DVD Burner (<strong>CD-RW, DVD+R/+RW, DVD-R/-RW</strong>)</li>
<li>Case with <strong>450watt Power Supply</strong></li>
<li><a href="http://www.logitech.com/">Logitech</a> UltraX Media Keyboard</li>
<li><a href="http://www.microsoft.com/hardware/mouseandkeyboard/default.mspx">Microsoft Mouse</a> Comfort 1000 Optical (USB)</li>
<li>Microsoft <strong>Windows XP Professional x64</strong></li>
<li>Microsoft <strong>Office 2003 Professional</strong></li>
<li>Other Features:
<ul>
<li>Supports Intel Core 2 Duo / Pentium D Processor</li>
<li>Intel Graphic Media Accelerator950</li>
<li>Optimized Gigabit LAN connectivity</li>
<li>8-channel Intel High Definition Audio</li>
<li>Integrated new generation SATA 3Gb/s interface:
<ul>
<li>4 SATA2 (3 free ports)</li>
<li>1 IDE port (2 connectors &#8211; 1 free)</li>
</ul>
</li>
<li>Available Expansion Slots:
<ul>
<li>1xPCI-E (X16)</li>
<li>3xPCI</li>
<li>USB 2.0</li>
</ul>
</li>
</ul>
</li>
</ul>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/05/15/custom-built-workstations/">http://jasonstone.name/2007/05/15/custom-built-workstations/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/05/15/custom-built-workstations/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup DacEasy data automatically for multiple companies 2</title>
		<link>http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/</link>
		<comments>http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/#comments</comments>
		<pubDate>Tue, 15 May 2007 19:00:10 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[accounting]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[company-profile]]></category>
		<category><![CDATA[daceasy]]></category>
		<category><![CDATA[daceasy13]]></category>
		<category><![CDATA[data-files]]></category>
		<category><![CDATA[job-costing]]></category>
		<category><![CDATA[oe]]></category>
		<category><![CDATA[payroll]]></category>
		<category><![CDATA[profiles]]></category>
		<category><![CDATA[py]]></category>
		<category><![CDATA[windows-2003-server]]></category>
		<category><![CDATA[windows-xp]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/</guid>
		<description><![CDATA[since I promised you an easy way to run Backup for DacEasy data automatically for multiple companies, I will try my best to deliver just that; without telling you to go out and buy a $1000+ backup program.]]></description>
			<content:encoded><![CDATA[<p>This solution should work if people are logged in to DacEasy as long as they aren&#8217;t modifying any Employee Information, or running any Transactions.</p>
<p class="information">The default installation directory for DacEasy is:<br />
C:\DacEasy\</p>
<p>Each module that you use in DacEasy should be located in it&#8217;s own folder by default.</p>
<p class="information">Default Module Locations:<br />
Company Profile &#8211; C:\DacEasy\bc\profiles\<br />
Accounting &#8211; C:\DacEasy\ac\<br />
Payroll &#8211; C:\DacEasy\py\<br />
Job Costing &#8211; C:\DacEasy\jc\<br />
Order Entry &#8211; C:\DacEasy\oe\<br />
Point of Sale &#8211; C:\DacEasy\ps\</p>
<p>If you need help finding where you installed the modules for your Company Data, check out “<a href="http://jasonstone.name/2007/05/07/find-daceasy-module-folder-paths/">How To Find DacEasy Module Folder Paths</a>”</p>
<p>If you are using the default folders, you should be able to find individual company modules within each of the default folders by adding the name of the company profile to the end of each module path.</p>
<p>For example, I am going to backup 2 sample businesses called “DacEasyCompany1” and “DacEasyCompany2.” Each of those companies use a <strong>Company Profile</strong>, the <strong>Accounting Module</strong> and the <strong>Payroll Module</strong></p>
<p class="information">Paths to my sample company modules:<br />
C:\DacEasy\bc\profiles\DacEasyCompany1\<br />
C:\DacEasy\ac\DacEasyCompany1\<br />
C:\DacEasy\py\DacEasyCompany1\<br />
C:\DacEasy\bc\profiles\DacEasyCompany2\<br />
C:\DacEasy\ac\DacEasyCompany2\<br />
C:\DacEasy\py\DacEasyCompany2\</p>
<p class="navigation">
<p class="left"><span>«</span> <strong>Part 1</strong> &#8211; <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/">Need a Quicker way to backup DacEasy Data?</a></p>
<p class="right"><strong>Part 3</strong> &#8211; “<a href="http://jasonstone.name/2007/05/16/backup-daceasy-data-automatically-for-multiple-companies-3/">Backup DacEasy using a Windows Batch file</a>»</p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/">http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backup DacEasy data automatically for multiple companies</title>
		<link>http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/</link>
		<comments>http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/#comments</comments>
		<pubDate>Tue, 15 May 2007 16:00:56 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[daceasy]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/</guid>
		<description><![CDATA[So you want to know how to backup DacEasy data automatically for multiple companies. I'm guessing that you also want to include more than one module for each company, for example: accounting, payroll and the company profile.  I am also guessing that you would like to have this run daily or weekly according to the backup schedule in your company policies.]]></description>
			<content:encoded><![CDATA[<p>So you want to know how to backup DacEasy data automatically for multiple companies. I&#8217;m guessing that you also want to include more than one module for each company, for example: accounting, payroll and the company profile. I am also guessing that you would like to have this run daily or weekly according to the backup schedule in your company policies.</p>
<p>The good thing about DacEasy is that you don&#8217;t have to buy some complicated backup system that costs thousands of dollars. It already comes with a backup utility installed. The bad thing is it doesn&#8217;t work very well. You can set backup schedules but I have found it much quicker to do it manually. Also, if you have ever done the backup manually, you know how time consuming this can be; especially if you are doing it once a week or even worse, once a day.</p>
<p>Did you know that you can basically copy all of the data files from your DacEasy machine to another computer that is running DacEasy and it would work? Once I knew that I could copy the files, I decided to make a script runs backup consistently and completely automatic.</p>
<p>This guide will help you setup the backup of your data in <a href="http://www.DacEasy.com">DacEasy</a> for multiple companies that will run automatically; without the need to go out and buy an expensive backup program.</p>
<ul class="construction">
<li>This has only been tested on systems running <strong>DacEasy 13</strong> with <strong>Windows XP/2003</strong></li>
<li>Make sure you have the sufficient folder access rights to the DacEasy installation folder</li>
<li>You also need the ability to create &#8220;<strong>Scheduled Tasks</strong>&#8221; and run &#8220;<strong>ntbackup</strong>&#8220;</li>
<li>Basic knowledge of how to use <strong>Windows batch files</strong> is recommended</li>
</ul>
<p class="navigation">
<p class="right"><strong>Part 2</strong> &#8211; <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies-2/">Choosing what DacEasy files to backup</a> <span>»</span></p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/">http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/05/15/backup-daceasy-data-automatically-for-multiple-companies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find DacEasy Module Folder Paths</title>
		<link>http://jasonstone.name/2007/05/07/find-daceasy-module-folder-paths/</link>
		<comments>http://jasonstone.name/2007/05/07/find-daceasy-module-folder-paths/#comments</comments>
		<pubDate>Mon, 07 May 2007 07:53:20 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[company-information]]></category>
		<category><![CDATA[daceasy]]></category>
		<category><![CDATA[installation-path]]></category>
		<category><![CDATA[screen-shots]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2007/05/07/find-daceasy-module-folder-paths/</guid>
		<description><![CDATA[When you installed DacEasy, did you write down the installation path for each module? If not, don't worry, it's pretty easy to find. 
Here, I will show you How To Find DacEasy Module Folder Paths in just 4 easy steps (Including screen shots).]]></description>
			<content:encoded><![CDATA[<p>When you installed DacEasy, did you write down the installation path for each module? If not, don&#8217;t worry, it&#8217;s pretty easy to find.<br />
Here, I will show you How To Find DacEasy Module Folder Paths in just 4 easy steps (Including screen shots).</p>
<ol>
<li>Click Profile<br />
<img width="320" src="http://jasonstone.name/wp-content/uploads/Find-DacEasy-Module-Folder-Paths/Step1-Profile.png" alt="Step1 - Click Profile" height="240" title="Step1 - Click Profile" /></li>
<li>Click Edit<br />
<img width="320" src="http://jasonstone.name/wp-content/uploads/Find-DacEasy-Module-Folder-Paths/Step2-Edit.png" alt="Step2 - Click Edit" height="240" title="Step2 - Click Edit" /></li>
<li>Click Company Information<br />
<img width="320" src="http://jasonstone.name/wp-content/uploads/Find-DacEasy-Module-Folder-Paths/Step3-Company-Information.png" alt="Step3 - Click Company Information" height="240" title="Step3 - Click Company Information" /></li>
<li>Click Paths<br />
<img width="575" src="http://jasonstone.name/wp-content/uploads/Find-DacEasy-Module-Folder-Paths/Step4-Paths.png" alt="Step4 - Click Paths" height="341" title="Step4 - Click Paths" /></li>
</ol>
<p>You should be able to see the DacEasy Module Folder Paths for your company. This is a screen shot of the DacEasy Module Folder Paths for the Sample Profile:<br />
<img width="575" src="http://jasonstone.name/wp-content/uploads/Find-DacEasy-Module-Folder-Paths/DacEasy-Module-Paths.png" alt="DacEasy Module Paths" height="341" title="DacEasy Module Paths" /> </p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/05/07/find-daceasy-module-folder-paths/">http://jasonstone.name/2007/05/07/find-daceasy-module-folder-paths/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/05/07/find-daceasy-module-folder-paths/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Ask the IT guy.</title>
		<link>http://jasonstone.name/2007/04/27/ask-me-something-i-dare-you/</link>
		<comments>http://jasonstone.name/2007/04/27/ask-me-something-i-dare-you/#comments</comments>
		<pubDate>Fri, 27 Apr 2007 11:50:01 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Computer]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Noteworthy]]></category>
		<category><![CDATA[questions]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2007/04/27/ask-me-something-i-dare-you/</guid>
		<description><![CDATA[If you have any questions related to computers hardware or software, Information Technology, or technology in general, ask the IT guy (me).]]></description>
			<content:encoded><![CDATA[<p>If you have any questions related to computers (hardware or software), Information Technology, or technology in general, go ahead and ask away! </p>
<p>Any problems that you may have or even something you don&#8217;t fully understand. </p>
<p>If you were ever scared to ask your IT administrator something because you didn&#8217;t know if you were using the right terminology, I might be able to help you out. There is no such thing as a stupid question.</p>
<p>You will never know if you don&#8217;t ask, so go ahead, ask me something and I will do my best to answer your questions.</p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/04/27/ask-me-something-i-dare-you/">http://jasonstone.name/2007/04/27/ask-me-something-i-dare-you/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/04/27/ask-me-something-i-dare-you/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Geeks do not have slow computers!</title>
		<link>http://jasonstone.name/2007/04/26/geeks-do-not-have-slow-computers/</link>
		<comments>http://jasonstone.name/2007/04/26/geeks-do-not-have-slow-computers/#comments</comments>
		<pubDate>Thu, 26 Apr 2007 10:36:45 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Cluttered Thoughts]]></category>
		<category><![CDATA[Computer]]></category>
		<category><![CDATA[Hardware]]></category>
		<category><![CDATA[Rants]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[Cluttered-Thoughts]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2007/04/26/geeks-do-not-have-slow-computers/</guid>
		<description><![CDATA[I can imagine that most geeks had some sort of competition as they grew up. To us, it was sort of a superiority complex that we all had to get over.]]></description>
			<content:encoded><![CDATA[<p>I used to pride myself on having one of the <em>fastest </em>computers of its time. For you fellow geeks out there&#8230;I will tell you the stats of my computer in a second.</p>
<p>I used to always compete with a neighbor (actually 2 neighbors), about who had the faster computer.  Of course, at the time, it really depended on who had the parent with more money.  But we never thought of it that way. Honestly, we thought that we were competing 1 on 1 on 1 with each other where we all had an even slate. Of course, after a while, 1 of us so-called geeks fell out of the race.  But we didn&#8217;t realize until years had passed that the only geeks that we were competing with, were ourselves.  Anyways, back to the story&#8230;</p>
<p>I can imagine that most geeks had some sort of competition as they grew up. To us, it was sort of a superiority complex that we all had to get over. If you have yet to get over it, then I feel sorry for you and your lack of friends.</p>
<p>As for my &#8220;super computer&#8221; here are the stats&#8230; (Don&#8217;t laugh)&#8230;</p>
<ul>
<li>AMD Athlon XP 2100+ (1.7ghz)</li>
<li>PC3200 2GB DDR RAM (2x 1gb Dual Channel)</li>
<li>160gb HD (2 80GB SATA150 on RAID 0-striped)</li>
<li>ASUS A7N8X Deluxe Mobo</li>
<li>Windows 2k3 Server<o></o></li>
</ul>
<p>You should already get the picture. Now here&#8217;s the thing, my computer was running fine up until about Feb 2007. Then, all of a sudden, everything started to go haywire. There really wasn&#8217;t anything that could explain it. Maybe time was up for my computer or maybe it had a lot to do with Microsoft. Now, me being the paranoid conspiracy theorist that I am, I choose Microsoft. I think Intel and Microsoft had devised a plan to make sure that everyone had to go and upgrade to the latest and greatest systems right about then. They expected everyone to upgrade around this time considering <strong>Vista</strong> just came out,and Longhorn was about to be released.</p>
<p>Luckily, my 4-5 year old system was just a test system. Even though it couldn&#8217;t keep up, it really didn&#8217;t matter. Yeah, I know I can go ahead and install Windows XP and it would run fine for another 2-3 or more years. But it is old and needs to be replaced. It should have been replaced 2 and a half years ago (if not more). Here is where my dilemma begins.</p>
<p>If I am to move on to the next big technology, 64-bit computing, virtual machines, etc., I still need someone who can watch my back and cover all of the previous technology. Otherwise, I cannot let myself be completely engorged with the new information without being held back by something from the past. I need someone competent, who can take care of things while I am venturing into new territories. Yeah, I am over exaggerating a <strong>LOT</strong> (<em>especially considering, the fact that we are already running virtual machines on 64-bit servers</em>)<strong>. </strong>But then again, this is just a story that I am writing for the fellow geeks out there who understand where I am coming from.</p>
<p>Geek facts: Do you remember the most memorable quote of all time <a href="http://www.wired.com/politics/law/news/1997/01/1484">that doesn&#8217;t exist</a> by Bill Gates? &#8220;640K ought to be enough for anybody.&#8221; </p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/04/26/geeks-do-not-have-slow-computers/">http://jasonstone.name/2007/04/26/geeks-do-not-have-slow-computers/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/04/26/geeks-do-not-have-slow-computers/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Problems starting Spiceworks &#8211; Sent message to support</title>
		<link>http://jasonstone.name/2007/04/03/problems-starting-spiceworks-sent-message-support/</link>
		<comments>http://jasonstone.name/2007/04/03/problems-starting-spiceworks-sent-message-support/#comments</comments>
		<pubDate>Wed, 04 Apr 2007 05:06:27 +0000</pubDate>
		<dc:creator>JasonStone</dc:creator>
				<category><![CDATA[Free]]></category>
		<category><![CDATA[Problems]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[contacted-support]]></category>
		<category><![CDATA[spiceworks-it-management]]></category>
		<category><![CDATA[waiting-for-response]]></category>

		<guid isPermaLink="false">http://jasonstone.name/index.php/2007/04/03/problems-starting-spiceworks-sent-message-support/</guid>
		<description><![CDATA[I installed the original Spiceworks (it was version 1.?) and I had trouble getting it to start up at first.  Then, after some troubleshooting, I got it running (sorry for the lack of details, I did this a while ago). Then at some point it wouldn't load anymore (once again, sorry for the lack of information. I wasn't watching close enough to know what caused this).  So then, I thought, if I upgraded to the newest version, it should fix any possible bugs and/or modify any services that might be affecting my computer.]]></description>
			<content:encoded><![CDATA[<p>I installed the original Free IT management software, Spiceworks (version 1.0 i think) a few months ago.  But I had trouble getting it to start up at first.  Then, after some troubleshooting, I got it running (sorry for the lack of details, I did this a while ago). Then at some point it wouldn&#8217;t load anymore (once again, sorry for the lack of information. I wasn&#8217;t watching close enough to know what caused this).  So then, I thought, if I upgraded to the newest version, it should fix any possible bugs and/or modify any services that might be affecting my computer.</p>
<p>Alas, to no avail.   I just keep getting errors not being able to start Spiceworks.  I have a feeling it is a service that isn&#8217;t set to run automatically.   But I guess I am just not in the troubleshooting mood today.  Anyways, I am sending the e-mail through the Spiceworks Uninstaller Feedback form to see how quickly they will respond.  I will keep you updated.  In the meantime, if you think you can help me get <a href="http://www.spiceworks.com">Spiceworks</a> up and running, Let me know!  Maybe you can help me figure out this annoying problem I am having.</p>
<p>Also, if you know of any other IT management systems that are reasonably priced, that would help too.  I am currently evaluating a new system to be implemented very soon.  So any input would be greatly appreciated. Thanks in advance! Till next time! </p>
<br />Copyright &copy; 2010 <a href="http://jasonstone.name">JasonStone</a>. Visit the original article at <a href="http://jasonstone.name/2007/04/03/problems-starting-spiceworks-sent-message-support/">http://jasonstone.name/2007/04/03/problems-starting-spiceworks-sent-message-support/</a>.]]></content:encoded>
			<wfw:commentRss>http://jasonstone.name/2007/04/03/problems-starting-spiceworks-sent-message-support/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
	</channel>
</rss>
