I'm trying to use the Get-BrokerDesktop
cmdlet,
Like any other Powershell cmdlets I can pass it parameters to filter out the results to my needs. So, I could do something like,
Get-brokerdesktop -RegistrationState Unregistered
Which would return an object that only has Unregistered
as its RegistrationState
.
How would I go about having the ones that are not Unregistered
?
I tried,
Get-brokerdesktop -RegistrationState -ne Unregistered
Which is invalid syntax.