Revision history of "Generate list of default email addresses from AD"

Jump to navigation Jump to search

Diff selection: Mark the radio boxes of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

  • curprev 09:06, 8 November 2017Michael.mast talk contribs 356 bytes +356 Created page with "<pre> Get-ADUser -filter {enabled -eq "True"} -Properties * | where {$_.office -match "[a-z]"} | select name,@{Name="Address";Expression={$_ | select -ExpandProperty proxyaddr..."