Nov 7, 2006 #1 Netman06 Technical User Aug 15, 2006 70 US Hello, Does anyone know how I can configure NTBackup, to run a second backup after it finishes with the first backup? Also if you are using schedule tasks, for NTBackup, is there a way you can have it run after another schedule task. Thanks, -Mike
Hello, Does anyone know how I can configure NTBackup, to run a second backup after it finishes with the first backup? Also if you are using schedule tasks, for NTBackup, is there a way you can have it run after another schedule task. Thanks, -Mike
Nov 7, 2006 #2 monsterjta IS-IT--Management Sep 12, 2005 702 US Create a batch file (backup.bat) with the following lines: start /wait ntbackup backup <directoryToBackup1> /f "destinationFile1.bks" ntbackup backup <directoryToBackup2> /f "destinationFile2.bks" You can then create a scheduled task to kick this off. Hope This Helps, Good Luck! Upvote 0 Downvote
Create a batch file (backup.bat) with the following lines: start /wait ntbackup backup <directoryToBackup1> /f "destinationFile1.bks" ntbackup backup <directoryToBackup2> /f "destinationFile2.bks" You can then create a scheduled task to kick this off. Hope This Helps, Good Luck!
Nov 8, 2006 Thread starter #3 Netman06 Technical User Aug 15, 2006 70 US Thanks, I'll give it a try. -Mike Upvote 0 Downvote
Nov 8, 2006 #4 monsterjta IS-IT--Management Sep 12, 2005 702 US Let me know if it works out for you. Thanks. Upvote 0 Downvote