The way to do this is a little odd...but what you can do is the following:
- Code: Select all
$job = Get-VBRJob | ?{$_.name -eq "JobName"}
$job.info.Update("jobname", "description")
[Veeam.Backup.Core.CBackupJob]::Update($job.info)
$Job.Info.Update requires 2 arguments, the jobname and the description. This will allow you to set the job description and change the job name of your job.
This means if you want to just change the description, that line would be
- Code: Select all
$job.info.update($job.Name, "Description text")
Skype:
Sethbartlett88 - Make sure to label who you are and why you want to add me

Twitter: @
sethbartlettIf my post was helpful, please like it. Sometimes twitter is quicker to hit me up if you need me.