EddieVenus
Technical User
I have been fighting ACT! for a little over 3 years now. I have tried every trick in the book to make ACT work for our remote sales and remote support personel. I have used shared folders and email and dial up and on and on and on. So far they all SUCKED!!!!
The problem with shared folders is that it takes minutes and hours to sync. With email it is faster, but still slow, and requires user intervention. Even after all this time only Outlook can do it with little or no user intervention within ACT! Even the built in email requires the user to manually download the messages.
I know that this is a simple fix, and perhaps already in wide use. But it was new to me, and will be new to someone else I am sure. It is easy. A .bat file. Ta-da. Done.
I was scripting some stuff for a server and thought how easy it would be to make a .bat file to copy the contents of the sync folder to a local drive then tell ACT! to uses shared folders for its sync process, only instead of using the "shared" folder, you use a local one. Shared folder use is painfully slow, windows copies those same files in nearly 1/240th the time. That means that a file that takes windows a second will take ACT 4 minutes to copy. How lame. Just make a .bat file that says this in it.
@echo off
move "C:\Documents and Settings\user\My Documents\ACT\To main DB\*.*" "S:\ACT\DATABASE\From Remote user\"
move "S:\ACT\DATABASE\\To Remote user\*.*" "C:\Documents and Settings\user\My Documents\ACT\from main DB\"
end
That is it. Now put this in a shortcut that makes it run minimized, give the ACT! icon for good measure. Add it to the Task Scheduler to run 5 10 15 minutes before and/or after each sync that ACT! has scheduled. And you are all set.
thanks for listening to the rant, I feel better now
EV
The problem with shared folders is that it takes minutes and hours to sync. With email it is faster, but still slow, and requires user intervention. Even after all this time only Outlook can do it with little or no user intervention within ACT! Even the built in email requires the user to manually download the messages.
I know that this is a simple fix, and perhaps already in wide use. But it was new to me, and will be new to someone else I am sure. It is easy. A .bat file. Ta-da. Done.
I was scripting some stuff for a server and thought how easy it would be to make a .bat file to copy the contents of the sync folder to a local drive then tell ACT! to uses shared folders for its sync process, only instead of using the "shared" folder, you use a local one. Shared folder use is painfully slow, windows copies those same files in nearly 1/240th the time. That means that a file that takes windows a second will take ACT 4 minutes to copy. How lame. Just make a .bat file that says this in it.
@echo off
move "C:\Documents and Settings\user\My Documents\ACT\To main DB\*.*" "S:\ACT\DATABASE\From Remote user\"
move "S:\ACT\DATABASE\\To Remote user\*.*" "C:\Documents and Settings\user\My Documents\ACT\from main DB\"
end
That is it. Now put this in a shortcut that makes it run minimized, give the ACT! icon for good measure. Add it to the Task Scheduler to run 5 10 15 minutes before and/or after each sync that ACT! has scheduled. And you are all set.
thanks for listening to the rant, I feel better now
EV