<?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; daceasy</title>
	<atom:link href="http://jasonstone.name/tags/daceasy/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>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>
	</channel>
</rss>
