backup software
PirateNinja
Icrontian
Quick question (lately you guys can not answer my questions, come on guys...):
How do I use ntbackup on win2k3 server so that it does not create image files, but instead just copies complete directories? Or, is there another easy way to schedule directory copying without using ntbackuyp or 3rd party software....
IE... Can I simply use Task Scheduler to copy one directory at one time?
...
What the hell is this?
How do I use ntbackup on win2k3 server so that it does not create image files, but instead just copies complete directories? Or, is there another easy way to schedule directory copying without using ntbackuyp or 3rd party software....
IE... Can I simply use Task Scheduler to copy one directory at one time?
...
What the hell is this?
0
Comments
(Shameless plug)
Hrm, but I don't want 3rd party software. Grumble. I just need to set task scheduler to run some good old dos copy commands to a mapped network storage I suppose.
Question though... Is there a way to use the shadow copy utility in a way that it only copies modified files since the last backup?
Now you're just back to using ntbackup and making an image file aren't you? And I'm not sure why that's bad though I don't know the whole picture.
You can specify a backup type (normal, copy, differential, incremental, or daily) with a command line switch. Click here to see the KB on ntbackup switches. I use them all the time.
echo *************************** >> C:\backup.log
echo %date% >> C:\backup.log
echo Start: %time% >> C:\backup.log
xcopy \\server2\denndata M:\denndata\ /D /Y /E >> C:\backup.log
echo End: %time% >> C:\backup.log
The problem now is, the /d switch is not working. The damn thing wants to back up every file, every time. Ideas?
Again, thank you, Steve!