I need to backup exchange properly (on line, pub.edb, priv.edb etc) Obviously the normal ntbackup dosnt do this, and i know using ds servername is servername does it, but not sure where the context fits in with a normal script. Below I have my current proposed backup script, could someone verify that this will work? Thanks
@echo off
del C:\NTBACKUP\sysprev.txt
ren C:\NTBACKUP\sys_log.txt sysprev.txt
del /s /q /f C:\TEMP\*.TMP
del /s /q /f C:\TEMP\~*.*
ntbackup backup C:\ D:\ E:\ ds dis_bdc2
is dis_bdc2 /v /r /d "Full backup of DIS_BDC2 Server" /b /hc
n /t normal /l c:\ntbackup\sys_log.txt
ntbackup eject
@echo off
del C:\NTBACKUP\sysprev.txt
ren C:\NTBACKUP\sys_log.txt sysprev.txt
del /s /q /f C:\TEMP\*.TMP
del /s /q /f C:\TEMP\~*.*
ntbackup backup C:\ D:\ E:\ ds dis_bdc2
is dis_bdc2 /v /r /d "Full backup of DIS_BDC2 Server" /b /hc
ntbackup eject