{"id":33669,"date":"2022-04-27T10:13:27","date_gmt":"2022-04-27T15:13:27","guid":{"rendered":"https:\/\/www.filecloud.com\/blog\/?p=33669"},"modified":"2022-09-11T02:44:30","modified_gmt":"2022-09-11T07:44:30","slug":"import-users-to-ad-via-powershell","status":"publish","type":"post","link":"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/","title":{"rendered":"Import Users to AD via PowerShell"},"content":{"rendered":"<p><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-full wp-image-33682\" src=\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-Banner.png\" alt=\"\" width=\"2560\" height=\"1440\" srcset=\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-Banner.png 2560w, https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-Banner-300x169.png 300w, https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-Banner-1024x576.png 1024w, https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-Banner-768x432.png 768w, https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-Banner-1536x864.png 1536w, https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-Banner-2048x1152.png 2048w\" sizes=\"(max-width: 2560px) 100vw, 2560px\"><\/p>\n<p>Integrating FileCloud with your existing Active Directory (AD) can make setup much easier, faster, and secure. Users don\u2019t need to worry about creating new accounts or credentials, and IT admins can efficiently manage assets across networks and monitor security.<\/p>\n<p>Maybe you\u2019re ready to go with FileCloud, but you don\u2019t have an Active Directory set up yet. If your user base is large enough, if you have certain security thresholds, or if your organization uses a wide variety of applications, it makes sense to establish your AD first. Then you will have a single database to manage user access across your network.<\/p>\n<p>Here we describe how to import users into an AD using PowerShell:<\/p>\n<div id=\"ez-toc-container\" class=\"ez-toc-v2_0_63 counter-hierarchy ez-toc-counter ez-toc-custom ez-toc-container-direction\">\n<div class=\"ez-toc-title-container\">\n<p class=\"ez-toc-title \" >Table of Contents<\/p>\n<span class=\"ez-toc-title-toggle\"><\/span><\/div>\n<nav><ul class='ez-toc-list ez-toc-list-level-1 ' ><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-1\" href=\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#Single_User_Import\" title=\"Single User Import\">Single User Import<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-2\" href=\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#Bulk_User_Import\" title=\"Bulk User Import\">Bulk User Import<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-3\" href=\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#Power_Shell_Script\" title=\"Power Shell Script\">Power Shell Script<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-4\" href=\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#Executing_the_Script\" title=\"Executing the Script\">Executing the Script<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-5\" href=\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#Other_Useful_Commands\" title=\"Other Useful Commands\">Other Useful Commands<\/a><\/li><li class='ez-toc-page-1 ez-toc-heading-level-2'><a class=\"ez-toc-link ez-toc-heading-6\" href=\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#Conclusion\" title=\"Conclusion\">Conclusion<\/a><\/li><\/ul><\/nav><\/div>\n<h2><span class=\"ez-toc-section\" id=\"Single_User_Import\"><\/span>Single User Import<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>SamAccountName : \u00a0jdoe2<\/p>\n<p>Name: \u00a0John2 Doe<\/p>\n<p>DisplayName: \u00a0John2 Doe<\/p>\n<p>Surname: \u00a0john2<\/p>\n<p>GivenName: \u00a0John2<\/p>\n<p>Email: \u00a0<a href=\"mailto:fc@company.ur1\">fc@company.ur1<\/a><\/p>\n<p>UserPrincipalName: \u00a0john2@ns.fctestin.com<\/p>\n<p>Password:<strong> \u00a0<\/strong>test@1234562<\/p>\n<p>To import a user with the above details to the AD, the below command can be used.<\/p>\n<pre>New-ADUser -PassThru -Path OU=Users,OU=US,DC=ns,DC=fctestin,DC=com -AccountPassword (ConvertTo-SecureString test@1234562 -AsPlainText -Force) -CannotChangePassword $False -DisplayName \"John2 Doe\" -GivenName John2 -Name \"John2 Doe\" -SamAccountName jdoe2 -Surname john2 -email fc@company.ur1 -UserPrincipalName john2@ns.fctestin.com<\/pre>\n<h2><span class=\"ez-toc-section\" id=\"Bulk_User_Import\"><\/span>Bulk User Import<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>To bulk import users, you must first add those users and some detail to a CSV file. \u00a0Then use a PowerShell script to read those values from the CSV file and import them to AD.<\/p>\n<p>Add user details to a CSV file as shown in the screenshot below:<\/p>\n<p><strong><u><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter size-full wp-image-33670\" src=\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD.png\" alt=\"\" width=\"2142\" height=\"609\" srcset=\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD.png 2142w, https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-300x85.png 300w, https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-1024x291.png 1024w, https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-768x218.png 768w, https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-1536x437.png 1536w, https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-2048x582.png 2048w\" sizes=\"(max-width: 2142px) 100vw, 2142px\"><br \/>\n<\/u><\/strong><u><\/u><\/p>\n<h2><span class=\"ez-toc-section\" id=\"Power_Shell_Script\"><\/span>Power Shell Script<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>In the script below, values from the CSV file are assigned to variables. We then use these variables in the New-ADUser command to import each user.<\/p>\n<pre>Import-Module ActiveDirectory\r\n\r\n$Domain=\"@ns.fctestin.com\"\r\n\r\n$NewUsersList=Import-CSV \"aduser.csv\"\r\n\r\nForEach ($User in $NewUsersList) {\r\n\r\n$fullname=$User.FullName\r\n\r\n$givenname=$User.givenName\r\n\r\n$samaccountname=$User.sAMAccountName\r\n\r\n$sn=$User.sn\r\n\r\n$userprincipalname=$User.sAMAccountName+$Domain\r\n\r\n$useremail=$User.email\r\n\r\nNew-ADUser -PassThru -Path \"OU=Users,OU=US,DC=ns,DC=fctestin,DC=com\" -AccountPassword (ConvertTo-SecureString test@1234562 -AsPlainText -Force) -CannotChangePassword $False -DisplayName $fullname -GivenName $givenname -Name $fullname -SamAccountName $samaccountname -Surname $sn -email $useremail -UserPrincipalName $userprincipalname\r\n\r\n}<\/pre>\n<p>NOTE: In that CSV file, you can add more columns like Company, Department, telephone number, etc. You can then assign values to those variables that can be used with the New-ADUser command.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Executing_the_Script\"><\/span>Executing the Script<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<ul>\n<li>Save the script into a notepad and save it as \u201cAD import.ps1\u201d<\/li>\n<li>Open the PowerShell and change the directory to the location of the script and execute the below command:<\/li>\n<\/ul>\n<pre>&amp; '.\\AD import.ps1' -delimiter \",\"<\/pre>\n<p>Here, the delimiter is given as a comma. If you open the CSV file in notepad++, you can see that fields will be separated by commas.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Other_Useful_Commands\"><\/span>Other Useful Commands<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<ol>\n<li>To get the total number of users in a group:<\/li>\n<\/ol>\n<pre>(Get-ADGroup \"Test import\" -Properties *).Member.Count<\/pre>\n<p>Here, <em>Test import<\/em> is the group name. If the group name has a space in between, it should be enclosed in quotes.<\/p>\n<ol start=\"2\">\n<li>To add all users from an OU to a group<\/li>\n<\/ol>\n<pre>Get-ADUser -SearchBase ` OU=Users,OU=US,DC=ns,DC=fctestin,DC=com ' -Filter * | ForEach-Object {Add-ADGroupMember -Identity `Test import' -Members $_ }<\/pre>\n<p>Here, <em>Test import<\/em> is the group name. If the group name has a space in between, it should be enclosed in quotes.<\/p>\n<h2><span class=\"ez-toc-section\" id=\"Conclusion\"><\/span>Conclusion<span class=\"ez-toc-section-end\"><\/span><\/h2>\n<p>Now that you have an AD set up, you can explore all the exciting integrations and security benefits For more information on how you can integrate FileCloud within your existing IT infrastructure, check out FileCloud\u2019s <a href=\"https:\/\/www.filecloud.com\/third-party-integration\/\">Extensibility<\/a>. You can also reach out to the Support Team through your Admin dashboard or explore other tools and features in <a href=\"https:\/\/www.filecloud.com\/filecloud-university\/\">FileCloud University<\/a>.<\/p>\n<p>\u00a0<\/p>\n<p><strong>Article written by Sanu Varkey<\/strong><\/p>\n<p>\u00a0<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Integrating FileCloud with your existing Active Directory (AD) can make setup much easier, faster, and secure. Users don\u2019t need to worry about creating new accounts or credentials, and IT admins can efficiently manage assets across networks and monitor security. Maybe you\u2019re ready to go with FileCloud, but you don\u2019t have an Active Directory set up [&hellip;]<\/p>\n","protected":false},"author":31,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[18,20],"tags":[1769,1767,806,1768],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.13 (Yoast SEO v20.13) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Import Users to AD via PowerShell - FileCloud blog<\/title>\n<meta name=\"description\" content=\"Import users to your Active Directory using these simple, step-by-step instructions from FileCloud Engineer, Sanu Varkey.\" \/>\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.filecloud.com\/blog\/import-users-to-ad-via-powershell\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Import Users to AD via PowerShell\" \/>\n<meta property=\"og:description\" content=\"Import users to your Active Directory using these simple, step-by-step instructions from FileCloud Engineer, Sanu Varkey.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/\" \/>\n<meta property=\"og:site_name\" content=\"FileCloud blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/tonidopage\" \/>\n<meta property=\"article:published_time\" content=\"2022-04-27T15:13:27+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-11T07:44:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-Banner.png\" \/>\n<meta name=\"author\" content=\"Katie Gerhardt\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@getfilecloud\" \/>\n<meta name=\"twitter:site\" content=\"@getfilecloud\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Katie Gerhardt\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/\"},\"author\":{\"name\":\"Katie Gerhardt\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/#\/schema\/person\/ea3506ea3e9eb7bb2036e6c7c8fc05ea\"},\"headline\":\"Import Users to AD via PowerShell\",\"datePublished\":\"2022-04-27T15:13:27+00:00\",\"dateModified\":\"2022-09-11T07:44:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/\"},\"wordCount\":471,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/#organization\"},\"keywords\":[\"Active Directory\",\"AD\",\"PowerShell\",\"User Integration\"],\"articleSection\":[\"Admin Tools and Tips\",\"FileCloud\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/\",\"url\":\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/\",\"name\":\"Import Users to AD via PowerShell - FileCloud blog\",\"isPartOf\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/#website\"},\"datePublished\":\"2022-04-27T15:13:27+00:00\",\"dateModified\":\"2022-09-11T07:44:30+00:00\",\"description\":\"Import users to your Active Directory using these simple, step-by-step instructions from FileCloud Engineer, Sanu Varkey.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.filecloud.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Import Users to AD via PowerShell\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/#website\",\"url\":\"https:\/\/www.filecloud.com\/blog\/\",\"name\":\"FileCloud blog\",\"description\":\"Topics on Private cloud, On-Premises, Self-Hosted, Enterprise File Sync and Sharing\",\"publisher\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.filecloud.com\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/#organization\",\"name\":\"FileCloud\",\"url\":\"https:\/\/www.filecloud.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/02\/filecloud_logo_comparison.jpg\",\"contentUrl\":\"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/02\/filecloud_logo_comparison.jpg\",\"width\":155,\"height\":40,\"caption\":\"FileCloud\"},\"image\":{\"@id\":\"https:\/\/www.filecloud.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/tonidopage\",\"https:\/\/twitter.com\/getfilecloud\",\"https:\/\/www.linkedin.com\/company\/codelathe\",\"https:\/\/www.pinterest.com\/filecloud\/filecloud\/\",\"https:\/\/www.youtube.com\/channel\/UCbU5gTFdNCPESA5aGipFW6g\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/#\/schema\/person\/ea3506ea3e9eb7bb2036e6c7c8fc05ea\",\"name\":\"Katie Gerhardt\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.filecloud.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/07bbf4097008eebfdc680520a6973c6e?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/07bbf4097008eebfdc680520a6973c6e?s=96&d=mm&r=g\",\"caption\":\"Katie Gerhardt\"},\"description\":\"Product Marketing Manager\",\"sameAs\":[\"1\",\"https:\/\/www.linkedin.com\/in\/katie-gerhardt-88541791\/\"],\"url\":\"https:\/\/www.filecloud.com\/blog\/author\/katie\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Import Users to AD via PowerShell - FileCloud blog","description":"Import users to your Active Directory using these simple, step-by-step instructions from FileCloud Engineer, Sanu Varkey.","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.filecloud.com\/blog\/import-users-to-ad-via-powershell\/","og_locale":"en_US","og_type":"article","og_title":"Import Users to AD via PowerShell","og_description":"Import users to your Active Directory using these simple, step-by-step instructions from FileCloud Engineer, Sanu Varkey.","og_url":"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/","og_site_name":"FileCloud blog","article_publisher":"https:\/\/www.facebook.com\/tonidopage","article_published_time":"2022-04-27T15:13:27+00:00","article_modified_time":"2022-09-11T07:44:30+00:00","og_image":[{"url":"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2022\/04\/Import-Users-to-AD-Banner.png"}],"author":"Katie Gerhardt","twitter_card":"summary_large_image","twitter_creator":"@getfilecloud","twitter_site":"@getfilecloud","twitter_misc":{"Written by":"Katie Gerhardt","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#article","isPartOf":{"@id":"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/"},"author":{"name":"Katie Gerhardt","@id":"https:\/\/www.filecloud.com\/blog\/#\/schema\/person\/ea3506ea3e9eb7bb2036e6c7c8fc05ea"},"headline":"Import Users to AD via PowerShell","datePublished":"2022-04-27T15:13:27+00:00","dateModified":"2022-09-11T07:44:30+00:00","mainEntityOfPage":{"@id":"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/"},"wordCount":471,"commentCount":0,"publisher":{"@id":"https:\/\/www.filecloud.com\/blog\/#organization"},"keywords":["Active Directory","AD","PowerShell","User Integration"],"articleSection":["Admin Tools and Tips","FileCloud"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/","url":"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/","name":"Import Users to AD via PowerShell - FileCloud blog","isPartOf":{"@id":"https:\/\/www.filecloud.com\/blog\/#website"},"datePublished":"2022-04-27T15:13:27+00:00","dateModified":"2022-09-11T07:44:30+00:00","description":"Import users to your Active Directory using these simple, step-by-step instructions from FileCloud Engineer, Sanu Varkey.","breadcrumb":{"@id":"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.filecloud.com\/blog\/import-users-to-ad-via-powershell\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.filecloud.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Import Users to AD via PowerShell"}]},{"@type":"WebSite","@id":"https:\/\/www.filecloud.com\/blog\/#website","url":"https:\/\/www.filecloud.com\/blog\/","name":"FileCloud blog","description":"Topics on Private cloud, On-Premises, Self-Hosted, Enterprise File Sync and Sharing","publisher":{"@id":"https:\/\/www.filecloud.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.filecloud.com\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.filecloud.com\/blog\/#organization","name":"FileCloud","url":"https:\/\/www.filecloud.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.filecloud.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/02\/filecloud_logo_comparison.jpg","contentUrl":"https:\/\/www.filecloud.com\/blog\/wp-content\/uploads\/2016\/02\/filecloud_logo_comparison.jpg","width":155,"height":40,"caption":"FileCloud"},"image":{"@id":"https:\/\/www.filecloud.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/tonidopage","https:\/\/twitter.com\/getfilecloud","https:\/\/www.linkedin.com\/company\/codelathe","https:\/\/www.pinterest.com\/filecloud\/filecloud\/","https:\/\/www.youtube.com\/channel\/UCbU5gTFdNCPESA5aGipFW6g"]},{"@type":"Person","@id":"https:\/\/www.filecloud.com\/blog\/#\/schema\/person\/ea3506ea3e9eb7bb2036e6c7c8fc05ea","name":"Katie Gerhardt","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.filecloud.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/07bbf4097008eebfdc680520a6973c6e?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/07bbf4097008eebfdc680520a6973c6e?s=96&d=mm&r=g","caption":"Katie Gerhardt"},"description":"Product Marketing Manager","sameAs":["1","https:\/\/www.linkedin.com\/in\/katie-gerhardt-88541791\/"],"url":"https:\/\/www.filecloud.com\/blog\/author\/katie\/"}]}},"_links":{"self":[{"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/posts\/33669"}],"collection":[{"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/users\/31"}],"replies":[{"embeddable":true,"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/comments?post=33669"}],"version-history":[{"count":5,"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/posts\/33669\/revisions"}],"predecessor-version":[{"id":34408,"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/posts\/33669\/revisions\/34408"}],"wp:attachment":[{"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/media?parent=33669"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/categories?post=33669"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.filecloud.com\/blog\/wp-json\/wp\/v2\/tags?post=33669"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}