Home Page link  

Quicken on a home network.

 

Quicken Personal Finance Discussions - Quicken - personal finance software discussions 

get this group's latest topics as an RSS feed add this group's latest topics to your My MSN content add this group's latest topics to your My Yahoo content  add this group's latest topics to your Google content  YahooMyWeb Yahoo!  Google Google  Windows Live Favorites Windows Live  del.icio.us del.icio.us  digg digg  Add to Netscape Netscape
Subject Author Date
Quicken on a home network. Bill_Phillips 12-10-2006
Posted by Bill_Phillips on December 10, 2006, 7:04 pm
Please log in for more thread options
I have a home network, three machines. All XP Service Pack 2. I'd like to
be able to access the check register from any of the machines, but so far I
haven't been able to make anything work. If anybody is doing it this way
I'd sure like some advise.

Thanks.



Posted by David H. Lipman on December 10, 2006, 7:24 pm
Please log in for more thread options

| I have a home network, three machines. All XP Service Pack 2. I'd like to
| be able to access the check register from any of the machines, but so far I
| haven't been able to make anything work. If anybody is doing it this way
| I'd sure like some advise.
|
| Thanks.
|

File and Print Service must be enabled on the PC going to share the Quicken data.

You have to 'share' the data files in a NT Share.

The users on PC A and PC B must have the same Account Name and Password.

If PC A is sharing the files, you should map a drive letter to the share on PC B

Example: \PC_AQ_share on PC B; Net Use Q: \PC_AQ_share

On PC B use drive "Q:" to access the data files. Only ONE computer can access
the Quicken
data files at any given time.


--
Dave
http://www.claymania.com/removal-trojan-adware.html
http://www.ik-cs.com/got-a-virus.htm



Posted by BeeL on December 10, 2006, 10:41 pm
Please log in for more thread options
David H. Lipman wrote:
>
> | I have a home network, three machines. All XP Service Pack 2. I'd like to
> | be able to access the check register from any of the machines, but so far I
> | haven't been able to make anything work. If anybody is doing it this way
> | I'd sure like some advise.
> |
> | Thanks.
> |
>
> File and Print Service must be enabled on the PC going to share the Quicken
data.
>
> You have to 'share' the data files in a NT Share.
>
> The users on PC A and PC B must have the same Account Name and Password.
>
> If PC A is sharing the files, you should map a drive letter to the share on PC
B
>
> Example: \PC_AQ_share on PC B; Net Use Q: \PC_AQ_share
>
> On PC B use drive "Q:" to access the data files. Only ONE computer can access
the Quicken
> data files at any given time.
>
>

My findings agree with David Lipman's. Here is how I do it ...

On machine A I have quicken installed, and my data files reside on this
machine.

On machine B, I have quicken installed. I did these two things:

1: In the directory where quicken lives (c:program filesquicken), I
added a text file called "quicken.cmd" which consists of the following 3
lines:

net use q: \dilbertd
start qw.exe
exit

(note: Change the first line to refer to the relevant location on
machine A. In my house the quicken data is on the d-drive of a machine
named dilbert.)

2: I edited the shortcut to quicken so that it will execute the cmd
file. That is, I right-clicked on the quicken desktop icon, edited its
properties, and changed the target from "c:program
filesquickenwqw.exe" to "c:program filesquickenquicken.cmd". Also,
I set the start-in location to cprogram filesquicken.


As David says, you need to be careful not to have 2 machines running
quicken at the same time. Also, Machine A has to be sharing its files.

Good luck

-- BeeL


Posted by Andrew DeFaria on December 11, 2006, 1:12 am
Please log in for more thread options
This is a multi-part message in MIME format.
--------------030404020902010802040606
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit

BeeL wrote:
> David H. Lipman wrote:
>>
>> | I have a home network, three machines. All XP Service Pack 2. I'd
>> like to
>> | be able to access the check register from any of the machines, but
>> so far I
>> | haven't been able to make anything work. If anybody is doing it
>> this way
>> | I'd sure like some advise.
>> |
>> | Thanks.
>> |
>>
>> File and Print Service must be enabled on the PC going to share the
>> Quicken data.
>>
>> You have to 'share' the data files in a NT Share.
>>
>> The users on PC A and PC B must have the same Account Name and Password.
>>
>> If PC A is sharing the files, you should map a drive letter to the
>> share on PC B
>>
>> Example: \PC_AQ_share on PC B; Net Use Q: \PC_AQ_share
>>
>> On PC B use drive "Q:" to access the data files. Only ONE computer
>> can access the Quicken data files at any given time.
> My findings agree with David Lipman's. Here is how I do it ...
>
> On machine A I have quicken installed, and my data files reside on
> this machine.
>
> On machine B, I have quicken installed. I did these two things:
>
> 1: In the directory where quicken lives (c:program filesquicken), I
> added a text file called "quicken.cmd" which consists of the following
> 3 lines:
>
> net use q: \dilbertd
> start qw.exe
> exit
>
> (note: Change the first line to refer to the relevant location on
> machine A. In my house the quicken data is on the d-drive of a machine
> named dilbert.)
>
> 2: I edited the shortcut to quicken so that it will execute the cmd
> file. That is, I right-clicked on the quicken desktop icon, edited its
> properties, and changed the target from "c:program
> filesquickenwqw.exe" to "c:program filesquickenquicken.cmd".
> Also, I set the start-in location to cprogram filesquicken.
>
>
> As David says, you need to be careful not to have 2 machines running
> quicken at the same time. Also, Machine A has to be sharing its files.
Or... create a small vbs script to make a semaphore file to coordinate
access to the Quicken database:

On Error Resume Next

Set WshShell = WScript.CreateObject ("WScript.Shell")
Set fso = CreateObject ("Scripting.FileSystemObject")

Set Env = WshShell.Environment ("USER")

semaphoreFile = Env ("TMP") & "quicken_in_use"

' Check to see if Quicken is in use
If fso.FileExists (semaphoreFile) Then
WScript.Echo "Somebody's using Quicken"
Else
' Create semaphore file
Set File = fso.CreateTextFile (semaphoreFile)
File.Close

' Start Quicken
i = WshShell.Run ("""C:Program FilesQuickenQw.exe""", 1, true)

' Remove semaphoreFile
fso.DeleteFile (semaphoreFile)
End If

--

Andrew DeFaria <http://defaria.com>
I thought about how mothers feed their babies with little tiny spoons
and forks so I wonder what Chinese mothers use. Toothpicks?

--------------030404020902010802040606
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: 7bit

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
<title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
BeeL wrote:<small><font color="#999999"></font></small>
<blockquote cite="midJ7OdnfSTGsobTuHYnZ2dnUVZ_s6onZ2d@comcast.com"
type="cite">David H. Lipman wrote:
<br>
<blockquote type="cite">From: "Bill_Phillips"
<a class="moz-txt-link-rfc2396E"
<br>
<br>
| I have a home network, three machines.&nbsp; All XP Service Pack 2.&nbsp; I'd
like to
<br>
| be able to access the check register from any of the machines, but so
far I
<br>
| haven't been able to make anything work.&nbsp; If anybody is doing it this
way
<br>
| I'd sure like some advise.
<br>
|
<br>
| Thanks.
<br>
|
<br>
<br>
File and Print Service must be enabled on the PC going to share the
Quicken data.
<br>
<br>
You have to 'share' the data files in a NT Share.
<br>
<br>
The users on PC A and PC B must have the same Account Name and
Password.
<br>
<br>
If PC A is sharing the files, you should map a drive letter to the
share on PC B
<br>
<br>
Example:&nbsp; \PC_AQ_share&nbsp;&nbsp; on PC B;&nbsp; Net Use Q:&nbsp;
\PC_AQ_share
<br>
<br>
On PC B use drive "Q:" to access the data files.&nbsp; Only ONE computer can
access the Quicken data files at any given time.
<br>
</blockquote>
My findings agree with David Lipman's. Here is how I do it ...
<br>
<br>
On machine A I have quicken installed, and my data files reside on this
machine.
<br>
<br>
On machine B, I have quicken installed. I did these two things:
<br>
<br>
1: In the directory where quicken lives (c:program filesquicken), I
added a text file called "quicken.cmd" which consists of the following
3 lines:
<br>
<br>
&nbsp;&nbsp;&nbsp; net use q: \dilbertd
<br>
&nbsp;&nbsp;&nbsp; start qw.exe
<br>
&nbsp;&nbsp;&nbsp; exit
<br>
<br>
(note: Change the first line to refer to the relevant location on
machine A. In my house the quicken data is on the d-drive of a machine
named dilbert.)
<br>
<br>
2: I edited the shortcut to quicken so that it will execute the cmd
file. That is, I right-clicked on the quicken desktop icon, edited its
properties, and changed the target from "c:program
filesquickenwqw.exe" to "c:program filesquickenquicken.cmd". Also,
I set the start-in location to cprogram filesquicken.
<br>
<br>
<br>
As David says, you need to be careful not to have 2 machines running
quicken at the same time. Also, Machine A has to be sharing its files.
<br>
</blockquote>
Or... create a small vbs script to make a semaphore file to coordinate
access to the Quicken database:<br>
<blockquote><tt>On Error Resume Next<br>
<br>
Set WshShell = WScript.CreateObject ("WScript.Shell")<br>
Set fso&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; = CreateObject
("Scripting.FileSystemObject")<br>
<br>
Set Env = WshShell.Environment ("USER")<br>
<br>
semaphoreFile = Env ("TMP") &amp; "quicken_in_use"<br>
<br>
' Check to see if Quicken is in use<br>
If fso.FileExists (semaphoreFile) Then<br>
&nbsp;&nbsp;&nbsp; WScript.Echo "Somebody's using Quicken"<br>
Else<br>
&nbsp;&nbsp;&nbsp; ' Create semaphore file<br>
&nbsp;&nbsp;&nbsp; Set File = fso.CreateTextFile (semaphoreFile)<br>
&nbsp;&nbsp;&nbsp; File.Close<br>
<br>
&nbsp;&nbsp;&nbsp; ' Start Quicken<br>
&nbsp;&nbsp;&nbsp; i = WshShell.Run ("""C:Program FilesQuickenQw.exe""", 1,
true)<br>
<br>
&nbsp;&nbsp;&nbsp; ' Remove semaphoreFile<br>
&nbsp;&nbsp;&nbsp; fso.DeleteFile (semaphoreFile)<br>
End If<br>
</tt><br>
</blockquote>
<pre>-- </pre>
<a href="http://defaria.com">Andrew DeFaria</a><br>
<small><font color="#999999">I thought about how mothers feed their
babies with little tiny spoons and forks so I wonder what Chinese
mothers use. Toothpicks?</font></small>
</body>
</html>

--------------030404020902010802040606--

Posted by Bob Wang on December 10, 2006, 8:09 pm
Please log in for more thread options
https://quicken.custhelp.com/cgi-bin/quicken.cfg/php/enduser/std_adp.php?p_faqid=1725&p_topview=1
Quicken is not designed or tested for use over a network or on a shared
drive. Due to the large variety of possible network configurations, Intuit
will not be able to offer technical assistance for any problems resulting
from use of the Quicken program on a network.

Additionally, Intuit does not recommend the use of your Quicken data files
over a network due to the increased likelihood that data corruption will
occur. Quicken is designed to save the data incrementally as it is entered.
For this reason, network instability or the use of a data file by multiple
people at the same time will often lead to data integrity issues.

For optimal results when using Quicken, Intuit recommends installing a
separate version of Quicken on each computer's hard drive. To purchase
additional copies of the current version of Quicken please visit
Quicken.com.

Note: The QuickBooks family of products helps you power your small business.
This family of products does offer multiple user packages for use in
combination with a network.

>>>
I have a home network, three machines. All XP Service Pack 2. I'd like to
be able to access the check register from any of the machines, but so far I
haven't been able to make anything work. If anybody is doing it this way
I'd sure like some advise.

Thanks.




Similar ThreadsPosted
Quicken file on network April 5, 2008, 4:18 pm
Shared (Network) Quicken 2007 August 22, 2007, 12:54 am
Accessing .QDF File Over Network November 21, 2006, 6:05 pm
Backing up to a network drive March 10, 2005, 12:57 pm
Q09 Prmr for Win Update knocks out Network on PC July 3, 2009, 7:57 am
quicken home inventory August 16, 2006, 12:28 pm
Quicken Home Inventory September 2, 2007, 8:13 am
Quicken Home Inventory - anyone get this to run? September 11, 2007, 1:35 am
Quicken Home Inventory problem February 18, 2007, 6:23 pm
Quicken 2008: Home Screen August 27, 2007, 12:50 pm

Contact Us | Privacy Policy
This site is not affiliated with Intuit - makers of Quickbooks and Quicken software
This site is not affiliated with Sage Software - makers of Peachtree accounting software
XML SitemapXML Sitemap