Somewhat new to interacting with a VBO server using powershell - tend to rely on the GUI far too much. I'm looking to create a script that outputs a list of items that are currently selected for backup on an any given organisation. This list should ideally contain any Objects, as well as their Type (User/site/Shared Mailbox), and the Processes they're selected for (Mail/Archive/OneDrive). Is this possible at all, and has anyone got any pointers on setting this in a neat powershell script format?
Currently I have the following, which doesn't help alot, and leaves me without the information above, which takes in a single organisation name, and outputs very basic information for that org:
$org = Get-VBOOrganization -name 'probax.onmicrosoft.com'
$type = User
Get-VBOOrganizationUser -Organization $org -type $type
We are on VBO 5.0.1.225
Really appreciate the help here

Regards
Anthony