Comprehensive data protection for all workloads
Post Reply
mma
Service Provider
Posts: 111
Liked: 21 times
Joined: Dec 22, 2011 9:12 am
Full Name: Marcel
Location: Lucerne, Switzerland
Contact:

Feature request - Job defaults

Post by mma »

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… :roll:
Please let me know if this is already possible – I cannot find it :-/

Thanks
Vitaliy S.
VP, Product Management
Posts: 27055
Liked: 2710 times
Joined: Mar 30, 2009 9:13 am
Full Name: Vitaliy Safarov
Contact:

Re: Feature request - Job defaults

Post by Vitaliy S. » 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:

Re: Feature request - Job defaults

Post by mma »

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: 20270
Liked: 2252 times
Joined: Oct 26, 2012 3:28 pm
Full Name: Vladimir Eremin
Contact:

Re: Feature request - Job defaults

Post by veremin » 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.
Post Reply

Who is online

Users browsing this forum: BackItUp2020, Google [Bot], Semrush [Bot] and 261 guests