Poll

Would you like to see a utility that makes periodic backups of the database?

Yes
29 (100%)
No
0 (0%)

Total Members Voted: 29

Author Topic: Aurora Launcher/Backup Wrapper  (Read 3933 times)

0 Members and 1 Guest are viewing this topic.

Offline Erik L (OP)

  • Administrator
  • Admiral of the Fleet
  • *****
  • Posts: 5687
  • Thanked: 414 times
  • Forum Admin
  • Discord Username: icehawke
Aurora Launcher/Backup Wrapper
« on: November 04, 2012, 05:13:04 PM »
I'm thinking of writing a program to act as a launcher and backup for Aurora. The plan is to configure it with your Aurora install location, frequency and number of backups, then launch the game. As you play, it will make copies of the database and store them in a separate directory.

Any interest?

Offline Brian Neumann

  • Vice Admiral
  • **********
  • Posts: 1214
  • Thanked: 3 times
Re: Aurora Launcher/Backup Wrapper
« Reply #1 on: November 04, 2012, 07:38:43 PM »
I would definately like such a program
brian
 

Offline Sotak246

  • Sub-Lieutenant
  • ******
  • Posts: 129
Re: Aurora Launcher/Backup Wrapper
« Reply #2 on: November 04, 2012, 10:56:24 PM »
ditto
 

Offline Hawkeye

  • Vice Admiral
  • **********
  • Posts: 1059
  • Thanked: 5 times
  • 2023 Supporter 2023 Supporter : Supporter of the forum in 2023
    2024 Supporter 2024 Supporter : Supporter of the forum for 2024
    Silver Supporter Silver Supporter :
Re: Aurora Launcher/Backup Wrapper
« Reply #3 on: November 04, 2012, 10:56:45 PM »
As I regularly forget to make backups, I would greatly appreciate such a program.
Ralph Hoenig, Germany
 

Offline orfeusz

  • Sub-Lieutenant
  • ******
  • Posts: 109
Re: Aurora Launcher/Backup Wrapper
« Reply #4 on: November 10, 2012, 03:42:51 AM »
Very good idea. I would definitely use it.
Only in Death does Duty End
 

Offline vonduus

  • Sub-Lieutenant
  • ******
  • Posts: 112
  • This is your captain speaking
Re: Aurora Launcher/Backup Wrapper
« Reply #5 on: November 10, 2012, 06:34:39 AM »
Yes!!
 

Offline Jeltz

  • Sub-Lieutenant
  • ******
  • Posts: 125
  • Thanked: 16 times
Re: Aurora Launcher/Backup Wrapper
« Reply #6 on: November 11, 2012, 08:36:02 AM »
Awaiting the Steve launcher, I have made this simple batch that create a backup copy of aurora database at every launch;

Instructions:

- in the aurora dir create a new Backups subdir;
- in the aurora dir create a text file, copy the code below and save it changing the extension in .bat, for example as aurora.bat;
Code: [Select]
for /f "tokens=1-5 delims=:" %%d in ("%time%") do copy "Stevefire.mdb" Backups\Stevefire_%%d-%%e.mdb
start aurora.exe
- on the desktop make a shortcuts that point at aurora.bat;

at *every* start of Aurora shortcut a copy of stevefire.mdb database will be saved in \Backups as Stevefire_k.mdb with k=1,2,3...n;
to restore a copy simply replace the current stevefire.mdb with one of this copies.

I hope it will be usefull ;-)
 

Offline Erik L (OP)

  • Administrator
  • Admiral of the Fleet
  • *****
  • Posts: 5687
  • Thanked: 414 times
  • Forum Admin
  • Discord Username: icehawke
Re: Aurora Launcher/Backup Wrapper
« Reply #7 on: November 11, 2012, 01:29:32 PM »
The launcher/backup is available here http://aurora2.pentarch.org/index.php/board,178.0.html

Offline Jeltz

  • Sub-Lieutenant
  • ******
  • Posts: 125
  • Thanked: 16 times
Re: Aurora Launcher/Backup Wrapper
« Reply #8 on: November 11, 2012, 06:43:07 PM »