{"id":4091,"date":"2024-06-28T08:52:53","date_gmt":"2024-06-28T08:52:53","guid":{"rendered":"https:\/\/www.systools.in\/blog\/?p=4091"},"modified":"2024-06-28T08:52:53","modified_gmt":"2024-06-28T08:52:53","slug":"ad-computer-account-password-expiration-date","status":"publish","type":"post","link":"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/","title":{"rendered":"Get AD Computer Account Password Expiration Date With Age Data"},"content":{"rendered":"<p>Knowing the AD computer account password expiration date is of vital importance. Admins must have a solid idea of how often a scheduled machine password change occurs or if it occurs at all.<\/p>\n<div class=\"alert alert-warning\">\n<p>Table of Contents<\/p>\n<ul>\n<li><a href=\"#powershell\">PowerShell Script to See Computer Last Set Date<\/a><\/li>\n<li><a href=\"#traditional\">Use ADAC, ADUC<\/a><\/li>\n<li><a href=\"#tool\">Determine AD Computer Password Age Professionally<\/a><\/li>\n<li><a href=\"#steps\">Automated Steps to Get AD Machine Password Date<\/a><\/li>\n<li><a href=\"#conclusion\">Conclusion<\/a><\/li>\n<\/ul>\n<\/div>\n<p>This is mainly due to the fact that it is a key pillar in maintaining Active Directory security. On top of that, computers are the resource that allows users to perform their duties.<\/p>\n<p>During the user login event, a computer-level verification also happens in the background. So if the DC rejects the computer, it is the users who are stuck and can\u2019t access other AD resources that are on the domain.<\/p>\n<p>Therefore, we use this writeup to guide administrators in determining when exactly a computer password was last set. Let\u2019s start with the scripts.<\/p>\n<h2 id=\"powershell\">How PowerShell Allows Admins to Check Computer Password Last Set Date<\/h2>\n<pre># Define colors\r\n$red = \"Red\"\r\n$yellow = \"Yellow\"\r\n$green = \"Green\"\r\n\r\n# Get the list of computers in the domain\r\n$computers = Get-ADComputer -Filter * -Property Name, PasswordLastSet, PasswordNeverExpires\r\n# Initialize result array\r\n$result = @()\r\n# Process each computer\r\nforeach ($computer in $computers) {\r\n $name = $computer.Name\r\n $passwordNeverExpires = $computer.PasswordNeverExpires\r\n $passwordLastSet = $computer.PasswordLastSet\r\n $daysToExpiry = 0\r\n $status = \"\"\r\n if ($passwordNeverExpires) {\r\n $status = $red\r\n } else {\r\n # Calculate days to password expiry\r\n $maxPasswordAge = (Get-ADDefaultDomainPasswordPolicy).MaxPasswordAge\r\n $expiryDate = $passwordLastSet + $maxPasswordAge\r\n $daysToExpiry = ($expiryDate - (Get-Date)).Days\r\n if ($daysToExpiry -gt 30) {\r\n $status = $yellow\r\n } elseif ($daysToExpiry -le 30 -and $daysToExpiry -ge 0) {\r\n $status = $green\r\n } else {\r\n $status = \"Expired\"\r\n }\r\n }\r\n # Add result to array\r\n $result += [PSCustomObject]@{\r\n ComputerName = $name\r\n DaysToExpiry = $daysToExpiry\r\n Status = $status\r\n }\r\n}\r\n\r\n# Define a function to write colorized output\r\nfunction Write-ColorizedTable {\r\n param (\r\n [Parameter(Mandatory = $true)]\r\n [array]$data\r\n )\r\n\r\n # Print header\r\n Write-Host \"ComputerName\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 DaysToExpiry\u00a0 Status\" -ForegroundColor White\r\n Write-Host \"------------\u00a0 \u00a0 \u00a0 \u00a0 \u00a0 \u00a0 ------------\u00a0 ------\" -ForegroundColor White\r\n # Print each row with respective colors\r\n foreach ($entry in $data) {\r\n $color = $entry.Status\r\n $output = \"{0,-25} {1,-13} {2}\" -f $entry.ComputerName, $entry.DaysToExpiry, $entry.Status\r\n switch ($color) {\r\n \"Red\" { Write-Host $output -ForegroundColor Red }\r\n \"Yellow\" { Write-Host $output -ForegroundColor Yellow }\r\n \"Green\" { Write-Host $output -ForegroundColor Green }\r\n default { Write-Host $output -ForegroundColor Gray }\r\n }\r\n }\r\n}\r\n# Call the function to display the results\r\nWrite-ColorizedTable -data $result<\/pre>\n<p>This script displays a color-coded output of the computer password policy.<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-4094\" src=\"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/06\/password-never-expires-powershell.webp\" alt=\"Password-Expiry-PowerShell\" width=\"751\" height=\"627\" \/><br \/>\nTo export these results out of a view-only state,e you have to change the original script. If code bothers you, then you can very well go for the native script-free solutions on the Active Directory.<\/p>\n<h2 id=\"traditional\">Traditional AD Resouces to View Machine Account Password Age<\/h2>\n<p>ADUC can not only <a class=\"editor-rtfLink\" href=\"https:\/\/www.systools.in\/blog\/how-to-find-computer-ou-in-active-directory\/\" target=\"_blank\" rel=\"noopener\">locate the computer OU<\/a> but also help to check the password expiration date as well:<\/p>\n<ul>\n<li>Launch ADUC instance.<\/li>\n<li>Click View on Main menu Ribbon &gt; Toggle Advanced Features.<\/li>\n<li>Select the Computer object whose Last Password change date you want to see.<\/li>\n<li>Right-click&gt; Properties &gt; Attribute Editor &gt; pwdLastSet.<\/li>\n<\/ul>\n<p>Using Administrative Center<\/p>\n<ul>\n<li>Open ADAC &gt; Click on Global Filter &gt; Use LDAP (objectCategory=computer)<\/li>\n<li>Select the computer object &gt; Go to Extensions&gt; Attribute Editor &gt; pwdLastSet.<\/li>\n<\/ul>\n<p>However, the admin has to repeat these steps for each computer object. Which is too time-consuming so instead they can deploy an automated alternative.<\/p>\n<h3 id=\"tool\">Determine AD computer Account Password Expiration Frequency Professionally<\/h3>\n<p>The <strong>SysTools AD Reporting software<\/strong> is the key to finding the last date on which a machine password change happened. Admins can use the GUI to easily figure out how many computers are still on the default 30-day cycle similar to the one we used to <a class=\"editor-rtfLink\" href=\"https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/\" target=\"_blank\" rel=\"noopener\">find inactive computers in the Active Directory<\/a> setup.<\/p>\n<p>Apart from the password expiry category, the tool also has a password never expires filter. So admins can get the full data with just a few clicks. Every detail is visible within the dashboard, and admins can view and change the machine password policy in real-time.<\/p>\n<p class=\"text-center mr-2\"><a class=\"btn btn-lg btn-md-block text-white\" style=\"background: #28a745; color: #ffffff !important; cursor: text;\" href=\"https:\/\/systoolskart.com\/download\/SYS4A2D6R\/29\" rel=\"nofollow\"> Download Now<\/a> <a class=\"btn btn-lg btn-md-block text-white\" style=\"background: #ff6800; color: #ffffff !important; cursor: text;\" href=\"https:\/\/systoolskart.com\/buy\/SYS4A2D6R\/29\" target=\"_blank\" rel=\"noopener noreferrer nofollow\">Purchase Now<\/a><\/p>\n<p>As the tool can be operated remotely and reflects all changes in real-time, it acts as a useful assistant for administrators who want to determine the frequency of computer account password changes. Next up, we cover the steps that administrators need to perform to make the report.<\/p>\n<h3 id=\"steps\">Procedure to Get Active Directory Machine Account Password Last Set Date Via the Tool<\/h3>\n<p>Step 1. Launch the tool and use the prefilled \u201cadministrator\u201d credentials to log in.<\/p>\n<p>Step 2. Connect the Domain by clicking on the \u201cRegister Domain Controller\u201d button.<\/p>\n<p>Step 3. In the box, type in a Domain Friendly Name and Enter the IP address.<\/p>\n<p>Step 4. Then go to the domain details page &amp; perform the actual admin credential validation.<\/p>\n<p>Step 5. Go to the Report tab Under Computers &gt; Select Password Changed.<\/p>\n<p>Step 6. Add a Date picker to define a timeline from which to pull the data.<\/p>\n<p>Step 7. Click on the Preview button to see the machine password\u2019s last set date.<\/p>\n<p>Step 8. Select &gt; Download &gt; CSV &gt; Choose a location to store the result.<\/p>\n<h3 id=\"conclusion\">Conclusion<\/h3>\n<p>Here we explain the AD computer account password expiration policy and the methods to check the last set date. Although Active Directory provides some methods, like the ADUC snap-in and PowerShell cmdlets, they are often confusing and lack repeatability. As an alternative, we introduced a professional and automated utility that brings out the machine password age in no time.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Knowing the AD computer account password expiration date is of vital importance. Admins must have a solid idea of how often a scheduled machine password change occurs or if it <\/p>\n","protected":false},"author":7,"featured_media":4093,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[361],"class_list":["post-4091","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-active-directory"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Get AD Computer Account Password Expiration Date &amp; Age Data<\/title>\n<meta name=\"description\" content=\"Can\u2019t find the AD computer account password expiration date? Read and learn how to use PowerShell, ADUC, and a professional tool to reveal the age of computer passwords.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"siddharth\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/ad-computer-account-password-expiration-date\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/ad-computer-account-password-expiration-date\\\/\"},\"author\":{\"name\":\"siddharth\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#\\\/schema\\\/person\\\/a719240fe0eff759b37c012b65b0f138\"},\"headline\":\"Get AD Computer Account Password Expiration Date With Age Data\",\"datePublished\":\"2024-06-28T08:52:53+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/ad-computer-account-password-expiration-date\\\/\"},\"wordCount\":684,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/ad-computer-account-password-expiration-date\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/ad-computer-account-password-expiration.webp\",\"articleSection\":[\"Active Directory\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.systools.in\\\/blog\\\/ad-computer-account-password-expiration-date\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/ad-computer-account-password-expiration-date\\\/\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/ad-computer-account-password-expiration-date\\\/\",\"name\":\"Get AD Computer Account Password Expiration Date & Age Data\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/ad-computer-account-password-expiration-date\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/ad-computer-account-password-expiration-date\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/ad-computer-account-password-expiration.webp\",\"datePublished\":\"2024-06-28T08:52:53+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#\\\/schema\\\/person\\\/a719240fe0eff759b37c012b65b0f138\"},\"description\":\"Can\u2019t find the AD computer account password expiration date? Read and learn how to use PowerShell, ADUC, and a professional tool to reveal the age of computer passwords.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/ad-computer-account-password-expiration-date\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.systools.in\\\/blog\\\/ad-computer-account-password-expiration-date\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/ad-computer-account-password-expiration-date\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/ad-computer-account-password-expiration.webp\",\"contentUrl\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/06\\\/ad-computer-account-password-expiration.webp\",\"width\":690,\"height\":388,\"caption\":\"AD computer account password expiration\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/ad-computer-account-password-expiration-date\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Get AD Computer Account Password Expiration Date With Age Data\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/\",\"name\":\"Informative Blogs Related To Technologies &amp; Data Recovery Solutions\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#\\\/schema\\\/person\\\/a719240fe0eff759b37c012b65b0f138\",\"name\":\"siddharth\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/36008fc382c078c0181bbc3f19fd908ee42a71cf3d336b9b2864d3ba99da3786?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/36008fc382c078c0181bbc3f19fd908ee42a71cf3d336b9b2864d3ba99da3786?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/36008fc382c078c0181bbc3f19fd908ee42a71cf3d336b9b2864d3ba99da3786?s=96&d=mm&r=g\",\"caption\":\"siddharth\"},\"description\":\"With years experience in Data Recovery field, I am well aware of the technicalities faced by the user while working on various technologies and applications. I love to sharing technical data through my blogs and articles regarding the technology.\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/author\\\/siddharth\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Get AD Computer Account Password Expiration Date & Age Data","description":"Can\u2019t find the AD computer account password expiration date? Read and learn how to use PowerShell, ADUC, and a professional tool to reveal the age of computer passwords.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/","twitter_misc":{"Written by":"siddharth","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/#article","isPartOf":{"@id":"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/"},"author":{"name":"siddharth","@id":"https:\/\/www.systools.in\/blog\/#\/schema\/person\/a719240fe0eff759b37c012b65b0f138"},"headline":"Get AD Computer Account Password Expiration Date With Age Data","datePublished":"2024-06-28T08:52:53+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/"},"wordCount":684,"commentCount":0,"image":{"@id":"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/06\/ad-computer-account-password-expiration.webp","articleSection":["Active Directory"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/","url":"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/","name":"Get AD Computer Account Password Expiration Date & Age Data","isPartOf":{"@id":"https:\/\/www.systools.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/#primaryimage"},"image":{"@id":"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/06\/ad-computer-account-password-expiration.webp","datePublished":"2024-06-28T08:52:53+00:00","author":{"@id":"https:\/\/www.systools.in\/blog\/#\/schema\/person\/a719240fe0eff759b37c012b65b0f138"},"description":"Can\u2019t find the AD computer account password expiration date? Read and learn how to use PowerShell, ADUC, and a professional tool to reveal the age of computer passwords.","breadcrumb":{"@id":"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/#primaryimage","url":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/06\/ad-computer-account-password-expiration.webp","contentUrl":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/06\/ad-computer-account-password-expiration.webp","width":690,"height":388,"caption":"AD computer account password expiration"},{"@type":"BreadcrumbList","@id":"https:\/\/www.systools.in\/blog\/ad-computer-account-password-expiration-date\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systools.in\/blog\/"},{"@type":"ListItem","position":2,"name":"Get AD Computer Account Password Expiration Date With Age Data"}]},{"@type":"WebSite","@id":"https:\/\/www.systools.in\/blog\/#website","url":"https:\/\/www.systools.in\/blog\/","name":"Informative Blogs Related To Technologies &amp; Data Recovery Solutions","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systools.in\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.systools.in\/blog\/#\/schema\/person\/a719240fe0eff759b37c012b65b0f138","name":"siddharth","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/36008fc382c078c0181bbc3f19fd908ee42a71cf3d336b9b2864d3ba99da3786?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/36008fc382c078c0181bbc3f19fd908ee42a71cf3d336b9b2864d3ba99da3786?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/36008fc382c078c0181bbc3f19fd908ee42a71cf3d336b9b2864d3ba99da3786?s=96&d=mm&r=g","caption":"siddharth"},"description":"With years experience in Data Recovery field, I am well aware of the technicalities faced by the user while working on various technologies and applications. I love to sharing technical data through my blogs and articles regarding the technology.","url":"https:\/\/www.systools.in\/blog\/author\/siddharth\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/posts\/4091","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/users\/7"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/comments?post=4091"}],"version-history":[{"count":0,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/posts\/4091\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/media\/4093"}],"wp:attachment":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/media?parent=4091"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/categories?post=4091"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}