4 thoughts on “Quickfix – Mass editing Veeam VM Attribute settings with PowerShell

  1. @mwpreston:disqus How to set what details to be written on the “Notes” VCenter server Attributes ?

    1. foreach ($job in $jobs)
      {

      $job | Set-VBRJobAdvancedViOptions -SetResultsToVmAttribute $True
      $joboptions = $job.GetOptions()
      #Name of the Attribute : default is “Note” :
      $joboptions.ViSourceOptions.VmAttributeName = “Last Backup”
      $joboptions.ViSourceOptions.VmNotesAppend = $False
      $job.SetOptions($joboptions)
      }

Leave a Reply

Your email address will not be published. Required fields are marked *