MS Teams caller ID Policy "Anonymous"

Ramki 816 Reputation points
2021-06-21T06:18:27.197+00:00

Hello Team

Recently i took PSTN - Direct Routing report from teams admin center and found few are the caller ID as stamped as anonymous

i checked the caller ID policy below

Identity : Global
Description :
EnableUserOverride : False
ServiceNumber :
CallingIDSubstitute : LineUri
BlockIncomingPstnCallerID : False

Identity : Tag:cloudmonkeysAnonymous
Description :
EnableUserOverride : True
ServiceNumber :
CallingIDSubstitute : LineUri
BlockIncomingPstnCallerID : False

" Global policy" caller ID policy is applied to the users showing as anonymous .

its weird and i would like to take the report of the users who applied for both policies

get-csonlineuser | where {$_.callerIDPolicy -eq 'Tag:cloudmonkeysAnonymous'} | FT UserPrincipalName

but no results

Microsoft Teams
Microsoft Teams
A Microsoft customizable chat-based workspace.
10,894 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Sharon Zhao-MSFT 25,751 Reputation points Microsoft External Staff
    2021-06-21T09:58:06.84+00:00

    @Ramki ,

    You cannot get Global policy by command but a user policy.

    As a supplement, the following script is helpful for your scenario:

    Get-CsOnlineUser -Filter {TeamsMeetingPolicy -eq 'No Lobby'}   
     | Select UserPrincipalName, TeamsMeetingPolicy  
    

    Besides, you could also use the Filter option to create conditions as below:
    107631-image.png


    If the response is helpful, please click "Accept Answer" and upvote it.

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.