I am doing some redesigning of our backup jobs, and want to merge multiple jobs to larger jobs.
Being an IT-pro, doing this manually is just something I don't do, so I turned to Powershell to automate this process.
Using Get-VBRJob, Get-VBRJobObject and Add-VBRHvJobObject I have tried automating this process, but it seems like the objects I get when doing "Get-VBRJobObject" isn't usable as Entity in the "Add-VBRHvJobObject" cmdlet.
What I have done to make this happen using powershell is doing a Find-VBRHvEntity first, then using the Add-VBRHvJobObject after, but this is enumerating the cluster every time it is doing the find (it takes between 60-120 seconds for every find). This means adding 60 VMs takes me between one and two hours - automated still, but very slow!
Any help in writing the proper script/cmdlet to add all objects from one job to another (which goes fast) would be highly appreciated!

Thanks!