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