Cannot get “$_.hiddenfromaddresslistsenabled -eq $true” to work with other parameters.
Hi Cannot get this command to work. Tried different variations and commands.
Get-Mailbox | Where-Object {$_.IsLicensed -eq $true -and $_.BlockCredential -eq $false -and $_.hiddenfromaddresslistsenabled -eq $true}
The below works fine:
Get-Mailbox | Where-Object {$_.IsLicensed -eq $true -and $_.BlockCredential -eq $false}
Can anyone help?
Hi Cannot get this command to work. Tried different variations and commands. Get-Mailbox | Where-Object {$_.IsLicensed -eq $true -and $_.BlockCredential -eq $false -and $_.hiddenfromaddresslistsenabled -eq $true} The below works fine:Get-Mailbox | Where-Object {$_.IsLicensed -eq $true -and $_.BlockCredential -eq $false} Can anyone help? Read More