Comprehensive data protection for all workloads
mma
Service Provider
Posts: 111 Liked: 21 times
Joined: Dec 22, 2011 9:12 am
Full Name: Marcel
Location: Lucerne, Switzerland
Contact:
Post
by mma » Apr 11, 2013 7:15 am
this post
Hi
It's a bit annoying that you can not set global job defaults in Veeam backup & replication.
In our setup, we don’t truncate transaction logs with Veeam. So I have to change the transaction log setting for every VM in every job…
Please let me know if this is already possible – I cannot find it :-/
Thanks
Vitaliy S.
VP, Product Management
Posts: 27588 Liked: 2874 times
Joined: Mar 30, 2009 9:13 am
Full Name: Vitaliy Safarov
Contact:
Post
by Vitaliy S. » Apr 11, 2013 8:05 am
1 person likes this post
Hi Marcel,
I believe it might be possible to change this setting for all jobs globally via PowerShell script. You may want to check that with our PS community.
Thanks!
mma
Service Provider
Posts: 111 Liked: 21 times
Joined: Dec 22, 2011 9:12 am
Full Name: Marcel
Location: Lucerne, Switzerland
Contact:
Post
by mma » Apr 11, 2013 1:11 pm
this post
Ok, this want help me.
I need a way to change the default because some servers have to truncate the logs.
Anyway, thanks for your help. Maybe in next version
veremin
Product Manager
Posts: 20731 Liked: 2399 times
Joined: Oct 26, 2012 3:28 pm
Full Name: Vladimir Eremin
Contact:
Post
by veremin » Apr 11, 2013 3:02 pm
2 people like this post
Yep, it’s possible with PowerShell.
The following script will disable truncation log for every VM in every job:
Code: Select all
Asnp VeeamPSSnapin
foreach ($job in Get-VBRJob )
{
$Objects = Get-VBRJobObject -job $Job
foreach ($object in $Objects){
$VSSOptions = $object.GetVssOptions()
$VSSOptions.TransactionLogsTruncation = "Never"
$object.SetVssOptions($VSSOptions)
}
}
Hope this helps.
Thanlks.
Users browsing this forum: Bing [Bot] , Google [Bot] , Mildur and 63 guests