{"id":3342,"date":"2020-04-05T01:34:43","date_gmt":"2020-04-05T01:34:43","guid":{"rendered":"http:\/\/pariswells.com\/blog\/?p=3342"},"modified":"2025-11-24T23:21:21","modified_gmt":"2025-11-24T23:21:21","slug":"how-to-install-and-setup-laps-local-administrator-password-solution","status":"publish","type":"post","link":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution","title":{"rendered":"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO"},"content":{"rendered":"\n<p class=\"wp-block-paragraph\">For Servers 2019 and Windows 10 Use the Inbuilt Functionality <a href=\"https:\/\/lazyadmin.nl\/it\/windows-laps\/\">https:\/\/lazyadmin.nl\/it\/windows-laps\/<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Download<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\"><a href=\"https:\/\/www.microsoft.com\/en-us\/download\/details.aspx?id=46899\">Click here to Download the software<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Install<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Install 32bit or 64bit depending on server , install ALL the Management Tools<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Create a new package and use the LAPS.x64.msi file that we downloaded earlier. Make sure that you add the parameter&nbsp;<strong>CUSTOMADMINNAME=LAPSAdmin<\/strong>&nbsp;in your package , this will create the LocalAdmin Account ( LAPs does not create the account for you ) Without this you will need to deploy a script to do this for you ( no way to do this via GPO due to security issues of deploying a password in GPO)<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code class=\"\">$Username = \"LAPSAdmin\"\n\n# Create Random LAPS Password\ntry {\n    $length = 14\n    $characters = \"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&amp;*()_+=-\"\n    \n    $password = \"\"\n    for ($i = 1; $i -le $length; $i++) {\n        $randomIndex = Get-Random -Minimum 0 -Maximum $characters.Length\n        $password += $characters[$randomIndex]\n    }\n\n    $group = \"Administrators\"\n\n    # Check if user already exists using ADSI\n    $adsi = [ADSI]\"WinNT:\/\/$env:COMPUTERNAME\"\n    $existing = $adsi.Children | Where-Object { $_.SchemaClassName -eq 'user' -and $_.Name -eq $Username }\n\n    if ($null -eq $existing) {\n        Write-Host \"Creating new local user $Username.\" -ForegroundColor Green\n        net user $Username \"$password\" \/add \/expires:never \/passwordchg:no | Out-Null\n        \n        Write-Host \"Adding local user $Username to $group group.\" -ForegroundColor Green\n        net localgroup \"$group\" $Username \/add | Out-Null\n    }\n    else {\n        Write-Host \"Setting new password for existing user $Username.\" -ForegroundColor Yellow\n        # Preferred modern way (works on Windows 10\/11\/Server 2016+)\n        $existing.SetPassword($password)\n    }\n\n    # Ensure password never expires (more reliable than WMIC)\n    Write-Host \"Ensuring password for $Username never expires and cannot be changed by user.\" -ForegroundColor Green\n    net user $Username \/expires:never | Out-Null\n    net user $Username \/passwordchg:no | Out-Null\n\n    Write-Host \"LAPS-like admin account '$Username' configured successfully.\" -ForegroundColor Cyan\n    Write-Host \"Password: $password\" -ForegroundColor Red\n}\ncatch {\n    Write-Error \"Failed: $_\"\n}<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\">Setup<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">Open Powershell as Administrator and with Domain Admin Writes and run<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Import-module AdmPwd.PS &nbsp;<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Update-AdmPwdADSchema<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Make sure the above says Success<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">In the same Powershell Window you need to declare the OU&#8217;s where the computers will live<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Set-AdmPwdComputerSelfPermission -OrgUnit &lt;name of the OU to delegate permissions&gt;<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Now you want to see who have access to look at the password in the OU<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Find-AdmPwdExtendedrights -identity&nbsp;\u201cOU NAME\u201d<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Add or remove permissions via :&nbsp;<strong>Set-AdmPwdReadPasswordPermission -OrgUnit &lt;name of the OU to delegate permissions&gt; -AllowedPrincipals &lt;users or groups&gt;<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Group Policy<\/h2>\n\n\n\n<p class=\"wp-block-paragraph\">On the PC you installed the LAPS tool to ,&nbsp;&nbsp;copy&nbsp;the following files :&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">C:\\Windows\\PolicyDefinitions\\AdmPwd.admx<strong>&nbsp;to ( ON a domain controller )<\/strong>&nbsp;C:\\Windows\\SYSVOL\\domain\\Policies\\PolicyDefinitions\\<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">C:\\Windows\\PolicyDefinitions\\en-US\\AdmPwd.adml&nbsp;<strong>to ( ON a domain controller )<\/strong>&nbsp;C:\\Windows\\SYSVOL\\domain\\Policies\\PolicyDefinitions\\en-US\\AdmPwd.adml&nbsp;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Now create a Group Policy and Apply to the computers you would like to have self managed local Administrator Password<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1576\" height=\"479\" src=\"http:\/\/pariswells.com\/blog\/wp-content\/uploads\/2018\/05\/img_5b03df9e5977f.png\" alt=\"\" class=\"wp-image-3344 img-responsive\" srcset=\"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2018\/05\/img_5b03df9e5977f.png 1576w, https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2018\/05\/img_5b03df9e5977f-300x91.png 300w, https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2018\/05\/img_5b03df9e5977f-768x233.png 768w, https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2018\/05\/img_5b03df9e5977f-1024x311.png 1024w\" sizes=\"auto, (max-width: 1576px) 100vw, 1576px\" \/><\/figure>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>Administering<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>How to find password using Gui<\/strong><\/p>\n\n\n\n<p class=\"wp-block-paragraph\">On the PC installed with LAPS , run&nbsp; : C:\\Program Files\\LAPS\\AdmPwd.UI.exe and enter the computer name to find the password<\/p>\n\n\n\n<p class=\"wp-block-paragraph\">Use Powershell :&nbsp;Get-AdmPwdPassword -Computername &#8220;%COMPUTERNAME%&#8221;<\/p>\n\n\n\n<p class=\"wp-block-paragraph\"><strong>To reset password Immediately :<\/strong> Reset-AdmPwdPassword -ComputerName &lt;computername&gt;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>For Servers 2019 and Windows 10 Use the Inbuilt Functionality https:\/\/lazyadmin.nl\/it\/windows-laps\/ Download Click here to Download the software Install Install 32bit or 64bit depending on server , [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4],"tags":[1103,970,2493,2494,2495,627],"class_list":["post-3342","post","type-post","status-publish","format-standard","hentry","category-random","tag-download","tag-install","tag-laps","tag-local-admin","tag-local-administrator-password-solution","tag-reset"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.9 - aioseo.com -->\n\t<meta name=\"description\" content=\"For Servers 2019 and Windows 10 Use the Inbuilt Functionality https:\/\/lazyadmin.nl\/it\/windows-laps\/ Download Click here to Download the software Install Install 32bit or 64bit depending on server , install ALL the Management Tools Create a new package and use the LAPS.x64.msi file that we downloaded earlier. Make sure that you add the parameter CUSTOMADMINNAME=LAPSAdmin in your package ,\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"paris\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.9\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Welcome to Pariswells.com |\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO | Welcome to Pariswells.com\" \/>\n\t\t<meta property=\"og:description\" content=\"For Servers 2019 and Windows 10 Use the Inbuilt Functionality https:\/\/lazyadmin.nl\/it\/windows-laps\/ Download Click here to Download the software Install Install 32bit or 64bit depending on server , install ALL the Management Tools Create a new package and use the LAPS.x64.msi file that we downloaded earlier. Make sure that you add the parameter CUSTOMADMINNAME=LAPSAdmin in your package ,\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2020-04-05T01:34:43+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2025-11-24T23:21:21+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO | Welcome to Pariswells.com\" \/>\n\t\t<meta name=\"twitter:description\" content=\"For Servers 2019 and Windows 10 Use the Inbuilt Functionality https:\/\/lazyadmin.nl\/it\/windows-laps\/ Download Click here to Download the software Install Install 32bit or 64bit depending on server , install ALL the Management Tools Create a new package and use the LAPS.x64.msi file that we downloaded earlier. Make sure that you add the parameter CUSTOMADMINNAME=LAPSAdmin in your package ,\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/how-to-install-and-setup-laps-local-administrator-password-solution#article\",\"name\":\"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO | Welcome to Pariswells.com\",\"headline\":\"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO\",\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/wp-content\\\/uploads\\\/2018\\\/05\\\/img_5b03df9e5977f.png\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/how-to-install-and-setup-laps-local-administrator-password-solution\\\/#articleImage\",\"width\":1576,\"height\":479},\"datePublished\":\"2020-04-05T01:34:43+00:00\",\"dateModified\":\"2025-11-24T23:21:21+00:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/how-to-install-and-setup-laps-local-administrator-password-solution#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/how-to-install-and-setup-laps-local-administrator-password-solution#webpage\"},\"articleSection\":\"Random, Download, install, LAPS, local admin, Local Administrator Password Solution, reset\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/how-to-install-and-setup-laps-local-administrator-password-solution#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/random#listItem\",\"name\":\"Random\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/random#listItem\",\"position\":2,\"name\":\"Random\",\"item\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/random\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/how-to-install-and-setup-laps-local-administrator-password-solution#listItem\",\"name\":\"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/how-to-install-and-setup-laps-local-administrator-password-solution#listItem\",\"position\":3,\"name\":\"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/category\\\/random#listItem\",\"name\":\"Random\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\",\"name\":\"Welcome to Pariswells.com\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris\",\"name\":\"paris\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/how-to-install-and-setup-laps-local-administrator-password-solution#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"paris\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/how-to-install-and-setup-laps-local-administrator-password-solution#webpage\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/how-to-install-and-setup-laps-local-administrator-password-solution\",\"name\":\"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO | Welcome to Pariswells.com\",\"description\":\"For Servers 2019 and Windows 10 Use the Inbuilt Functionality https:\\\/\\\/lazyadmin.nl\\\/it\\\/windows-laps\\\/ Download Click here to Download the software Install Install 32bit or 64bit depending on server , install ALL the Management Tools Create a new package and use the LAPS.x64.msi file that we downloaded earlier. Make sure that you add the parameter CUSTOMADMINNAME=LAPSAdmin in your package ,\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/random\\\/how-to-install-and-setup-laps-local-administrator-password-solution#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/author\\\/paris#author\"},\"datePublished\":\"2020-04-05T01:34:43+00:00\",\"dateModified\":\"2025-11-24T23:21:21+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/\",\"name\":\"Welcome to Pariswells.com\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/pariswells.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO | Welcome to Pariswells.com","description":"For Servers 2019 and Windows 10 Use the Inbuilt Functionality https:\/\/lazyadmin.nl\/it\/windows-laps\/ Download Click here to Download the software Install Install 32bit or 64bit depending on server , install ALL the Management Tools Create a new package and use the LAPS.x64.msi file that we downloaded earlier. Make sure that you add the parameter CUSTOMADMINNAME=LAPSAdmin in your package ,","canonical_url":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution#article","name":"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO | Welcome to Pariswells.com","headline":"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO","author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"https:\/\/pariswells.com\/blog\/wp-content\/uploads\/2018\/05\/img_5b03df9e5977f.png","@id":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution\/#articleImage","width":1576,"height":479},"datePublished":"2020-04-05T01:34:43+00:00","dateModified":"2025-11-24T23:21:21+00:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution#webpage"},"isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution#webpage"},"articleSection":"Random, Download, install, LAPS, local admin, Local Administrator Password Solution, reset"},{"@type":"BreadcrumbList","@id":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/pariswells.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/random#listItem","name":"Random"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/random#listItem","position":2,"name":"Random","item":"https:\/\/pariswells.com\/blog\/category\/random","nextItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution#listItem","name":"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO"},"previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution#listItem","position":3,"name":"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO","previousItem":{"@type":"ListItem","@id":"https:\/\/pariswells.com\/blog\/category\/random#listItem","name":"Random"}}]},{"@type":"Organization","@id":"https:\/\/pariswells.com\/blog\/#organization","name":"Welcome to Pariswells.com","url":"https:\/\/pariswells.com\/blog\/"},{"@type":"Person","@id":"https:\/\/pariswells.com\/blog\/author\/paris#author","url":"https:\/\/pariswells.com\/blog\/author\/paris","name":"paris","image":{"@type":"ImageObject","@id":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/93b8ee3f592ac401167f870452bd82d43de80152cd3524e2853403658ada9984?s=96&d=mm&r=g","width":96,"height":96,"caption":"paris"}},{"@type":"WebPage","@id":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution#webpage","url":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution","name":"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO | Welcome to Pariswells.com","description":"For Servers 2019 and Windows 10 Use the Inbuilt Functionality https:\/\/lazyadmin.nl\/it\/windows-laps\/ Download Click here to Download the software Install Install 32bit or 64bit depending on server , install ALL the Management Tools Create a new package and use the LAPS.x64.msi file that we downloaded earlier. Make sure that you add the parameter CUSTOMADMINNAME=LAPSAdmin in your package ,","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/pariswells.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution#breadcrumblist"},"author":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"creator":{"@id":"https:\/\/pariswells.com\/blog\/author\/paris#author"},"datePublished":"2020-04-05T01:34:43+00:00","dateModified":"2025-11-24T23:21:21+00:00"},{"@type":"WebSite","@id":"https:\/\/pariswells.com\/blog\/#website","url":"https:\/\/pariswells.com\/blog\/","name":"Welcome to Pariswells.com","inLanguage":"en-US","publisher":{"@id":"https:\/\/pariswells.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Welcome to Pariswells.com |","og:type":"article","og:title":"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO | Welcome to Pariswells.com","og:description":"For Servers 2019 and Windows 10 Use the Inbuilt Functionality https:\/\/lazyadmin.nl\/it\/windows-laps\/ Download Click here to Download the software Install Install 32bit or 64bit depending on server , install ALL the Management Tools Create a new package and use the LAPS.x64.msi file that we downloaded earlier. Make sure that you add the parameter CUSTOMADMINNAME=LAPSAdmin in your package ,","og:url":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution","article:published_time":"2020-04-05T01:34:43+00:00","article:modified_time":"2025-11-24T23:21:21+00:00","twitter:card":"summary","twitter:title":"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO | Welcome to Pariswells.com","twitter:description":"For Servers 2019 and Windows 10 Use the Inbuilt Functionality https:\/\/lazyadmin.nl\/it\/windows-laps\/ Download Click here to Download the software Install Install 32bit or 64bit depending on server , install ALL the Management Tools Create a new package and use the LAPS.x64.msi file that we downloaded earlier. Make sure that you add the parameter CUSTOMADMINNAME=LAPSAdmin in your package ,"},"aioseo_meta_data":{"post_id":"3342","title":null,"description":null,"keywords":[],"keyphrases":{"focus":{"keyphrase":"","score":0,"analysis":{"keyphraseInTitle":{"score":0,"maxScore":9,"error":1}}},"additional":[]},"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":null,"og_article_tags":[],"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":"-1","robots_max_videopreview":"-1","robots_max_imagepreview":"large","priority":null,"frequency":"default","location":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 05:35:49","updated":"2024-01-24 23:12:28","primary_term":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/pariswells.com\/blog\/category\/random\" title=\"Random\">Random<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/pariswells.com\/blog"},{"label":"Random","link":"https:\/\/pariswells.com\/blog\/category\/random"},{"label":"How to install and setup LAPS ( Local Administrator Password Solution ) Agent GPO","link":"https:\/\/pariswells.com\/blog\/random\/how-to-install-and-setup-laps-local-administrator-password-solution"}],"_links":{"self":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/3342","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/comments?post=3342"}],"version-history":[{"count":6,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/3342\/revisions"}],"predecessor-version":[{"id":9362,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/posts\/3342\/revisions\/9362"}],"wp:attachment":[{"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/media?parent=3342"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/categories?post=3342"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pariswells.com\/blog\/wp-json\/wp\/v2\/tags?post=3342"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}