{"id":740,"date":"2013-08-28T13:43:12","date_gmt":"2013-08-28T13:43:12","guid":{"rendered":"http:\/\/collaboriscom.wpengine.com\/?p=740"},"modified":"2022-02-14T14:00:58","modified_gmt":"2022-02-14T14:00:58","slug":"how-to-sync-the-ad-line-manager-to-docread-using-powershell","status":"publish","type":"post","link":"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/","title":{"rendered":"How to sync the AD Line Manager to DocRead using Powershell"},"content":{"rendered":"<p>In DocRead 2.1 (available mid-September) we introduced some new Powershell Cmdlets to help SharePoint Administrators synchronize the &#8216;Manager&#8217; property from Active Directory to the DocRead database.<\/p>\n<p><strong><em>Please note, if you are <u>not<\/u> using SharePoint Foundation, you can ignore this as it&#8217;s very likely that the manager property is already propagated to the SharePoint User Profile using the User Profile Synchronization service.<br \/>\n<\/em><\/strong><br \/>\nAnyway, before showing you how this can be achieved, let&#8217;s spend a few moments explaining why this is needed.<\/p>\n<h2>What are the DocRead Line Manager features?<\/h2>\n<p>New functionality released in\u00a0DocRead 2.0\u00a0allowed Line Managers to:<\/p>\n<ul>\n<li>Get notified (via email) when an employees required reading becomes <strong>overdue<\/strong>(or optionally <strong>assigned<\/strong> and\/or <strong>completed<\/strong>).<\/li>\n<li>View 3 new Reports showing a break down of the status of all their employees required reading progress.<\/li>\n<\/ul>\n<h2>How we implemented the new Line Manager features<\/h2>\n<p>As you may know, for a variety of reasons (such as security, performance and scalability) DocRead has its own database to store information about Reading Tasks, Users, Groups \/ Audiences and Documents. This also offers a massive advantage because it allows a user to see all of their tasks from across the entire farm. This is a big restriction in SharePoint when attempting to display &#8220;cross-site&#8221; content as it can&#8217;t be done easily. With regard to Line Managers, this means they can see all of their employees tasks, regardless of where the original document resides in the Farm.<\/p>\n<p>To offer the new functionality, we needed to store the employee \/ manager relationship within the DocRead database. However, to store it in DocRead we needed to pull the relationship from somewhere&#8230;<\/p>\n<h2>Active Directory also stores Line manager<\/h2>\n<p>In nearly all organizations, Active Directory is the main method used to store the relationship between employee and manager. For example, if you examine a users AD profile, you will notice this field below:<\/p>\n<p><a href=\"\/wp-content\/uploads\/2015\/07\/ad.png\"><img loading=\"lazy\" decoding=\"async\" class=\" size-full wp-image-741 aligncenter\" src=\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2015\/07\/ad.png\" alt=\"ad\" width=\"429\" height=\"549\" srcset=\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2015\/07\/ad.png 429w, https:\/\/www.collaboris.com\/wp-content\/uploads\/2015\/07\/ad-234x300.png 234w\" sizes=\"auto, (max-width: 429px) 100vw, 429px\" \/><\/a><\/p>\n<p>So now we know where it is, how do we get it into DocRead?<\/p>\n<h2>A Note about SharePoint User Profiles<\/h2>\n<p>In all versions of SharePoint (<strong>except Foundation<\/strong>), Microsoft have provided a convenient way to synchronise the user information from Active Directory into something known as the <strong>SharePoint User Profile<\/strong>. So when DocRead needs to know information about the user (such as name, email address etc.), we always get it from the SharePoint User Profile (not Active Directory).<\/p>\n<p>When we implemented the Line Manager functionality in DocRead 2.0 we extracted the &#8216;Manager&#8217; field from the User Profile and used it with DocRead. One reason for using the User Profile (not AD) is because the SharePoint API offers several convenient ways to retrieve the required information. However, the main reason is because some organizations <strong>don&#8217;t<\/strong> use Active Directory at all.<\/p>\n<h2>SharePoint Foundation &#8211; the snag<\/h2>\n<p>As stated above, SharePoint Foundation has no concept of a User Profile, which makes it impossible to offer the functionality to customers using DocRead on SharePoint Foundation (in version 2.0) as there is was no way to retrieve the &#8216;Manager&#8217; field.<\/p>\n<p><em>As side note, as there is no user profile sync in Foundation, this also means that it&#8217;s not possible to update even the basic information (name, email) from AD into the SharePoint user record. However, there are tools out there to help such as the &#8216;SharePoint Foundation Synchronization&#8217; tool on Codeplex. (Big thanks to fellow\u00a0<a href=\"http:\/\/sharepoint-community.net\/page\/sharepoint-community-reps\">SharePoint Community Rep<\/a>, <a href=\"http:\/\/sharepoint-community.net\/profile\/TrevorSeward\" target=\"_blank\" rel=\"noopener\">Trevor Seward<\/a> for that).<br \/>\n<\/em><\/p>\n<h2>Powershell to the rescue!<\/h2>\n<p>So, if we can&#8217;t rely on SharePoint to grab the &#8216;Manager&#8217; from AD how can we achieve the same result? Powershell to the rescue!<\/p>\n<p>Assuming you have installed version DocRead 2.1, you will now have access to 2 new Cmdlets called:<\/p>\n<ul>\n<li><strong>Get-DRUser<\/strong><\/li>\n<li><strong>Set-DRLineManager<\/strong><\/li>\n<\/ul>\n<h3>Get-DRUser<\/h3>\n<p>This Cmdlet is responsible for returning all of the users from the DocRead database. This is very useful if you have a very large AD (many 1000&#8217;s of users) and a smaller number who have reading tasks assigned. It&#8217;s more efficient to loop through the DocRead users than the other way around!<\/p>\n<h3>Set-DRLineManager<\/h3>\n<p>The Set-DRLineManager Cmdlet will update a specified users Line Manager within the DocRead database.<\/p>\n<h2>Putting it all together into a custom script<\/h2>\n<p>You can use these 2 commands with your own Powershell script to query your AD, get users manager and then update DocRead. The script below illustrates how this could be achieved.<\/p>\n<div><a href=\"\/wp-content\/uploads\/2015\/07\/psscript.png\"><img loading=\"lazy\" decoding=\"async\" class=\" size-full wp-image-742 aligncenter\" src=\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2015\/07\/psscript.png\" alt=\"psscript\" width=\"1138\" height=\"409\" srcset=\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2015\/07\/psscript.png 1138w, https:\/\/www.collaboris.com\/wp-content\/uploads\/2015\/07\/psscript-300x108.png 300w, https:\/\/www.collaboris.com\/wp-content\/uploads\/2015\/07\/psscript-1024x368.png 1024w, https:\/\/www.collaboris.com\/wp-content\/uploads\/2015\/07\/psscript-1080x388.png 1080w\" sizes=\"auto, (max-width: 1138px) 100vw, 1138px\" \/><\/a><\/div>\n<div><\/div>\n<div>(click to view larger)<\/div>\n<div><\/div>\n<h2>One last note on permissions<\/h2>\n<p>To use the new Powershell cmdlets you will need to &#8216;<strong>run as<\/strong>&#8216; a user who has been granted the <strong>SPShellAccess DB Role<\/strong>. (This can be achieved using &#8216;<a href=\"http:\/\/technet.microsoft.com\/en-us\/library\/ff607596.aspx\" target=\"_blank\" rel=\"noopener\">Add-SPShellAdmin<\/a>&#8216;).<\/p>\n<p>In addition to this, you will also need to add the user into the &#8216;Powershell User Accounts&#8217; section in Central Admin. (see below).<\/p>\n<div>\n<p><a href=\"\/wp-content\/uploads\/2015\/07\/powershell.png\"><img loading=\"lazy\" decoding=\"async\" class=\" size-full wp-image-743 aligncenter\" src=\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2015\/07\/powershell.png\" alt=\"powershell\" width=\"913\" height=\"410\" srcset=\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2015\/07\/powershell.png 913w, https:\/\/www.collaboris.com\/wp-content\/uploads\/2015\/07\/powershell-300x135.png 300w\" sizes=\"auto, (max-width: 913px) 100vw, 913px\" \/><\/a><\/p>\n<p>That&#8217;s it! Good luck with getting this all setup and let us know how it goes!<\/p>\n<\/div>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In DocRead 2.1 (available mid-September) we introduced some new Powershell Cmdlets to help SharePoint Administrators synchronize the &#8216;Manager&#8217; property from Active Directory to the DocRead database. Please note, if you are not using SharePoint Foundation, you can ignore this as it&#8217;s very likely that the manager property is already propagated to the SharePoint User Profile [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":2108,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_lmt_disableupdate":"no","_lmt_disable":"","footnotes":""},"categories":[23,10],"tags":[],"class_list":["post-740","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-docread-kb","category-knowledgebase"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v25.9 (Yoast SEO v26.6) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Sync the AD Line Manager using Powershell - Collaboris<\/title>\n<meta name=\"description\" content=\"These Powershell Cmdlets will help SharePoint Administrators synchronize the \u2018Manager\u2019 property from Active Directory to the DocRead database.\" \/>\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.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to sync the AD Line Manager to DocRead using Powershell\" \/>\n<meta property=\"og:description\" content=\"These Powershell Cmdlets will help SharePoint Administrators synchronize the \u2018Manager\u2019 property from Active Directory to the DocRead database.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/\" \/>\n<meta property=\"og:site_name\" content=\"Collaboris\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Collaboris\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-08-28T13:43:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-02-14T14:00:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png\" \/>\n\t<meta property=\"og:image:width\" content=\"820\" \/>\n\t<meta property=\"og:image:height\" content=\"300\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Hugo Esperanca\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Collaboris\" \/>\n<meta name=\"twitter:site\" content=\"@Collaboris\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Hugo Esperanca\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/\"},\"author\":{\"name\":\"Hugo Esperanca\",\"@id\":\"https:\/\/www.collaboris.com\/#\/schema\/person\/f870363212c9f9d0c02bcd8b0bb84f81\"},\"headline\":\"How to sync the AD Line Manager to DocRead using Powershell\",\"datePublished\":\"2013-08-28T13:43:12+00:00\",\"dateModified\":\"2022-02-14T14:00:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/\"},\"wordCount\":796,\"publisher\":{\"@id\":\"https:\/\/www.collaboris.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png\",\"articleSection\":[\"DocRead Kb\",\"Knowledgebase\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/\",\"url\":\"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/\",\"name\":\"Sync the AD Line Manager using Powershell - Collaboris\",\"isPartOf\":{\"@id\":\"https:\/\/www.collaboris.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png\",\"datePublished\":\"2013-08-28T13:43:12+00:00\",\"dateModified\":\"2022-02-14T14:00:58+00:00\",\"description\":\"These Powershell Cmdlets will help SharePoint Administrators synchronize the \u2018Manager\u2019 property from Active Directory to the DocRead database.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#primaryimage\",\"url\":\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png\",\"contentUrl\":\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png\",\"width\":820,\"height\":300},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.collaboris.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to sync the AD Line Manager to DocRead using Powershell\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.collaboris.com\/#website\",\"url\":\"https:\/\/www.collaboris.com\/\",\"name\":\"Collaboris\",\"description\":\"We make compliance simple\",\"publisher\":{\"@id\":\"https:\/\/www.collaboris.com\/#organization\"},\"alternateName\":\"DocRead\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.collaboris.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.collaboris.com\/#organization\",\"name\":\"Collaboris\",\"alternateName\":\"DocRead\",\"url\":\"https:\/\/www.collaboris.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.collaboris.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2021\/05\/collaboris_logo_small.png\",\"contentUrl\":\"https:\/\/www.collaboris.com\/wp-content\/uploads\/2021\/05\/collaboris_logo_small.png\",\"width\":150,\"height\":40,\"caption\":\"Collaboris\"},\"image\":{\"@id\":\"https:\/\/www.collaboris.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/Collaboris\/\",\"https:\/\/x.com\/Collaboris\",\"https:\/\/www.linkedin.com\/company\/collaboris\"],\"description\":\"Collaboris is a Software company that created a policy management tool called DocRead.\",\"email\":\"info@collaboris.com\",\"telephone\":\"02079935140\",\"legalName\":\"Collaboris Ltd\",\"foundingDate\":\"2007-12-03\",\"vatID\":\"GB928895360\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1\",\"maxValue\":\"10\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.collaboris.com\/#\/schema\/person\/f870363212c9f9d0c02bcd8b0bb84f81\",\"name\":\"Hugo Esperanca\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/www.collaboris.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a476a96fe969976019d0f40d6b8910365b29f8d1fa4e352ddd61afe518a981b8?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a476a96fe969976019d0f40d6b8910365b29f8d1fa4e352ddd61afe518a981b8?s=96&d=mm&r=g\",\"caption\":\"Hugo Esperanca\"},\"url\":\"https:\/\/www.collaboris.com\/author\/hugo\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Sync the AD Line Manager using Powershell - Collaboris","description":"These Powershell Cmdlets will help SharePoint Administrators synchronize the \u2018Manager\u2019 property from Active Directory to the DocRead database.","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.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/","og_locale":"en_GB","og_type":"article","og_title":"How to sync the AD Line Manager to DocRead using Powershell","og_description":"These Powershell Cmdlets will help SharePoint Administrators synchronize the \u2018Manager\u2019 property from Active Directory to the DocRead database.","og_url":"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/","og_site_name":"Collaboris","article_publisher":"https:\/\/www.facebook.com\/Collaboris\/","article_published_time":"2013-08-28T13:43:12+00:00","article_modified_time":"2022-02-14T14:00:58+00:00","og_image":[{"width":820,"height":300,"url":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png","type":"image\/png"}],"author":"Hugo Esperanca","twitter_card":"summary_large_image","twitter_creator":"@Collaboris","twitter_site":"@Collaboris","twitter_misc":{"Written by":"Hugo Esperanca","Estimated reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#article","isPartOf":{"@id":"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/"},"author":{"name":"Hugo Esperanca","@id":"https:\/\/www.collaboris.com\/#\/schema\/person\/f870363212c9f9d0c02bcd8b0bb84f81"},"headline":"How to sync the AD Line Manager to DocRead using Powershell","datePublished":"2013-08-28T13:43:12+00:00","dateModified":"2022-02-14T14:00:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/"},"wordCount":796,"publisher":{"@id":"https:\/\/www.collaboris.com\/#organization"},"image":{"@id":"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png","articleSection":["DocRead Kb","Knowledgebase"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/","url":"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/","name":"Sync the AD Line Manager using Powershell - Collaboris","isPartOf":{"@id":"https:\/\/www.collaboris.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#primaryimage"},"image":{"@id":"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png","datePublished":"2013-08-28T13:43:12+00:00","dateModified":"2022-02-14T14:00:58+00:00","description":"These Powershell Cmdlets will help SharePoint Administrators synchronize the \u2018Manager\u2019 property from Active Directory to the DocRead database.","breadcrumb":{"@id":"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#primaryimage","url":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png","contentUrl":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2016\/07\/blue_820x300_docread_img.png","width":820,"height":300},{"@type":"BreadcrumbList","@id":"https:\/\/www.collaboris.com\/how-to-sync-the-ad-line-manager-to-docread-using-powershell\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.collaboris.com\/"},{"@type":"ListItem","position":2,"name":"How to sync the AD Line Manager to DocRead using Powershell"}]},{"@type":"WebSite","@id":"https:\/\/www.collaboris.com\/#website","url":"https:\/\/www.collaboris.com\/","name":"Collaboris","description":"We make compliance simple","publisher":{"@id":"https:\/\/www.collaboris.com\/#organization"},"alternateName":"DocRead","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.collaboris.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/www.collaboris.com\/#organization","name":"Collaboris","alternateName":"DocRead","url":"https:\/\/www.collaboris.com\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.collaboris.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2021\/05\/collaboris_logo_small.png","contentUrl":"https:\/\/www.collaboris.com\/wp-content\/uploads\/2021\/05\/collaboris_logo_small.png","width":150,"height":40,"caption":"Collaboris"},"image":{"@id":"https:\/\/www.collaboris.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/Collaboris\/","https:\/\/x.com\/Collaboris","https:\/\/www.linkedin.com\/company\/collaboris"],"description":"Collaboris is a Software company that created a policy management tool called DocRead.","email":"info@collaboris.com","telephone":"02079935140","legalName":"Collaboris Ltd","foundingDate":"2007-12-03","vatID":"GB928895360","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1","maxValue":"10"}},{"@type":"Person","@id":"https:\/\/www.collaboris.com\/#\/schema\/person\/f870363212c9f9d0c02bcd8b0bb84f81","name":"Hugo Esperanca","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/www.collaboris.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a476a96fe969976019d0f40d6b8910365b29f8d1fa4e352ddd61afe518a981b8?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a476a96fe969976019d0f40d6b8910365b29f8d1fa4e352ddd61afe518a981b8?s=96&d=mm&r=g","caption":"Hugo Esperanca"},"url":"https:\/\/www.collaboris.com\/author\/hugo\/"}]}},"modified_by":"Helen Jones","_links":{"self":[{"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/posts\/740","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/comments?post=740"}],"version-history":[{"count":2,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/posts\/740\/revisions"}],"predecessor-version":[{"id":1370518,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/posts\/740\/revisions\/1370518"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/media\/2108"}],"wp:attachment":[{"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/media?parent=740"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/categories?post=740"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.collaboris.com\/wp-json\/wp\/v2\/tags?post=740"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}