Skip to content

Instantly share code, notes, and snippets.

View moisei's full-sized avatar
🎯
Focusing

Moisei Rabinovich moisei

🎯
Focusing
View GitHub Profile
=query(FILTER(B2:B, ISNA(MATCH(B2:B, A2:A, 0))), "select * where Col1 contains 'something'")
@moisei
moisei / Get-ADUser
Last active May 2, 2019 09:00
Sorted list of ActiveDirectory users principals in lowercase
Get-ADUser -Filter * | Sort-Object -Property UserPrincipalName | Select-Object @{E={$_.UserPrincipalName.ToLower()}}