Skip to main content

Check Veeam Backup Repository size remotely


vAdmin
Forum|alt.badge.img+2

Hi Folks,

 

I’m sharing a script to remotely check the VBR Repo disk size.

Invoke-Command -ComputerName VBR1-VM, BKPSVR1, VBRSVR2 -ScriptBlock {
    Get-VBRBackupRepository | ForEach-Object {
        $container = $_.GetContainer()
        $_ | Select-Object -Property `
            Name,
            @{ n = 'TotalSpace'; e = { [Math]::Round($container.CachedTotalSpace.InMegabytes / 1024, 1) } },
            @{ n = 'FreeSpace';  e = { [Math]::Round($container.CachedFreeSpace.InMegabytes / 1024, 1) } }
    }
} | Select-Object -Property PSComputerName, Name, TotalSpace, FreeSpace

 

Hope this can be helpful for you, as the script can also be used to remotely execute any command remotely.

 

This is the limitations of the command you can execute remotely: https://learn.microsoft.com/en-us/powershell/scripting/learn/remoting/ps-remoting-second-hop?view=powershell-7.3#cons-1

7 comments

Chris.Childerhose
Forum|alt.badge.img+21
  • Veeam Legend, Veeam Vanguard
  • 8502 comments
  • January 31, 2023

Very nice script.  Always great to add things like this to my collection. 😎

Thanks for sharing.


vAdmin
Forum|alt.badge.img+2
  • Author
  • Influencer
  • 168 comments
  • January 31, 2023

That’s great, hope that you can make good use of it @Chris.Childerhose :-)


wolff.mateus
Forum|alt.badge.img+11
  • Veeam Vanguard
  • 541 comments
  • February 1, 2023

The names VBR1-VM, BKPSVR1, VBRSVR2 are what? VBR? Repository?


Mildur
Forum|alt.badge.img+12
  • Influencer
  • 1035 comments
  • February 2, 2023

@wolff.mateus

Most likely different VBR server. You can not run VBR PowerShell cmdlets directly against a repository server. The cmdlets must be executed on the backup server.

 

Best,

Fabian


wolff.mateus
Forum|alt.badge.img+11
  • Veeam Vanguard
  • 541 comments
  • February 2, 2023
Mildur wrote:

@wolff.mateus

Most likely different VBR server. You can not run VBR PowerShell cmdlets directly against a repository server. The cmdlets must be executed on the backup server.

 

Best,

Fabian

Thanks Fabian!


vAdmin
Forum|alt.badge.img+2
  • Author
  • Influencer
  • 168 comments
  • February 7, 2023
wolff.mateus wrote:

The names VBR1-VM, BKPSVR1, VBRSVR2 are what? VBR? Repository?

Hi @wolff.mateus, yes, it is the Veeam Backup server in my case here, which has a mapped network drive.


  • 0 comments
  • May 16, 2023

Worked like a charm! Thanks for sharing.