Browse Source

Add 'microsoft/powershell/AD.md'

Toastie 9 months ago
parent
commit
8a382fd9fa
1 changed files with 4 additions and 0 deletions
  1. 4 0
      microsoft/powershell/AD.md

+ 4 - 0
microsoft/powershell/AD.md

@@ -0,0 +1,4 @@
+Find AD group by name
+```
+Get-ADGroup -Filter {name -like "*sql*"} -Properties Description,info | Select Name,samaccountname,Description,info | Sort Name
+```