question

Ramki-5805 avatar image
0 Votes"
Ramki-5805 asked SharonZhao-MSFT commented

MS Teams caller ID Policy "Anonymous"

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






office-teams-windows-itpro
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

1 Answer

SharonZhao-MSFT avatar image
0 Votes"
SharonZhao-MSFT answered SharonZhao-MSFT commented

@Ramki-5805,

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.






image.png (61.8 KiB)
· 6
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

Hello @SharonZhao-MSFT

thanks for your update , and also i would like to know, why my callerID showing as "Anonymous" in PSTN report.

0 Votes 0 ·

@Ramki-5805
Official document explains that Anonymous, which is available by removing the presentation of the user’s PSTN number.
108528-image.png


0 Votes 0 ·
image.png (33.7 KiB)

@Ramki-5805
Do you have any further question on this topic now?
If the suggestion helps, please be free to mark it as an answer for helping more people.

0 Votes 0 ·

hello @SharonZhao-MSFT I know this office document and the how anonymous replace the caller ID

but the issue is few users are not assigned to hide the caller ID policy . they are assinged to global policy CallingIDSubstitute is LineUri...they should be shown theier default caller number

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

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

0 Votes 0 ·
Show more comments