Advanced PowerShell Commands

Advanced PowerShell Commands

Here I am going to post those commands that I find useful for IT Pros.  Enjoy

AD

Get List of AD Users sorted by last name
get-aduser -filter * | sort-object surname | format-table surname,name

0 Comments