Here is a batch file script you can use to do that. Just change the directory and database names appropriately. You may also need to change the line that opens the database, depending on which version of Office you have (may be Office 12 instead of Office 14, etc). You can just browse on your computer to see where the ACCESS.EXE files resides, and that is the path you want.
Code:
:: ***** CHECK FOR EXISTENCE OF C:\DATABASES DIR ON LOCAL MACHINE *****
IF EXIST C:\Databases GOTO SKIPMDC
MD C:\Databases
:SKIPMDC
:: ***** DELETE CURRENT VERSION
del "C:\Databases\MyAccessDBName_FE.accdb" /q
:: ***** COPY NEWEST VERSION FROM NETWORK
copy "F:\Databases\Front-End\MyAccessDBName_FE.accdb" "C:\Databases\MyAccessDBName_FE.accdb"
:: ***** OPEN DATABASE
"C:\Program Files\Microsoft Office\Office14\MSACCESS.EXE" "C:\Databases\MyAccessDBName_FE.accdb"
EXIT
Just name the batch file with a ".bat" extension. I usually store it on the Network, and put a short-cut to it on people's desktops. Then all they need to do is click the short-cut to run the database.