Local Administrator Password Solution (LAPS)
Enumerate LAPS Configuration
Check LAPS Installation Directory Verify if the LAPS client is installed by checking the directory:
dir "C:\Program Files\LAPS\CSE"
List Available Commands Related to LAPS Use PowerShell to find available commands for LAPS:
Get-Command *AdmPwd*
Check Extended Rights for a Group Use the following command to find extended rights for a specific group in LAPS:
Find-AdmPwdExtendedRights -Identity <Group>
Enumerate Group Membership Check the group membership using the
net
command:net groups <Group>
Getting the Password
To retrieve the local administrator password for a specific computer, use:
Get-AdmPwdPassword -ComputerName creds-harvestin
Last updated