Author |
Message |
Registered: May 19, 2007 | Reputation: | Posts: 6,730 |
| Posted: | | | | This feature would be so useful that this has probably been asked before. I just couldn't find anything about it. What do you think about a semi-automatic backup that at every n-th closedown reminds the user to perform a backup. I think such a feature would help many users a lot, especially those that don't think of a backup themselves. Proposal edited to match the even better ideas of tweeter and Addicted2DVD: OP was: Quote: This feature would be so useful that this has probably been asked before. I just couldn't find anything about it.
What do you think about an automatic backup at closedown, preferably with the option to pick A: Every Closedown B: Every 5th Closedown C: Every 10th Closedown
I'm aware of the command line options, the problem I see here is, that the backup is made (at startup) before the changes occur. Even worse: Not many users know how to use them or that they even exist.
I think such a feature would help many users a lot, especially those that don't think of a backup themselves. | | | It all seems so stupid, it makes me want to give up! But why should I give up, when it all seems so stupid?
Registrant since 05/22/2003 | | | Last edited: by Lewis_Prothero |
|
Registered: June 12, 2007 | Reputation: | Posts: 2,665 |
| Posted: | | | | I like it.
It could work like Quicken does. Every Nth time i exit it asks if i want to back up. Mostly i say Yes, sometimes No. | | | Bad movie? You're soaking in it! |
|
Registered: March 13, 2007 | Reputation: | Posts: 17,334 |
| Posted: | | | | I like the idea of it asking (reminding) you to backup but not sure I would want it to automatically backup at every X time I close it. | | | Pete |
|
Registered: May 19, 2007 | Reputation: | Posts: 6,730 |
| Posted: | | | | Quoting Addicted2DVD: Quote: I like the idea of it asking (reminding) you to backup but not sure I would want it to automatically backup at every X time I close it. This might actually be the better idea. | | | It all seems so stupid, it makes me want to give up! But why should I give up, when it all seems so stupid?
Registrant since 05/22/2003 |
|
Registered: October 6, 2008 | Posts: 1,932 |
| Posted: | | | | Quoting Addicted2DVD: Quote: I like the idea of it asking (reminding) you to backup but not sure I would want it to automatically backup at every X time I close it. Me, too. (I think it's funny that the only time the prg reminds you to back up is when you just finished doing so. ) |
|
| Muckl | That's my common name. |
Registered: April 9, 2009 | Reputation: | Posts: 858 |
| Posted: | | | | Quoting goblinsdoitall: Quote: Quoting Addicted2DVD:
Quote: I like the idea of it asking (reminding) you to backup but not sure I would want it to automatically backup at every X time I close it. This might actually be the better idea.
+1 | | | 1.0.1, iPhone 3GS, iOS 4.1.0
Trivia v0.3.1 My HSDB v5 additions, HTML windows and other stuff |
|
Registered: March 13, 2007 | Reputation: | Posts: 3,197 |
| Posted: | | | | As long as you can turn it off. I have a scheduled backup of my whole C: drive once a week so I don't think I would use it much, except for migrating to the next version of Profiler... | | | First registered: February 15, 2002 |
|
Registered: March 19, 2007 | Reputation: | Posts: 6,018 |
| Posted: | | | | Excellent idea! |
|
Registered: March 14, 2007 | Reputation: | Posts: 4,667 |
| Posted: | | | | With 4700+ profiles backup takes quite a while, so I wouldn't want to have it forced on me. A reminder that can be turned off sound like a great idea, though. | | | My freeware tools for DVD Profiler users. Gunnar |
|
Registered: March 13, 2007 | Reputation: | Posts: 2,394 |
| Posted: | | | | Quoting goblinsdoitall: Quote: Quoting Addicted2DVD:
Quote: I like the idea of it asking (reminding) you to backup but not sure I would want it to automatically backup at every X time I close it. This might actually be the better idea.
+1 | | | Another Ken (not Ken Cole) Badges? We ain't got no badges. We don't need no badges. I don't have to show you any stinking badges. DVD Profiler user since June 15, 2001 |
|
Registered: May 19, 2007 | Reputation: | Posts: 5,917 |
| Posted: | | | | You can do this yourself by creating a batch file that will copy your DVD Profiler directory from your User Directory into another location and create a windows Scheduled Task to kick it off every x days. Here's a batch file for Windows XP. It'll create a full backup of your entire DVD Profiler data directory on first run, subsequent runs will only copy the files that have been modified. Note that if you perform system backups based on the Archive bit, this script clears that bit after the file is copied. Notes: For Vista that wasn't upgraded from XP, your "My Documents" directory may be called "Documents". Quote: @echo off %homedrive% cd "%userprofile%\My Documents" if not exist "DVD Profiler Backup" mkdir "DVD Profiler Backup" xcopy "DVD Profiler\*.*" "DVD Profiler Backup" /m /e /v /h /r /k /o /y Subsequent backups will only copy the modified/new files. Old cover scans won't be removed. I'll post a Vista/Win7 script later today once I get home and get access to my Vista box. | | | Last edited: by Dr. Killpatient |
|
Registered: May 19, 2007 | Reputation: | Posts: 5,917 |
| Posted: | | | | Here's the batch file for Vista/Win7 which makes use of the RoboCopy tool. It will create a mirror of the DVDP directory which means the backup directory is an exact match of the DVDP directory including deleting files that no longer exists (cover scans/databases/etc) in the DVDP directory. Quote: @echo off %homedrive% cd "%userprofile%\Documents" if not exist "DVD Profiler Backup" mkdir "DVD Profiler Backup" robocopy "DVD Profiler" "DVD Profiler Backup" /MIR /V /ZB /COPYALL /DST No need to delete/comment out the mkdir directory, this script (and I edited the XP script) will only create the directory if it doesn't exist. | | | Last edited: by Dr. Killpatient |
|
Registered: May 19, 2007 | Reputation: | Posts: 5,917 |
| Posted: | | | | If you wanted to create and keep multiple backups, this alteration to the batch file will create a directory with the current date, for example: "DVD Profiler Backup 2009-12-18". Paste the below code at the start of the batch file on the 2nd line (after "@echo off"). Quote: FOR /f "tokens=2-4 skip=1 delims=(-)" %%G IN ('echo.^|date') DO ( FOR /f "tokens=2 delims= " %%A IN ('date /t') DO ( SET v_first=%%G SET v_second=%%H SET v_third=%%I SET v_all=%%A ) )
SET %v_first%=%v_all:~0,2% SET %v_second%=%v_all:~3,2% SET %v_third%=%v_all:~6,4% Then alter the following line: if not exist "DVD Profiler Backup" mkdir "DVD Profiler Backup" To read: if not exist "DVD Profiler Backup %yy%-%mm%-%dd%" mkdir "DVD Profiler Backup %yy%-%mm%-%dd%" | | | Last edited: by Dr. Killpatient |
|
Registered: March 29, 2007 | Reputation: | Posts: 2,746 |
| Posted: | | | | The Dr. is in the house and has definitely written a few scripts in his time. I don't hold much for stars, but you get a greenie from me for these. Outstanding! | | | Marty - Registered July 10, 2004, User since 2002. |
|
Registered: March 18, 2007 | Reputation: | Posts: 6,460 |
| Posted: | | | | Lovely work!!! You have just benefitted handsomely from the new 10 greenie allotment! (Wow, reading that script again and again. It is a serious lesson in cool .BAT programming) | | | Thanks for your support. Free Plugins available here. Advanced plugins available here. Hey, new product!!! BDPFrog. | | | Last edited: by mediadogg |
|
Registered: February 23, 2009 | Reputation: | Posts: 1,580 |
| Posted: | | | | Personally I wouldn't mind if the option (which can be turned on or off) would be included but if it's forced then I'd rather not. More often than not, I close DVDP right before shutting off my computer and I don't feel like having to wait 5 or 10 minutes each time for the backup to complete.
edit: that's some powerful editing there, Dr Killpatient! | | | Blu-ray collection DVD collection My Games My Trophies | | | Last edited: by Taro |
|