Jan 16, 2020 AZ-103: Microsoft Azure ADMINISTRATOR EXAM PASSED!!! #Azure #Administrator #CertifiedProfessional #MicrosoftAzure #MicrosoftCloud #Microsoft #alwaysbelearning #AZ103 #EXAM #PASSED
PowerShell : Get COMPUTER objects of a specific group ( this example gets the properties “description” of each object )
# Get COMPUTER objects of a specific group ( this example gets the properties “description” of each object ) # List in a table format Name and Computer Description PropertiesGet-AdGroupMember…
List Members of a specific AD group
#List Members of a specific AD group – output Username and User Full Name Get-ADGroupMember -Identity "AD GROUP NAME" | Select samAccountName, Name
Task : Output A List Of Home Drive Paths Configured In Active Directory
#DSQuery dsquery user -name "*" -limit 0 | dsget user -samid -hmdir -hmdrv -profile >c:\temp\usersV2.txt #PowerShell # More flexibility # Includes the state of the computer account (Enable or…