473,511 Members | 16,769 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Updated Front-End - Rollout procedure

I am sure this has come up before, I have googled the newsgroups but can't
find any info...

I have amended my front-end and need to roll it out. I do not want to visit
every PC on the LAN and copy the files by hand. So what is the best way to
automate this?

Login script? VBA? Put a CD through the letterbox and run?

Can you give me some pointers on how to configure the best solution? I don't
particularly need the code, just tips on how you folks do it?

Thanks,

Paul
Jul 18 '06 #1
10 1837
http://tinyurl.com/rkf8v
(http://groups.google.com/group/comp....265533ffad84e0
for posterity's sake)

Paul H wrote:
I am sure this has come up before, I have googled the newsgroups but can't
find any info...

I have amended my front-end and need to roll it out. I do not want to visit
every PC on the LAN and copy the files by hand. So what is the best way to
automate this?

Login script? VBA? Put a CD through the letterbox and run?

Can you give me some pointers on how to configure the best solution? I don't
particularly need the code, just tips on how you folks do it?

Thanks,

Paul
Jul 18 '06 #2
Paul H wrote:
I am sure this has come up before, I have googled the newsgroups but can't
find any info...

I have amended my front-end and need to roll it out. I do not want to visit
every PC on the LAN and copy the files by hand. So what is the best way to
automate this?

Login script? VBA? Put a CD through the letterbox and run?

Can you give me some pointers on how to configure the best solution? I don't
particularly need the code, just tips on how you folks do it?
http://www.granite.ab.ca/access/autofe.htm

--
'---------------
'John Mishefske
'---------------
Jul 19 '06 #3
I suspect Tony's Auto FE Updater (already suggested) is more "automated"
than a method I have used, but, FWIW, you'll find an article on "versioning"
at http://accdevel.tripod.com/versioning.htm.

Larry Linson
Microsoft Access MVP

"Paul H" <no****@nospam.comwrote in message
news:5Y********************@eclipse.net.uk...
>I am sure this has come up before, I have googled the newsgroups but can't
find any info...

I have amended my front-end and need to roll it out. I do not want to
visit every PC on the LAN and copy the files by hand. So what is the best
way to automate this?

Login script? VBA? Put a CD through the letterbox and run?

Can you give me some pointers on how to configure the best solution? I
don't particularly need the code, just tips on how you folks do it?

Thanks,

Paul

Jul 19 '06 #4

"John Mishefske" <jm**********@SPAMyahoo.comwrote in message
news:Qu*****************@tornado.rdc-kc.rr.com...
Paul H wrote:
>I am sure this has come up before, I have googled the newsgroups but
can't find any info...

I have amended my front-end and need to roll it out. I do not want to
visit every PC on the LAN and copy the files by hand. So what is the best
way to automate this?

Login script? VBA? Put a CD through the letterbox and run?

Can you give me some pointers on how to configure the best solution? I
don't particularly need the code, just tips on how you folks do it?

http://www.granite.ab.ca/access/autofe.htm

--
'---------------
'John Mishefske
'---------------
I am probably being stunningly thick, but where is the download link?

Paul
Jul 19 '06 #5
"Paul H" <no****@nospam.comwrote in message
news:5Y********************@eclipse.net.uk...
>I am sure this has come up before, I have googled the newsgroups but can't
find any info...

I have amended my front-end and need to roll it out. I do not want to
visit every PC on the LAN and copy the files by hand. So what is the best
way to automate this?

Login script? VBA? Put a CD through the letterbox and run?

Can you give me some pointers on how to configure the best solution? I
don't particularly need the code, just tips on how you folks do it?

Thanks,

Paul
I store a copy of my latest FEs in a public folder. Each user's shortcut,
instead of mapping to the mdb, maps to a batch file which copies the FE to
their HDD and opens it. This way, all users always start with the latest
FE. Typically, that batch file would contain this code:

ECHO OFF
DEL "%userprofile%\LocalDBFolder\*.*" /Q
XCOPY "X:\MyFile.mdb" "%userprofile%\LocalDBFolder" /I
START "MyApp" /MAX "C:\Program Files\Microsoft Office\Office11\MSACCESS.EXE"
"%userprofile%\LocalDBFolder\MyFile.mdb" /wrkgrp "X:\MyPath\MyWIF.mdw"
/user guest

HTH - Keith.
www.keithwilby.com
Jul 19 '06 #6
Paul H wrote:
"John Mishefske" <jm**********@SPAMyahoo.comwrote in message
news:Qu*****************@tornado.rdc-kc.rr.com...
>>Paul H wrote:
>>>I am sure this has come up before, I have googled the newsgroups but
can't find any info...

I have amended my front-end and need to roll it out. I do not want to
visit every PC on the LAN and copy the files by hand. So what is the best
way to automate this?

Login script? VBA? Put a CD through the letterbox and run?

Can you give me some pointers on how to configure the best solution? I
don't particularly need the code, just tips on how you folks do it?

http://www.granite.ab.ca/access/autofe.htm

--
'---------------
'John Mishefske
'---------------


I am probably being stunningly thick, but where is the download link?
Easy to miss - "Licenses and Download" link mid-page.

--
'---------------
'John Mishefske
'---------------
Jul 20 '06 #7
Jeremy,

Great website, bloody useful stuff. I have used your Deployment method and
made one amendment thanks to Keith Wilby's post in this thread.

Your notes state:
"The reason to start the database with a shortcut instead of calling the
database (and Access and the MDW) in the batch file, is that this allows the
code window to close as soon as the batch file is done running, instead of
keeping it open until your user closes the database."

This is fixed by prefixing the call with: START "" (Start and two
quotations)

Now the user checks for updates each time the DB is launched and launches
the DB all from the same shortcut.

Many thanks to all.

Paul

"Jeremy Wallace" <je************@gmail.comwrote in message
news:11**********************@75g2000cwc.googlegro ups.com...
http://tinyurl.com/rkf8v
(http://groups.google.com/group/comp....265533ffad84e0
for posterity's sake)

Paul H wrote:
>I am sure this has come up before, I have googled the newsgroups but
can't
find any info...

I have amended my front-end and need to roll it out. I do not want to
visit
every PC on the LAN and copy the files by hand. So what is the best way
to
automate this?

Login script? VBA? Put a CD through the letterbox and run?

Can you give me some pointers on how to configure the best solution? I
don't
particularly need the code, just tips on how you folks do it?

Thanks,

Paul

Jul 20 '06 #8
Jeremy,

Great website, bloody useful stuff. I have used your Deployment method and
made one amendment thanks to Keith Wilby's post in this thread.

Your notes state:
"The reason to start the database with a shortcut instead of calling the
database (and Access and the MDW) in the batch file, is that this allows the
code window to close as soon as the batch file is done running, instead of
keeping it open until your user closes the database."

This is fixed by prefixing the call with: START "" (Start and two
quotations)

Now the user checks for updates each time the DB is launched and launches
the DB all from the same shortcut.

Many thanks to all.

Paul

"Jeremy Wallace" <je************@gmail.comwrote in message
news:11**********************@75g2000cwc.googlegro ups.com...
http://tinyurl.com/rkf8v
(http://groups.google.com/group/comp....265533ffad84e0
for posterity's sake)

Paul H wrote:
>I am sure this has come up before, I have googled the newsgroups but
can't
find any info...

I have amended my front-end and need to roll it out. I do not want to
visit
every PC on the LAN and copy the files by hand. So what is the best way
to
automate this?

Login script? VBA? Put a CD through the letterbox and run?

Can you give me some pointers on how to configure the best solution? I
don't
particularly need the code, just tips on how you folks do it?

Thanks,

Paul


Jul 20 '06 #9
Paul,

I'm glad you found it so helpful. I'll definitely change the batch
files I'm using to use that new trick. Thanks so much (and, of course,
to Keith).

Jeremy
Fund for the City of New York
http://metrix daht fcny daht org

Paul H wrote:
Jeremy,

Great website, bloody useful stuff. I have used your Deployment method and
made one amendment thanks to Keith Wilby's post in this thread.

Your notes state:
"The reason to start the database with a shortcut instead of calling the
database (and Access and the MDW) in the batch file, is that this allows the
code window to close as soon as the batch file is done running, instead of
keeping it open until your user closes the database."

This is fixed by prefixing the call with: START "" (Start and two
quotations)

Now the user checks for updates each time the DB is launched and launches
the DB all from the same shortcut.

Many thanks to all.

Paul

"Jeremy Wallace" <je************@gmail.comwrote in message
news:11**********************@75g2000cwc.googlegro ups.com...
http://tinyurl.com/rkf8v
(http://groups.google.com/group/comp....265533ffad84e0
for posterity's sake)

Paul H wrote:
I am sure this has come up before, I have googled the newsgroups but
can't
find any info...

I have amended my front-end and need to roll it out. I do not want to
visit
every PC on the LAN and copy the files by hand. So what is the best way
to
automate this?

Login script? VBA? Put a CD through the letterbox and run?

Can you give me some pointers on how to configure the best solution? I
don't
particularly need the code, just tips on how you folks do it?

Thanks,

Paul
Jul 20 '06 #10
Just a quickie..

You can append the text " /USER %1 " (no quotes) to the DB path in batch
file and add the USER parameter to the shortcut thus..

P:\DBFolder\Update\DBUpdate.bat "Fred Bloggs"

Paul
"Jeremy Wallace" <je************@gmail.comwrote in message
news:11**********************@m79g2000cwm.googlegr oups.com...
Paul,

I'm glad you found it so helpful. I'll definitely change the batch
files I'm using to use that new trick. Thanks so much (and, of course,
to Keith).

Jeremy
Fund for the City of New York
http://metrix daht fcny daht org

Paul H wrote:
>Jeremy,

Great website, bloody useful stuff. I have used your Deployment method
and
made one amendment thanks to Keith Wilby's post in this thread.

Your notes state:
"The reason to start the database with a shortcut instead of calling the
database (and Access and the MDW) in the batch file, is that this allows
the
code window to close as soon as the batch file is done running, instead
of
keeping it open until your user closes the database."

This is fixed by prefixing the call with: START "" (Start and two
quotations)

Now the user checks for updates each time the DB is launched and launches
the DB all from the same shortcut.

Many thanks to all.

Paul

"Jeremy Wallace" <je************@gmail.comwrote in message
news:11**********************@75g2000cwc.googlegr oups.com...
http://tinyurl.com/rkf8v
(http://groups.google.com/group/comp....265533ffad84e0
for posterity's sake)

Paul H wrote:
I am sure this has come up before, I have googled the newsgroups but
can't
find any info...

I have amended my front-end and need to roll it out. I do not want to
visit
every PC on the LAN and copy the files by hand. So what is the best
way
to
automate this?

Login script? VBA? Put a CD through the letterbox and run?

Can you give me some pointers on how to configure the best solution? I
don't
particularly need the code, just tips on how you folks do it?

Thanks,

Paul

Jul 21 '06 #11

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
2194
by: Jim C Nguyen | last post by:
I have a table with ~2.2 million rows. Sometimes when I do an update to one single row it will instead update ALL of the rows using the same update. This happens every one in about 500,000...
1
1651
by: xxnonexnonexx | last post by:
I use the following piece of code to show when the page thats being accessed was last updated: <!-- var modified = new Date(document.lastModified); document.write("<b>Last Updated:<i>...
12
8669
by: Jim Hammond | last post by:
I am passing the whole object instead or parameters in my select and update methods. I can get the updated object if I set UpdateMethod, let ASP.NET autogenerate an update button, and then press...
6
2659
by: eight02645999 | last post by:
hi wish to ask a qns on strip i wish to strip all spaces in front of a line (in text file) f = open("textfile","rU") while (1): line = f.readline().strip() if line == '': break print line
5
24840
by: Iain Bishop | last post by:
I have a simple form with 4 command buttons and 1 label. The label is sometimes visible and sometimes not. When it is visible I want it to be in front of the buttons. I've tried bringing the label...
8
2532
by: Keith | last post by:
I try to learn SQL by figuring out things. I want to make a listing of all records that were changed in the last... 1, 6, 12 hours/days. I have a field called 'updated' managed like: UPDATE...
3
6906
by: John | last post by:
What is the easiest way to make the contact form show on the front page. Meaning on want to keep the front html page and when someone clicks on the contact us link the front page remains the same,...
20
4258
by: Nickolai Leschov | last post by:
Hello all, I am programming an embedded controller that has a 'C' library for using its system functions (I/O, timers, all the specific devices). The supplied library has .LIB and .H files. ...
3
4939
by: phobia1 | last post by:
Hi once again. We have just changed our ISP and things that worked fine now do not, Obviously its in the differences of MYSQL and PHP versions. Have fixed most of the problems but this UPDATE...
0
7242
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
7138
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
7355
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
7423
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
7081
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
5668
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
5066
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...
0
4737
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
1576
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.