Hello,
I would like to check the status of my differents components like repositories, proxies, NAS, ...
On the GUI, I can see allof these :
Nothing mentioned = OK
disabled
unavailable
Out of date.
Let's take proxy as sample :
I think here I have the Disabled + Unavailable check but how can I check for the "nothing mentioned" or Out of date ?
I would like to check the status of my differents components like repositories, proxies, NAS, ...
On the GUI, I can see allof these :
Nothing mentioned = OK
disabled
unavailable
Out of date.
Let's take proxy as sample :
Code:
$Proxies = Get-VBRViProxyforeach ($proxy in $proxies){ [PSCustomObject]@{ Name = $Proxy.Name Server = $Proxy.Host.Name IsAvailable = -not ($Proxy.Host.IsUnavailable) IsEnabled = -not $Proxy.IsDisabled }}Statistics: Posted by matteu — Apr 29, 2025 7:51 am





