Hello,
I want to delete the address which I got after executing the following command -
Get-AdUser msft -properties proxyaddresses | %{$_.proxyaddresses}|?{$_ -cmatch 'SMTP:'}
For e.g. - For user/mailbox MSFT, the above command give output -
SMTP:msft@microsoft.com
Graphically I can delete it from ADSI --> CN=Users --> CN=MSFT - Properties --proxyAddresses.
I need to delete using cmdlet.
Please guide me.
Thanks, Divyaprakash Koli