Hi there!
We use a powershell script where we make backup of Windows servers using Windows Server Backup tool.
We ran this script:
$day=(get-date -f dd-MM-yyyy)
$backuplocation=\\networklocation\$day\
wbadmin start backup -allCritical -backupTarget:$backuplocation -include:d: -vssfull -quiet | Out-FileForce "$backuplog"
Ok, in this case (depends on which day we set up backup thru Task Scheduler) we got backups in subfolders in\\networklocation and every time the backup is done it is done as full backup.
Is there a way to achieve that incremental backups would be done in thoose subfolders.
As far as I have read info about making backups using Windows Server Backup you are able to do incremental backups but only if you do it every time in the same folder and not making any subfolders for different days.
Is my understanding right?
But if that's thru, that would make a corruption of a backup if sth goes wrong and it owerwrites that one and only folder for backups. In other words if you don't make subfolders for backups and you retain only one folder for it,
that one-time when backup would partly do it's job it would corrupt the data in backup folder?
Soo is there a way to achieve incremental backups in this scenario?
bostjanc