hello,
on a 2012 R2 Server i want to keep 2 different sets of backups. One on a share on a NAS and one on a locally attached USB raid system.
I have two scheduled tasks, one made with the wizard for the local disk, one with a job that runs this script:
c:\Windows\System32\wbadmin.exe START BACKUP -backupTarget:\\backup\Backup\ -systemState -allCritical -include:D: -quiet >> "D:\logs\backupLogs_%date:~-4,4%%date:~-10,2%%date:~-7,2%.txt"
My question is: doing like this will i be sure i sure that the sets are unrelated and the full/incremental backups that are related stay on the same medium?
I don't want the incrementals done on local disk to have as starting point the full ones on NAS.
In the event that one medium fails i still want to be able to recover from the other medium.
Thanks.