Hi Guys,
One of my customer (hotel base) would like to request for solution to keep Veeam Images for 7 years?
Any recommend way to do that?
Thanks
echo "kill older than 5 days..."
$a = Get-ChildItem d:\veeambackup1 -recurse
foreach($x in $a)
{
$y = ((Get-Date) - $x.CreationTime).Days
if ($y -gt 5 -and $x.PsISContainer -ne $True)
{$x.Delete()}
}
echo "copy latest stuff over to secondary target..."
$date = (Get-Date).AddDays(-1).ToString('M-d-y')
xcopy "T:\veeam\*.*" d:\veeambackup1 /I /C /E /F /H /R /Y /J /D:$date
desmond shio wrote:Any recommend script or powershell sample to copy only synthetic fulls to DR backup storage?
desmond shio wrote:Also any software to sync primary DR backup storage to secondary DR backup storage?
desmond shio wrote:we are try not to use tape and removable disk for our customer.
desmond shio wrote:we are try not to use tape and removable disk for our customer.
Return to Veeam Backup & Replication
Users browsing this forum: v.Eremin and 14 guests