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
-
- Service Provider
- Posts: 111
- Liked: 21 times
- Joined: Dec 22, 2011 9:12 am
- Full Name: Marcel
- Location: Lucerne, Switzerland
- Contact:
-
- VP, Product Management
- Posts: 27377
- Liked: 2800 times
- Joined: Mar 30, 2009 9:13 am
- Full Name: Vitaliy Safarov
- Contact:
Re: Feature request - Job defaults
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!
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!
-
- 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
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
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
-
- Product Manager
- Posts: 20406
- Liked: 2298 times
- Joined: Oct 26, 2012 3:28 pm
- Full Name: Vladimir Eremin
- Contact:
Re: Feature request - Job defaults
Yep, it’s possible with PowerShell.
The following script will disable truncation log for every VM in every job:
Hope this helps.
Thanlks.
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)
}
}
Thanlks.
Who is online
Users browsing this forum: Bing [Bot] and 224 guests