473,670 Members | 2,331 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 1852
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******** ************@ec lipse.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**********@S PAMyahoo.comwro te in message
news:Qu******** *********@torna do.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******** ************@ec lipse.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\M yFile.mdb" /wrkgrp "X:\MyPath\MyWI F.mdw"
/user guest

HTH - Keith.
www.keithwilby.com
Jul 19 '06 #6
Paul H wrote:
"John Mishefske" <jm**********@S PAMyahoo.comwro te in message
news:Qu******** *********@torna do.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.goog legroups.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.goog legroups.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.goog legroups.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

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

Similar topics

0
2209
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 updates to a single row. I am running mysql 4.0.14 in WinXP. I am using PHP to do the update. I am thinking something in the update itself is causing mysql to do this. I don't have the exact SQL statement that causes the error but I do have...
1
1659
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> "+modified+"</I></B>"); // --> This works great, but it only does it for the page thats currently displayed.
12
8689
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 update after making changes, but I don't want that update button. How can I get the updated object when the user presses one of my other action buttons?
6
2675
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
24910
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 to the front and sending the buttons to the back. In design view the form looks fine, but whenever I open the form the label is behind the buttons. Has anyone else experienced this and know the solution? Is this a known fault? I wouldn't think...
8
2537
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 tablename SET updated = NOW(), .... WHERE.... I created a query like this: "SELECT * FROM tablename WHERE 'updated'
3
6913
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, but there is a contact form in the middle of the page. Any help would be appreciated. - John
20
4289
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. How can I dynamically load a LIB file and access all its functions? Surely someone has solved similar task? My intention is to use a Forth system for programming the controller,
3
4955
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 routine has got me foxed. <?PHP // update.php require("./resources/globals.php") ; require("./resources/common.php") ; //echo $detail;
0
8471
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8907
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8817
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8593
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 Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
4215
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4396
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2804
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 we have to send another system
2
2046
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1799
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.