{"id":45,"date":"2019-08-06T13:11:49","date_gmt":"2019-08-06T13:11:49","guid":{"rendered":"https:\/\/www.practicalpowershell.com\/post\/powershell-cmdlet-permissions"},"modified":"2020-03-08T06:13:38","modified_gmt":"2020-03-08T06:13:38","slug":"powershell-cmdlet-permissions","status":"publish","type":"post","link":"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/","title":{"rendered":"PowerShell Cmdlet Permissions"},"content":{"rendered":"<p><a href=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/Permission.png?ssl=1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/Permission.png?resize=302%2C124&#038;ssl=1\" alt=\"\" width=\"302\" height=\"124\" class=\"alignleft size-full wp-image-285\" srcset=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/Permission.png?w=302&amp;ssl=1 302w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/Permission.png?resize=300%2C123&amp;ssl=1 300w\" sizes=\"auto, (max-width: 302px) 100vw, 302px\" \/><\/a>When it comes to permissions and PowerShell, one item that is sometimes overlooked is permissions required to run PowerShell cmdlets. Why is this important? There are times where a role assignment might be too restrictive or maybe not restrictive or not. How would we be able to tell? Exchange, Exchange Online, Security and Compliance Center, and other PowerShell modules tend to use RBAC to handle how permissions are governed. RBAC does not tell the whole story as most don&#8217;t dig deeper into the cmdlets to determine what an RBAC role actually gives the permissioned user access too. <\/p>\n<p><strong>Method 1 (Microsoft) &#8211; Preferred <\/strong><br \/>\n<a href=\"https:\/\/docs.microsoft.com\/en-us\/powershell\/exchange\/exchange-server\/find-exchange-cmdlet-permissions?view=exchange-ps\">https:\/\/docs.microsoft.com\/en-us\/powershell\/exchange\/exchange-server\/find-exchange-cmdlet-permissions?view=exchange-ps <\/a><\/p>\n<p>When you research how to find these permissions, this is the recommended method and the most popular search result.  Let&#8217;s quickly run through this method: <\/p>\n<p>First, we need to grab information on the PowerShell cmdlet in question:<br \/>\n[sourcecode language=&#8221;powershell&#8221;]<br \/>\n$Perms = Get-ManagementRole -Cmdlet Set-OrganizationConfig<br \/>\n[\/sourcecode]<br \/>\nNext, we can cycle through each Management role to see the role as well as who has this assigned:<br \/>\n[sourcecode language=&#8221;powershell&#8221;]<br \/>\n$Perms | Foreach {Get-ManagementRoleAssignment -Role $_.Name -Delegating $false | Format-Table -Auto Role,RoleAssigneeType,RoleAssigneeName}<br \/>\n[\/sourcecode]<br \/>\nIf we run the two cmdlets, we can see who has access to this cmdlet:<br \/>\n<a href=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole4.png?ssl=1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole4.png?resize=622%2C836&#038;ssl=1\" alt=\"\" width=\"622\" height=\"836\" class=\"aligncenter size-full wp-image-286\" srcset=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole4.png?w=622&amp;ssl=1 622w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole4.png?resize=223%2C300&amp;ssl=1 223w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole4.png?resize=300%2C403&amp;ssl=1 300w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole4.png?resize=600%2C806&amp;ssl=1 600w\" sizes=\"auto, (max-width: 622px) 100vw, 622px\" \/><\/a><br \/>\nThis is useful if you are unsure what roles have access to a particular cmdlet.  If there are any roles that are not assigned to say the Exchange Admin and a cmdlet fails, this could help identify what group needs to be in place to allow access to the PowerShell cmdlet. <\/p>\n<p>The same method can also dig down into particular parameters within the cmdlet if need be to see if there maybe a hidden or restricted parameter. <\/p>\n<p><strong>Method 2 (Reverse Logic) <\/strong><\/p>\n<p>First, let&#8217;s review a list of Management Roles in Exchange.  Then we will sample one of these roles to see what PowerShell cmdlets can be run.<br \/>\n<a href=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole1.png?ssl=1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole1.png?resize=640%2C414&#038;ssl=1\" alt=\"\" width=\"640\" height=\"414\" class=\"aligncenter size-full wp-image-287\" srcset=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole1.png?w=882&amp;ssl=1 882w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole1.png?resize=300%2C194&amp;ssl=1 300w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole1.png?resize=768%2C496&amp;ssl=1 768w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole1.png?resize=600%2C388&amp;ssl=1 600w\" sizes=\"auto, (max-width: 640px) 100vw, 640px\" \/><\/a><br \/>\nLet&#8217;s to choose from.  However, we only need one to pull an example.  Thus we will pick the &#8216;Mail Tips&#8217; role.<br \/>\n[sourcecode language=&#8221;powershell&#8221;]<br \/>\nGet-ManagementRole &#039;Mail Tips&#039; | fl<br \/>\n[\/sourcecode]<br \/>\n<a href=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole2.png?ssl=1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole2.png?resize=640%2C528&#038;ssl=1\" alt=\"\" width=\"640\" height=\"528\" class=\"aligncenter size-full wp-image-288\" srcset=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole2.png?w=688&amp;ssl=1 688w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole2.png?resize=300%2C248&amp;ssl=1 300w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole2.png?resize=600%2C495&amp;ssl=1 600w\" sizes=\"auto, (max-width: 640px) 100vw, 640px\" \/><\/a><br \/>\n[sourcecode language=&#8221;powershell&#8221;]<br \/>\n$RoleEntries = (Get-ManagementRole &#039;Mail Tips&#039;).RoleEntries Foreach ($RoleEntry in $RoleEntries) { $RoleEntry}<br \/>\n[\/sourcecode]<br \/>\n<a href=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole3.png?ssl=1\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" src=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole3.png?resize=640%2C138&#038;ssl=1\" alt=\"\" width=\"640\" height=\"138\" class=\"aligncenter size-full wp-image-289\" srcset=\"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole3.png?w=1206&amp;ssl=1 1206w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole3.png?resize=300%2C65&amp;ssl=1 300w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole3.png?resize=1024%2C221&amp;ssl=1 1024w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole3.png?resize=768%2C166&amp;ssl=1 768w, https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/ManagementRole3.png?resize=600%2C129&amp;ssl=1 600w\" sizes=\"auto, (max-width: 640px) 100vw, 640px\" \/><\/a><br \/>\nAs we can see, the Mail Tips role has access to 10+ PowerShell cmdlets.  We also see that there is asset of Parameters of those cmdlets that the said role has access to.  This same method can be used on any of the cmdlets in Exchange.  This method is useful if you need to audit what a user has access to in PowerShell while knowing what roles they have assigned. <\/p>\n<p>You should be able to do this in any Exchange workload (office 365 &#8211; Exchange Online, Azure, etc.) as well as any Microsoft product that uses PowerShell and RBAC &#8211; Exchange on-premises,  SharePoint, Active Directory, etc.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When it comes to permissions and PowerShell, one item that is sometimes overlooked is permissions required to run PowerShell cmdlets. Why is this important? There are times where a role assignment might be too restrictive or maybe not restrictive or not. How would we be able to tell? Exchange, Exchange Online, Security and Compliance Center, [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"rop_custom_images_group":[],"rop_custom_messages_group":[],"rop_publish_now":"initial","rop_publish_now_accounts":[],"rop_publish_now_history":[],"rop_publish_now_status":"pending","_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[1],"tags":[],"class_list":["post-45","post","type-post","status-publish","format-standard","hentry","category-uncategorized"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>PowerShell Cmdlet Permissions - Practical PowerShell<\/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:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PowerShell Cmdlet Permissions - Practical PowerShell\" \/>\n<meta property=\"og:description\" content=\"When it comes to permissions and PowerShell, one item that is sometimes overlooked is permissions required to run PowerShell cmdlets. Why is this important? There are times where a role assignment might be too restrictive or maybe not restrictive or not. How would we be able to tell? Exchange, Exchange Online, Security and Compliance Center, [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/\" \/>\n<meta property=\"og:site_name\" content=\"Practical PowerShell\" \/>\n<meta property=\"article:published_time\" content=\"2019-08-06T13:11:49+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-03-08T06:13:38+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/Permission.png\" \/>\n<meta name=\"author\" content=\"damian\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"damian\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/powershell-cmdlet-permissions\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/powershell-cmdlet-permissions\\\/\"},\"author\":{\"name\":\"damian\",\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/#\\\/schema\\\/person\\\/4d0733c81966e744aabbb49f56d64deb\"},\"headline\":\"PowerShell Cmdlet Permissions\",\"datePublished\":\"2019-08-06T13:11:49+00:00\",\"dateModified\":\"2020-03-08T06:13:38+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/powershell-cmdlet-permissions\\\/\"},\"wordCount\":467,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/#\\\/schema\\\/person\\\/4d0733c81966e744aabbb49f56d64deb\"},\"image\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/powershell-cmdlet-permissions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/practicalpowershell.com\\\/wp-content\\\/uploads\\\/2019\\\/08\\\/Permission.png\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/practicalpowershell.com\\\/powershell-cmdlet-permissions\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/powershell-cmdlet-permissions\\\/\",\"url\":\"https:\\\/\\\/practicalpowershell.com\\\/powershell-cmdlet-permissions\\\/\",\"name\":\"PowerShell Cmdlet Permissions - Practical PowerShell\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/powershell-cmdlet-permissions\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/powershell-cmdlet-permissions\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/practicalpowershell.com\\\/wp-content\\\/uploads\\\/2019\\\/08\\\/Permission.png\",\"datePublished\":\"2019-08-06T13:11:49+00:00\",\"dateModified\":\"2020-03-08T06:13:38+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/powershell-cmdlet-permissions\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/practicalpowershell.com\\\/powershell-cmdlet-permissions\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/powershell-cmdlet-permissions\\\/#primaryimage\",\"url\":\"https:\\\/\\\/i0.wp.com\\\/practicalpowershell.com\\\/wp-content\\\/uploads\\\/2019\\\/08\\\/Permission.png?fit=302%2C124&ssl=1\",\"contentUrl\":\"https:\\\/\\\/i0.wp.com\\\/practicalpowershell.com\\\/wp-content\\\/uploads\\\/2019\\\/08\\\/Permission.png?fit=302%2C124&ssl=1\",\"width\":302,\"height\":124},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/powershell-cmdlet-permissions\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/practicalpowershell.com\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PowerShell Cmdlet Permissions\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/#website\",\"url\":\"https:\\\/\\\/practicalpowershell.com\\\/\",\"name\":\"Practical PowerShell\",\"description\":\"PowerShell books written by experts\",\"publisher\":{\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/#\\\/schema\\\/person\\\/4d0733c81966e744aabbb49f56d64deb\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/practicalpowershell.com\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\\\/\\\/practicalpowershell.com\\\/#\\\/schema\\\/person\\\/4d0733c81966e744aabbb49f56d64deb\",\"name\":\"damian\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g\",\"caption\":\"damian\"},\"logo\":{\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PowerShell Cmdlet Permissions - Practical PowerShell","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:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/","og_locale":"en_US","og_type":"article","og_title":"PowerShell Cmdlet Permissions - Practical PowerShell","og_description":"When it comes to permissions and PowerShell, one item that is sometimes overlooked is permissions required to run PowerShell cmdlets. Why is this important? There are times where a role assignment might be too restrictive or maybe not restrictive or not. How would we be able to tell? Exchange, Exchange Online, Security and Compliance Center, [&hellip;]","og_url":"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/","og_site_name":"Practical PowerShell","article_published_time":"2019-08-06T13:11:49+00:00","article_modified_time":"2020-03-08T06:13:38+00:00","og_image":[{"url":"https:\/\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/Permission.png","type":"","width":"","height":""}],"author":"damian","twitter_card":"summary_large_image","twitter_misc":{"Written by":"damian","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/#article","isPartOf":{"@id":"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/"},"author":{"name":"damian","@id":"https:\/\/practicalpowershell.com\/#\/schema\/person\/4d0733c81966e744aabbb49f56d64deb"},"headline":"PowerShell Cmdlet Permissions","datePublished":"2019-08-06T13:11:49+00:00","dateModified":"2020-03-08T06:13:38+00:00","mainEntityOfPage":{"@id":"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/"},"wordCount":467,"commentCount":0,"publisher":{"@id":"https:\/\/practicalpowershell.com\/#\/schema\/person\/4d0733c81966e744aabbb49f56d64deb"},"image":{"@id":"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/#primaryimage"},"thumbnailUrl":"https:\/\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/Permission.png","inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/","url":"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/","name":"PowerShell Cmdlet Permissions - Practical PowerShell","isPartOf":{"@id":"https:\/\/practicalpowershell.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/#primaryimage"},"image":{"@id":"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/#primaryimage"},"thumbnailUrl":"https:\/\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/Permission.png","datePublished":"2019-08-06T13:11:49+00:00","dateModified":"2020-03-08T06:13:38+00:00","breadcrumb":{"@id":"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/#primaryimage","url":"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/Permission.png?fit=302%2C124&ssl=1","contentUrl":"https:\/\/i0.wp.com\/practicalpowershell.com\/wp-content\/uploads\/2019\/08\/Permission.png?fit=302%2C124&ssl=1","width":302,"height":124},{"@type":"BreadcrumbList","@id":"https:\/\/practicalpowershell.com\/powershell-cmdlet-permissions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/practicalpowershell.com\/"},{"@type":"ListItem","position":2,"name":"PowerShell Cmdlet Permissions"}]},{"@type":"WebSite","@id":"https:\/\/practicalpowershell.com\/#website","url":"https:\/\/practicalpowershell.com\/","name":"Practical PowerShell","description":"PowerShell books written by experts","publisher":{"@id":"https:\/\/practicalpowershell.com\/#\/schema\/person\/4d0733c81966e744aabbb49f56d64deb"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/practicalpowershell.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/practicalpowershell.com\/#\/schema\/person\/4d0733c81966e744aabbb49f56d64deb","name":"damian","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g","caption":"damian"},"logo":{"@id":"https:\/\/secure.gravatar.com\/avatar\/d5a8cc64a5aa27558a897b108e3be1a89859511a3fd26176dac292f26e7a4ae4?s=96&d=mm&r=g"}}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/posts\/45","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/comments?post=45"}],"version-history":[{"count":2,"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/posts\/45\/revisions"}],"predecessor-version":[{"id":291,"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/posts\/45\/revisions\/291"}],"wp:attachment":[{"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/media?parent=45"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/categories?post=45"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/practicalpowershell.com\/wp-json\/wp\/v2\/tags?post=45"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}