Skip to content

Commit bbdf30f

Browse files
authored
Merge pull request MicrosoftDocs#3299 from tomlaf/patch-1
Update Example 2 to add .Identity to _$
2 parents 9d614e8 + 20cb6b8 commit bbdf30f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exchange/exchange-ps/exchange/client-access/Get-TextMessagingAccount.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ This example returns the text messaging settings for Tony's mailbox.
4646
### -------------------------- Example 2 --------------------------
4747
```
4848
$mbx = Get-Mailbox -RecipientTypeDetails UserMailbox -ResultSize Unlimited
49-
$mbx | foreach {Get-TextMessagingAccount -Identity $_ | where {($_.NotificationPhoneNumberVerified -eq $true)} | Format-Table Identity,NotificationPhoneNumber}
49+
$mbx | foreach {Get-TextMessagingAccount -Identity $_.Identity | where {($_.NotificationPhoneNumberVerified -eq $true)} | Format-Table Identity,NotificationPhoneNumber}
5050
```
5151

5252
This example finds all user mailboxes where text messaging notifications are enabled.

0 commit comments

Comments
 (0)