No LAPS password

sebastian garzon salazar 21 Reputation points
2022-08-19T09:51:35.247+00:00

Have everybody a nice day,

I need the LAPS password from a PC at work but if i search it via AD i don´t see any... is there a way to set a new password or maybe recover the last password?

Thanks in advance!

Windows Group Policy
Windows Group Policy
A feature of Windows that enables policy-based administration using Active Directory.
2,015 questions
No comments
{count} votes

Accepted answer
  1. Limitless Technology 37,526 Reputation points
    2022-08-19T15:06:39.563+00:00

    Hello there,

    Have you tried powershell to get back the password?

    Enter-PSSession dc.domain.local
    Get-AdmPwdPassword -ComputerName "computer" | Select-Object Password,ExpirationTimestamp

    You can also look into this thread for alternate options https://learn.microsoft.com/en-us/answers/questions/650906/laps-password.html

    ---------------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept it as an answer--


2 additional answers

Sort by: Most helpful
  1. sebastian garzon salazar 21 Reputation points
    2022-08-19T09:56:14.15+00:00

    It´s like some computers loose their LAPS password somehow, so normally i redeploy them but in this case i may not redeploy the PC.

  2. Gary Reynolds 8,826 Reputation points
    2022-08-20T02:59:32.313+00:00

    Hi

    Check this post for details on how to retrieve the laps password. If the tab is not visible either the password is not set or you don't have right to read the password.

    https://nettools.net/retrieving-laps-password/

    To set access rights to read the password use the following command

    Set-AdmPwdReadPasswordPermission –Identity “OU Name” –AllowedPrincipals “User or Group Name

    Gary.