Skip to content

Instantly share code, notes, and snippets.

@tostka
Created March 29, 2018 22:44
Show Gist options
  • Save tostka/cc949a2b28989602e0f0875fcc4a1181 to your computer and use it in GitHub Desktop.
Save tostka/cc949a2b28989602e0f0875fcc4a1181 to your computer and use it in GitHub Desktop.
$Sites = "US;AU;EU" ;
$Sites=$Sites.split(";") ;
foreach ($Site in $Sites) {
write-host -foregroundcolor yellow "SITE: " $Site;
get-exchangeserver |
where { $_.Site -like "*$Site" } |
sort AdminDisplayVersion,ServerRole,Name |
select Name,ServerRole,AdminDisplayVersion ;
} ;
@tostka
Copy link
Author

tostka commented Mar 29, 2018

old ps code circa 2013, that I'm gisting up to neaten up old blog posts at toddomation.com

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment