{"id":3819,"date":"2024-05-20T10:04:51","date_gmt":"2024-05-20T10:04:51","guid":{"rendered":"https:\/\/www.systools.in\/blog\/?p=3819"},"modified":"2024-05-20T10:05:29","modified_gmt":"2024-05-20T10:05:29","slug":"find-inactive-computers-in-active-directory","status":"publish","type":"post","link":"https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/","title":{"rendered":"Find Inactive Computers in Active Directory in 5+ Manners"},"content":{"rendered":"<p>Computer activity monitoring is one of the core tasks of the administrator handling the AD for an organization. So if they don&#8217;t know how to find inactive computers in Active Directory, they will not be able to fulfill their duties. Moreover, unknown old computers on a network may allow backdoor entry for nefarious entities. Thereby posing a critical security risk. Not to mention, organizations may want to cut operating costs.<\/p>\n<p>For that, a good way to start is to get rid of infrastructure like stale machines that are no longer operational. So, we present this writeup that contains multiple methods to detect the workstations on which users have not logged in for a while. It is a good practice to include the stale computer check in the <a href=\"https:\/\/www.systools.in\/blog\/complete-ad-migration-checklist\/\" target=\"_blank\" rel=\"noopener\">AD migration checklist<\/a>. Let us start with a familiar method also used to find what OU a user is in.<\/p>\n<div class=\"alert alert-warning\">\n<p><strong>Table of Content<\/strong><\/p>\n<ul>\n<li><a href=\"#inactive\"><strong>Look for Inactive Computers in AD<\/strong><\/a><\/li>\n<li><a href=\"#scripts\"><strong>List of Computers that Users Have not Logged In With Scripts<\/strong><\/a><\/li>\n<li><a href=\"#tool\"><strong>Find Stale Computers Using Tool<\/strong><\/a><\/li>\n<li><a href=\"#steps\"><strong>Working Steps<\/strong><\/a><\/li>\n<li><a href=\"#conclusion\"><strong>Conclusion<\/strong><\/a><\/li>\n<\/ul>\n<\/div>\n<h2 id=\"inactive\">Traditional Means to Look for Inactive Computers in AD<\/h2>\n<p>The most basic method is to use ADUC<\/p>\n<ul>\n<li>Open Active Directory Users and Computers portal<\/li>\n<li>Click on the View tab and toggle Advanced Features<\/li>\n<li>Go to the Computer whose Activity you want to view right click and select Properties.<\/li>\n<li>Inside the Properties tab, tap on the Attribute Editor tab and search for lastlogon.<\/li>\n<li>Click on it to edit and copy the Value present.<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3823\" src=\"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/05\/inactive-computer-aduc.png\" alt=\"find inactive computers in Active Directory with ADUC\" width=\"595\" height=\"696\" \/><\/p>\n<p>If your organization&#8217;s AD does not have the ADUC snap-in installed, don&#8217;t worry. Another similar tool that admins have at their disposal is the <b>Active Directory Admin Center<\/b>. To use it follow the instructions as stated.<\/p>\n<ul>\n<li>Launch ADAC<\/li>\n<li>Use the global search and look for the computer whose login dates are in question.<\/li>\n<li>Select the correct search result object<\/li>\n<li>Click on the Extention Tab from the left side pane<\/li>\n<li>Select Attribute Editor option<\/li>\n<li>Scroll till you see the lastLogon time classification<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3824\" src=\"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/05\/inactive-computer-adac.png\" alt=\"find inactive computers in Active Directory with ADAC\" width=\"954\" height=\"617\" \/><\/p>\n<p>Both ADAC and ADUC share a similar set of limitations. Starting from a confusing structure. Despite being GUI, the continuous change in the dashboard combined with an indirect search option makes it tough for even veteran admins to search for what they want.<\/p>\n<p><b>Use Event Viewer\u00a0<\/b><\/p>\n<p>These are a list of audit logs that contain the user login and logout times among other data. Here, admins can view and match the computer to see when it was last used. Let us see how to use it.<\/p>\n<ul>\n<li>Open Event Viewer<\/li>\n<li>Expand the Windows Logs tab from the Left side pane<\/li>\n<li>Choose Security option<\/li>\n<li>Look at the latest logs.<\/li>\n<\/ul>\n<p>Although it can be used to determine inactive computers, it is not an efficient way. Logs can have thousands of entries that admins have to go through one by one. Although the data can be exported, it still needs to be cleaned and edited to become presentable. Moreover, admins might see an empty audit log if the data has been cleared recently.<\/p>\n<p>We have some scripts that admins can check out to see if this fulfills their requirements.<\/p>\n<h2 id=\"scripts\">Use Code to Make a List of Computers that Users Have not Logged In<\/h2>\n<p><b>Use PowerShell<\/b><\/p>\n<p>To view the Computer login time:<\/p>\n<pre>Get-ADComputer -Filter * -Properties * | FT Name, Lastlogondate<\/pre>\n<p>The blank space under Lastlogondate indicates that the computer has never been used since its creation. The no password scenario also means that admins have to <a href=\"https:\/\/www.systools.in\/blog\/rethinking-admt-password-migration\/\" target=\"_blank\" rel=\"noopener\">rethink ADMT password migration<\/a> scenarios.<\/p>\n<p>To get this list in CSV format, make the following changes to the cmdlet<\/p>\n<pre>Get-ADComputer -Filter * -Properties * Name, Lastlogondate | Export-CSV \u201cC:\\Users\\admin\\Desktop\\Old-Computers.CSV\u201d<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3820\" src=\"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/05\/inactive-computer-pwrshl.png\" alt=\"find inactive computers in Active Directory powershell\" width=\"859\" height=\"194\" \/><\/p>\n<p><b>Use Cmd<\/b><\/p>\n<p>The following command line query can give you the required data. However, the catch is that it presents the date in a illegible format. Admins have to convert the default Date file integer into its datetime equivalent.<\/p>\n<pre>dsquery * domainroot -filter \"(objectCategory=Computer)\" -attr distinguishedName sAMAccountName lastLogon<\/pre>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter wp-image-3821 size-full\" src=\"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/05\/inactive-computer-cmd-e1716198165208.png\" alt=\"find inactive computers in Active Directory commandline\" width=\"769\" height=\"198\" \/><\/p>\n<p>Scripts are not foolproof and considering that Active Directory updates in real-time any error or intrusion via the commands can be falsely registered as a logon attempt. Thus making the data garbage. However, we saved the best for last, admins can use the professional utility to get the report they are looking for.<\/p>\n<h3 id=\"tool\">Automated Way to Find Stale Computers in Active Directory<\/h3>\n<p>The easiest way to beat the generic ADUC and skip over confusing PowerShell scripts is to use <b>SysTools Active Directory Reporting Software<\/b>. With a dedicated category selection screen, administrators can segregate the inactive computers from the rest. Which is quite effective in shortening the duration of <a href=\"https:\/\/www.systools.in\/blog\/migrate-users-and-computers-from-one-forest-to-another\/\" target=\"_blank\" rel=\"noopener\">migrating users and computers from one forest to another<\/a>.<\/p>\n<p class=\"text-center mr-2\"><a class=\"btn btn-lg btn-md-block text-white\" style=\"background: #28a745; color: #fff !important;\" 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: #fff !important;\" href=\"https:\/\/systoolskart.com\/buy\/SYS4A2D6R\/29\" target=\"_blank\" rel=\"noopener noreferrer nofollow\">Purchase Now<\/a><\/p>\n<p>Moreover, the date picker menu allows the admin to choose the time frame from which they want the data. The tool has a built-in preview screen with adjustable viewing formats. This can be used to get a glimpse at computers that have not logged in for a while before the export itself. All this is possible by just following a small series of steps.<\/p>\n<h3 id=\"steps\">Steps to Follow to Check Stale Computers in an AD<\/h3>\n<p>Step 1. Open the tool and wait for the default credentials (administrator) to fill up automatically, then log in.<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/systoolskart.com\/imgp\/ad-reporter\/step-1.webp\" alt=\"Login to the Tool\" width=\"900\" height=\"482\" \/><\/p>\n<p>Step 2. Click on the \u201cREGISTER DOMAIN CONTROLLER\u201d button appearing in the middle of your screen.<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/systoolskart.com\/imgp\/ad-reporter\/step-6.webp\" alt=\"click on Register Domain Controller button\" width=\"900\" height=\"482\" \/><\/p>\n<p>Step 3. Type the Domain Friendly Name you want to use, and fill in the IP Address to find inactive computers in Active Directory.<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/systoolskart.com\/imgp\/ad-reporter\/step-8.webp\" alt=\"Type Domain Friendly Name and IP Address\" width=\"900\" height=\"482\" \/><\/p>\n<p>Step 4. Inside the Domain Details Page, use your admin ID and password to validate.<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/systoolskart.com\/imgp\/ad-reporter\/step-10.webp\" alt=\"Credential validation\" width=\"900\" height=\"482\" \/><\/p>\n<p>Step 5. Go to the reports section and choose the Active Computers category under the computer workload.<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"alignnone\" src=\"https:\/\/systoolskart.com\/imgp\/ad-reporter\/step-11-2.gif\" alt=\"Report tab multiple options\" width=\"1316\" height=\"740\" \/><\/p>\n<p>Step 6. Use the duration picker to set a custom date range or pick a preset time interval from 5 days all the way up to 1 year.<br \/>\n<img decoding=\"async\" src=\"https:\/\/systoolskart.com\/imgp\/ad-reporter\/step-12-6.webp\" alt=\"preset time intervals\" \/><\/p>\n<p>Step 7. Press the Preview button to generate a list of computers that have not logged in. You can identify them by the value of the Status column.<br \/>\n<img decoding=\"async\" src=\"https:\/\/systoolskart.com\/imgp\/ad-reporter\/step-18.webp\" alt=\"Preview\" \/><\/p>\n<p>Step 8. Click on Download, and select the CSV option.<br \/>\n<img decoding=\"async\" src=\"https:\/\/systoolskart.com\/imgp\/ad-reporter\/step-19.webp\" alt=\"Download CSV\" \/><\/p>\n<h3 id=\"conclusion\">Conclusion<\/h3>\n<p>We now hope that users can find inactive computers in Active Directory without much effort. In this write-up, we gave administrators multiple methods to list down old machines and workstations that included everything from ADUC, and ADAC portals to script-based PowerShell and Command line methods. Moreover, those who feel the traditional methods are inefficient can rely on the tool discussed earlier. Admins can use the software to speed up the task and list all computers that have not logged in for a set number of days.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Computer activity monitoring is one of the core tasks of the administrator handling the AD for an organization. So if they don&#8217;t know how to find inactive computers in Active <\/p>\n","protected":false},"author":6,"featured_media":3822,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[361],"class_list":["post-3819","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.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Find Inactive Computers in Active Directory With Multiple Methods<\/title>\n<meta name=\"description\" content=\"Want to find inactive computers in Active Directory but don&#039;t know how? Use the guide and list all computers that have not been logged in by any user.\" \/>\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\/find-inactive-computers-in-active-directory\/\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Raj Kumar\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/find-inactive-computers-in-active-directory\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/find-inactive-computers-in-active-directory\\\/\"},\"author\":{\"name\":\"Raj Kumar\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#\\\/schema\\\/person\\\/38995c504e8e559d45dd2c8b2bba176b\"},\"headline\":\"Find Inactive Computers in Active Directory in 5+ Manners\",\"datePublished\":\"2024-05-20T10:04:51+00:00\",\"dateModified\":\"2024-05-20T10:05:29+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/find-inactive-computers-in-active-directory\\\/\"},\"wordCount\":1059,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/find-inactive-computers-in-active-directory\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/find-inactive-computers-in-ad.webp\",\"articleSection\":[\"Active Directory\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.systools.in\\\/blog\\\/find-inactive-computers-in-active-directory\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/find-inactive-computers-in-active-directory\\\/\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/find-inactive-computers-in-active-directory\\\/\",\"name\":\"Find Inactive Computers in Active Directory With Multiple Methods\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/find-inactive-computers-in-active-directory\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/find-inactive-computers-in-active-directory\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/find-inactive-computers-in-ad.webp\",\"datePublished\":\"2024-05-20T10:04:51+00:00\",\"dateModified\":\"2024-05-20T10:05:29+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/#\\\/schema\\\/person\\\/38995c504e8e559d45dd2c8b2bba176b\"},\"description\":\"Want to find inactive computers in Active Directory but don't know how? Use the guide and list all computers that have not been logged in by any user.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/find-inactive-computers-in-active-directory\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.systools.in\\\/blog\\\/find-inactive-computers-in-active-directory\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/find-inactive-computers-in-active-directory\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/find-inactive-computers-in-ad.webp\",\"contentUrl\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/05\\\/find-inactive-computers-in-ad.webp\",\"width\":792,\"height\":446,\"caption\":\"find inactive computers in Active Directory\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/find-inactive-computers-in-active-directory\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Find Inactive Computers in Active Directory in 5+ Manners\"}]},{\"@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\\\/38995c504e8e559d45dd2c8b2bba176b\",\"name\":\"Raj Kumar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g\",\"caption\":\"Raj Kumar\"},\"description\":\"A dynamic writer with extensive knowledge of technology aids in closing the gap between the user and technology. Provides simple and dependable solutions to a variety of technical challenges that customers face on a daily basis.\",\"url\":\"https:\\\/\\\/www.systools.in\\\/blog\\\/author\\\/raj\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Find Inactive Computers in Active Directory With Multiple Methods","description":"Want to find inactive computers in Active Directory but don't know how? Use the guide and list all computers that have not been logged in by any user.","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\/find-inactive-computers-in-active-directory\/","twitter_misc":{"Written by":"Raj Kumar","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/#article","isPartOf":{"@id":"https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/"},"author":{"name":"Raj Kumar","@id":"https:\/\/www.systools.in\/blog\/#\/schema\/person\/38995c504e8e559d45dd2c8b2bba176b"},"headline":"Find Inactive Computers in Active Directory in 5+ Manners","datePublished":"2024-05-20T10:04:51+00:00","dateModified":"2024-05-20T10:05:29+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/"},"wordCount":1059,"commentCount":0,"image":{"@id":"https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/05\/find-inactive-computers-in-ad.webp","articleSection":["Active Directory"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/","url":"https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/","name":"Find Inactive Computers in Active Directory With Multiple Methods","isPartOf":{"@id":"https:\/\/www.systools.in\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/#primaryimage"},"image":{"@id":"https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/05\/find-inactive-computers-in-ad.webp","datePublished":"2024-05-20T10:04:51+00:00","dateModified":"2024-05-20T10:05:29+00:00","author":{"@id":"https:\/\/www.systools.in\/blog\/#\/schema\/person\/38995c504e8e559d45dd2c8b2bba176b"},"description":"Want to find inactive computers in Active Directory but don't know how? Use the guide and list all computers that have not been logged in by any user.","breadcrumb":{"@id":"https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/#primaryimage","url":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/05\/find-inactive-computers-in-ad.webp","contentUrl":"https:\/\/www.systools.in\/blog\/wp-content\/uploads\/2024\/05\/find-inactive-computers-in-ad.webp","width":792,"height":446,"caption":"find inactive computers in Active Directory"},{"@type":"BreadcrumbList","@id":"https:\/\/www.systools.in\/blog\/find-inactive-computers-in-active-directory\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systools.in\/blog\/"},{"@type":"ListItem","position":2,"name":"Find Inactive Computers in Active Directory in 5+ Manners"}]},{"@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\/38995c504e8e559d45dd2c8b2bba176b","name":"Raj Kumar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/39e1c57ad79e81fd7edc787ba298cbd8e96458e624c52e7a35bac32d1b3063f0?s=96&d=mm&r=g","caption":"Raj Kumar"},"description":"A dynamic writer with extensive knowledge of technology aids in closing the gap between the user and technology. Provides simple and dependable solutions to a variety of technical challenges that customers face on a daily basis.","url":"https:\/\/www.systools.in\/blog\/author\/raj\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/posts\/3819","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\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/comments?post=3819"}],"version-history":[{"count":0,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/posts\/3819\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/media\/3822"}],"wp:attachment":[{"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/media?parent=3819"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systools.in\/blog\/wp-json\/wp\/v2\/categories?post=3819"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}