Quantcast
Channel: Butsch.ch
Viewing all articles
Browse latest Browse all 185

Exchange Powershell: Find attached account with E-Mail address

$
0
0

How to list all E-Mail address in an Exchange Environment which contains:

info@

Write to console:

Get-Recipient -resultSize unlimited | select name -expand emailAddresses | where {$_.smtpAddress -match ".*info@.*"} | Format-Table name, smtpaddress

Write to file:

Get-Recipient -resultSize unlimited | select name -expand emailAddresses | where {$_.smtpAddress -match ".*info@.*"} | Format-Table name, smtpaddress > logfile.txt

 


Viewing all articles
Browse latest Browse all 185

Trending Articles