{"id":13242,"date":"2025-07-07T10:10:00","date_gmt":"2025-07-07T09:10:00","guid":{"rendered":"https:\/\/winandoffice.de\/?p=13242"},"modified":"2025-07-02T11:25:42","modified_gmt":"2025-07-02T10:25:42","slug":"how-to-automate-admin-tasks-with-powershell-in-windows-server-2022","status":"publish","type":"post","link":"https:\/\/winandoffice.de\/en\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\/","title":{"rendered":"How to Automate Admin Tasks with PowerShell in Windows Server 2022"},"content":{"rendered":"<p>Managing a Windows Server 2022 environment can be time-consuming\u2014especially when you\u2019re repeating the same administrative tasks daily. What if you could automate routine processes like user creation, backups, service monitoring, and system updates? That\u2019s where PowerShell automation comes in.<\/p>\n\n\n\n<p>This guide explains how to automate admin tasks using PowerShell in Windows Server 2022, helping you save time, reduce errors, and increase operational efficiency.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Why use PowerShell for Windows Server 2022 automation?<\/strong><\/h2>\n\n\n\n<p>Windows Server 2022 includes robust PowerShell scripting capabilities that allow administrators to manage local and remote servers with precision. PowerShell provides access to the full power of .NET, WMI, and built-in cmdlets that are tailored for system administration.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Key Benefits of PowerShell Automation:<\/strong><\/h3>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Saves time by automating repetitive tasks<br><\/li>\n\n\n\n<li>Reduces human error in server management<br><\/li>\n\n\n\n<li>Enables centralized remote administration<br><\/li>\n\n\n\n<li>Integrates with third-party tools and APIs<br><\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Getting Started with PowerShell on Windows Server 2022<\/strong><\/h2>\n\n\n\n<p>Before diving into scripting, ensure PowerShell is properly configured on your server:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Launch PowerShell as Administrator<\/strong><\/h3>\n\n\n\n<p>Right-click the <strong>Start menu<\/strong> \u2192 Select <strong>Windows PowerShell (Admin)<\/strong><\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Verify the PowerShell version<\/strong><\/h3>\n\n\n\n<p>Use the following command:<\/p>\n\n\n\n<p>$PSVersionTable.PSVersion<\/p>\n\n\n\n<p>You should be running at least <strong>PowerShell 5.1<\/strong> or <strong>PowerShell 7+ (PowerShell Core)<\/strong> for advanced automation.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Top PowerShell Automation Scripts for Administrators<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>1. Automate user account creation<\/strong><\/h3>\n\n\n\n<p>Create multiple Active Directory users from a CSV file:<\/p>\n\n\n\n<p>Import-Csv users.csv | ForEach-Object {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;New-ADUser -Name $_.Name -SamAccountName $_.Username -UserPrincipalName $_.UPN -AccountPassword (ConvertTo-SecureString $_.Password -AsPlainText -Force) -Enabled $true<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>2. Monitor and restart Windows services<\/strong><\/h3>\n\n\n\n<p>Automatically restart a failed service:<\/p>\n\n\n\n<p>$service = Get-Service -Name \u201eSpooler\u201c<\/p>\n\n\n\n<p>if ($service.Status -ne \u201eRunning\u201c) {<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;Restart service name \u201eSpooler\u201c<\/p>\n\n\n\n<p>}<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>3. Schedule regular backups<\/strong><\/h3>\n\n\n\n<p>Use Task Scheduler and PowerShell together:<\/p>\n\n\n\n<p>Register-ScheduledTask -Action (New-ScheduledTaskAction -Execute \u201ePowerShell.exe\u201c -Argument \u201e-File C:\\Scripts\\backup.ps1\u201c) -Trigger (New-ScheduledTaskTrigger -Daily -At 2am) -TaskName \u201eDailyBackup\u201c<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>4. Generate system health reports<\/strong><\/h3>\n\n\n\n<p>Get-ComputerInfo | Out-File -FilePath \u201eC:\\Reports\\SystemReport.txt\u201c<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Best Practices for PowerShell Scripting in Server 2022<\/strong><\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Use verbose logging:<\/strong> Add Write-Verbose to help debug scripts.<br><\/li>\n\n\n\n<li><strong>Incorporate error handling:<\/strong> Use Try\u2026Catch blocks to manage failures.<br><\/li>\n\n\n\n<li><strong>Use comments liberally:<\/strong> Explain each step for future troubleshooting.<br><\/li>\n\n\n\n<li><strong>Secure Credentials:<\/strong> Avoid hardcoding passwords\u2014use the Get-Credential cmdlet.<br><\/li>\n<\/ul>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions Answered<\/strong><\/h2>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>What tasks can I automate with PowerShell in Windows Server 2022?<\/strong><\/h3>\n\n\n\n<p>Almost any admin task\u2014user management, scheduled tasks, backups, service monitoring, updates, file management, and more.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Do I need to know programming to use PowerShell?<\/strong><\/h3>\n\n\n\n<p>No formal programming experience is required. PowerShell uses a scripting language that is easy to learn with simple cmdlet structures.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\"><strong>Can PowerShell manage remote servers?<\/strong><\/h3>\n\n\n\n<p>Yes. You can use PowerShell Remoting (Enter-PSSession, Invoke-Command) to manage multiple servers from a single console.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<p><strong>Conclusion<\/strong><\/p>\n\n\n\n<p>PowerShell is an essential tool for any Windows Server 2022 administrator looking to automate repetitive tasks and optimize system management. Whether you\u2019re managing a single server or an entire data center, scripting with PowerShell can drastically improve your productivity and reduce risks.<\/p>\n\n\n\n<p>For more such practical and time-saving Windows Server tips, visit<a href=\"https:\/\/winandoffice.de\/en\/\"> <strong>winandoffice.com<\/strong><\/a>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\" \/>\n\n\n\n<h2 class=\"wp-block-heading\"><strong>Frequently Asked Questions<\/strong><\/h2>\n\n\n\n<p><strong>Q1: Is PowerShell pre-installed on Windows Server 2022?<\/strong><strong><br><\/strong> Yes, Windows PowerShell 5.1 comes pre-installed. You can also install PowerShell 7 (PowerShell Core) for cross-platform support.<\/p>\n\n\n\n<p><strong>Q2: How do I schedule a PowerShell script in Windows Server 2022?<br><\/strong> Use Task Scheduler with a basic or advanced trigger, pointing to the PowerShell executable and your script path.<\/p>\n\n\n\n<p><strong>Q3: Can PowerShell scripts be run remotely and securely?<br><\/strong> Yes, using PowerShell Remoting with authentication protocols such as Kerberos and SSL certificates, you can run scripts securely across multiple servers.<\/p>","protected":false},"excerpt":{"rendered":"<p>Managing a Windows Server 2022 environment can be time-consuming\u2014especially when you&#8217;re repeating the same administrative tasks daily. What if you could automate routine processes like user creation, backups, service monitoring, and system updates? That\u2019s where PowerShell automation comes in. This guide explains how to automate admin tasks using PowerShell in&hellip; <\/p>","protected":false},"author":1817,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-13242","post","type-post","status-publish","format-standard","hentry","category-default"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to Automate Admin Tasks with PowerShell in Windows Server 2022 - Win &amp; Office<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/winandoffice.de\/en\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Automate Admin Tasks with PowerShell in Windows Server 2022 - Win &amp; Office\" \/>\n<meta property=\"og:description\" content=\"Managing a Windows Server 2022 environment can be time-consuming\u2014especially when you&#8217;re repeating the same administrative tasks daily. What if you could automate routine processes like user creation, backups, service monitoring, and system updates? That\u2019s where PowerShell automation comes in. This guide explains how to automate admin tasks using PowerShell in&hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/winandoffice.de\/en\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\/\" \/>\n<meta property=\"og:site_name\" content=\"Win &amp; Office\" \/>\n<meta property=\"article:published_time\" content=\"2025-07-07T09:10:00+00:00\" \/>\n<meta name=\"author\" content=\"pushkar\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"pushkar\" \/>\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:\\\/\\\/winandoffice.de\\\/en\\\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/winandoffice.de\\\/en\\\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\\\/\"},\"author\":{\"name\":\"pushkar\",\"@id\":\"https:\\\/\\\/winandoffice.de\\\/#\\\/schema\\\/person\\\/c3090de2ef3d984eabbfbecb74790906\"},\"headline\":\"How to Automate Admin Tasks with PowerShell in Windows Server 2022\",\"datePublished\":\"2025-07-07T09:10:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/winandoffice.de\\\/en\\\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\\\/\"},\"wordCount\":565,\"publisher\":{\"@id\":\"https:\\\/\\\/winandoffice.de\\\/#organization\"},\"articleSection\":[\"default\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/winandoffice.de\\\/en\\\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\\\/\",\"url\":\"https:\\\/\\\/winandoffice.de\\\/en\\\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\\\/\",\"name\":\"How to Automate Admin Tasks with PowerShell in Windows Server 2022 - Win &amp; Office\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/winandoffice.de\\\/#website\"},\"datePublished\":\"2025-07-07T09:10:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/winandoffice.de\\\/en\\\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/winandoffice.de\\\/en\\\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/winandoffice.de\\\/en\\\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/winandoffice.de\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Automate Admin Tasks with PowerShell in Windows Server 2022\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/winandoffice.de\\\/#website\",\"url\":\"https:\\\/\\\/winandoffice.de\\\/\",\"name\":\"Win & Office\",\"description\":\"Shop Win &amp; Office\",\"publisher\":{\"@id\":\"https:\\\/\\\/winandoffice.de\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/winandoffice.de\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/winandoffice.de\\\/#organization\",\"name\":\"Win & Office\",\"url\":\"https:\\\/\\\/winandoffice.de\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/winandoffice.de\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/winandoffice.de\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/winandoffice-logo-windows-microsoft-software-1.png\",\"contentUrl\":\"https:\\\/\\\/winandoffice.de\\\/wp-content\\\/uploads\\\/2020\\\/12\\\/winandoffice-logo-windows-microsoft-software-1.png\",\"width\":318,\"height\":86,\"caption\":\"Win & Office\"},\"image\":{\"@id\":\"https:\\\/\\\/winandoffice.de\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/winandoffice.de\\\/#\\\/schema\\\/person\\\/c3090de2ef3d984eabbfbecb74790906\",\"name\":\"pushkar\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b9c200a342a909cc91092dac06b219a5b7f384f014dc6fa7e1859dca7c984ba6?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b9c200a342a909cc91092dac06b219a5b7f384f014dc6fa7e1859dca7c984ba6?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/b9c200a342a909cc91092dac06b219a5b7f384f014dc6fa7e1859dca7c984ba6?s=96&d=mm&r=g\",\"caption\":\"pushkar\"},\"url\":\"https:\\\/\\\/winandoffice.de\\\/en\\\/author\\\/pushkar\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Automate Admin Tasks with PowerShell in Windows Server 2022 - Win &amp; Office","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:\/\/winandoffice.de\/en\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\/","og_locale":"en_US","og_type":"article","og_title":"How to Automate Admin Tasks with PowerShell in Windows Server 2022 - Win &amp; Office","og_description":"Managing a Windows Server 2022 environment can be time-consuming\u2014especially when you&#8217;re repeating the same administrative tasks daily. What if you could automate routine processes like user creation, backups, service monitoring, and system updates? That\u2019s where PowerShell automation comes in. This guide explains how to automate admin tasks using PowerShell in&hellip;","og_url":"https:\/\/winandoffice.de\/en\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\/","og_site_name":"Win &amp; Office","article_published_time":"2025-07-07T09:10:00+00:00","author":"pushkar","twitter_card":"summary_large_image","twitter_misc":{"Written by":"pushkar","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/winandoffice.de\/en\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\/#article","isPartOf":{"@id":"https:\/\/winandoffice.de\/en\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\/"},"author":{"name":"pushkar","@id":"https:\/\/winandoffice.de\/#\/schema\/person\/c3090de2ef3d984eabbfbecb74790906"},"headline":"How to Automate Admin Tasks with PowerShell in Windows Server 2022","datePublished":"2025-07-07T09:10:00+00:00","mainEntityOfPage":{"@id":"https:\/\/winandoffice.de\/en\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\/"},"wordCount":565,"publisher":{"@id":"https:\/\/winandoffice.de\/#organization"},"articleSection":["default"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/winandoffice.de\/en\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\/","url":"https:\/\/winandoffice.de\/en\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\/","name":"How to Automate Admin Tasks with PowerShell in Windows Server 2022 - Win &amp; Office","isPartOf":{"@id":"https:\/\/winandoffice.de\/#website"},"datePublished":"2025-07-07T09:10:00+00:00","breadcrumb":{"@id":"https:\/\/winandoffice.de\/en\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/winandoffice.de\/en\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/winandoffice.de\/en\/how-to-automate-admin-tasks-with-powershell-in-windows-server-2022\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/winandoffice.de\/en\/"},{"@type":"ListItem","position":2,"name":"How to Automate Admin Tasks with PowerShell in Windows Server 2022"}]},{"@type":"WebSite","@id":"https:\/\/winandoffice.de\/#website","url":"https:\/\/winandoffice.de\/","name":"Win &amp; Office","description":"Shop Win &amp; Office","publisher":{"@id":"https:\/\/winandoffice.de\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/winandoffice.de\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/winandoffice.de\/#organization","name":"Win &amp; Office","url":"https:\/\/winandoffice.de\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/winandoffice.de\/#\/schema\/logo\/image\/","url":"https:\/\/winandoffice.de\/wp-content\/uploads\/2020\/12\/winandoffice-logo-windows-microsoft-software-1.png","contentUrl":"https:\/\/winandoffice.de\/wp-content\/uploads\/2020\/12\/winandoffice-logo-windows-microsoft-software-1.png","width":318,"height":86,"caption":"Win & Office"},"image":{"@id":"https:\/\/winandoffice.de\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/winandoffice.de\/#\/schema\/person\/c3090de2ef3d984eabbfbecb74790906","name":"pushkar","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/b9c200a342a909cc91092dac06b219a5b7f384f014dc6fa7e1859dca7c984ba6?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/b9c200a342a909cc91092dac06b219a5b7f384f014dc6fa7e1859dca7c984ba6?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b9c200a342a909cc91092dac06b219a5b7f384f014dc6fa7e1859dca7c984ba6?s=96&d=mm&r=g","caption":"pushkar"},"url":"https:\/\/winandoffice.de\/en\/author\/pushkar\/"}]}},"acf":[],"_links":{"self":[{"href":"https:\/\/winandoffice.de\/en\/wp-json\/wp\/v2\/posts\/13242","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/winandoffice.de\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/winandoffice.de\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/winandoffice.de\/en\/wp-json\/wp\/v2\/users\/1817"}],"replies":[{"embeddable":true,"href":"https:\/\/winandoffice.de\/en\/wp-json\/wp\/v2\/comments?post=13242"}],"version-history":[{"count":0,"href":"https:\/\/winandoffice.de\/en\/wp-json\/wp\/v2\/posts\/13242\/revisions"}],"wp:attachment":[{"href":"https:\/\/winandoffice.de\/en\/wp-json\/wp\/v2\/media?parent=13242"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/winandoffice.de\/en\/wp-json\/wp\/v2\/categories?post=13242"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/winandoffice.de\/en\/wp-json\/wp\/v2\/tags?post=13242"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}