Skip to main content

PowerShell Tips for Veeam


Chris.Childerhose
Forum|alt.badge.img+21

I am starting a new blog series on interesting PowerShell commands for anything Veeam related.  I usually find useful information whether it be searching or via Support cases.

The first one comes from a support case I worked on with Veeam for VB365 and a repository sync issue. This command allows you to change the owner (move) a repository from one proxy to another or to a proxy pool.

You can check it out here - https://just-virtualization.tech/2025/04/01/powershell-tips-for-veeam-vb365-v8-1/

 

PowerShell Tips for Veeam – VB365 v8.1

 

I hope this blog post will be one of many that show the power of PowerShell when used with any of the Veeam product lines. Today, I will discuss a very cool feature that Support showed me: It allows you to move a VB365 repository from a single proxy to a proxy pool. While working on a support case with a repository that was not synchronizing, I got that fixed with Veeam Support’s help.

During the process, we had to put the repository on a single proxy server as adding it to the proxy pool, which is new to v8, did not work. I asked support how I could go about this, and they sent me the Change Owner Session command from the Veeam help documents, which can be found here: Start-VBORepositoryOwnerChangeSession – Veeam Backup for Microsoft 365 PowerShell Reference.

Below are some examples of the command—the first one moves a single repository, and the second example matches multiple repositories with similar names to move them all one at a time using a ForEach loop.

Single Repository Move –

$repository = Get-VBORepository -Name "Repository1" $pool = Get-VBOProxyPool -Name "Proxy-Pool1" Start-VBORepositoryOwnerChangeSession -Repository $repository -Pool $pool -ForceStopSessions

Multiple Repository Move –

$repository = Get-VBORepository -Name "Name*blah*" $pool = Get-VBOProxyPool -Name "Proxy-Pool1" foreach ($r in $repository) { Start-VBORepositoryOwnerChangeSession -Repository $r -Pool $pool -ForceStopSessions }

If you want to check on your move sessions, if there are many of them, you can use the following command to check each one based on the Session ID GUID –

Get-VBORepositoryOwnerChangeSession -SessionId <Guid>

The GUID is listed when you kick off the Start-VBORepositoryOwnerChangeSession command, so make a note of it and replace it in the <Guid> in the command above.

The moves were so quick that I could check the session, but it stated it was complete. I hope you find this command useful. It is a great way to move repositories from a single proxy server to a proxy pool without going through the steps to detach and reattach them. This will keep all the indexing and cache information in the database, saving you the time of VB365 having to go through it again.

Until the next PowerShell tip, happy blogging.

5 comments

coolsport00
Forum|alt.badge.img+20
  • Veeam Legend
  • 4153 comments
  • April 1, 2025

Very cool Chris. I myself don’t use V365, but I’m sure the Community will find this script very beneficial and helpful. Looking fwd to the rest of your series!


Chris.Childerhose
Forum|alt.badge.img+21
  • Author
  • Veeam Legend, Veeam Vanguard
  • 8512 comments
  • April 1, 2025

Thanks, Shane.  Yeah this one helped me out and allows us to migrate to pools with ease, especially with the for each loop one where I can match multiple repos.  😎


MarcoLuvisi
Forum|alt.badge.img+5
  • Influencer
  • 275 comments
  • April 4, 2025

I have been making a collection of PS scripts for VBR and VxM365 for some time now and hope to finish it soon.


Chris.Childerhose
Forum|alt.badge.img+21
  • Author
  • Veeam Legend, Veeam Vanguard
  • 8512 comments
  • April 4, 2025
MarcoLuvisi wrote:

I have been making a collection of PS scripts for VBR and VxM365 for some time now and hope to finish it soon.

Looking forward to seeing those. 👍


matheusgiovanini
Forum|alt.badge.img+5

Great post! Using PowerShell for this kind of automation in Veeam can really help.


Comment