{"id":10053,"date":"2025-08-15T07:11:59","date_gmt":"2025-08-15T07:11:59","guid":{"rendered":"https:\/\/savethevideo.net\/blog\/?p=10053"},"modified":"2025-08-15T07:13:48","modified_gmt":"2025-08-15T07:13:48","slug":"change-registry-permissions-with-powershell-full-tutorial","status":"publish","type":"post","link":"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/","title":{"rendered":"Change Registry Permissions With PowerShell (Full Tutorial)"},"content":{"rendered":"<p>Modifying Windows Registry permissions is a task that should be approached with care and precision. The Windows Registry is a critical database for the system configuration, and improper changes can lead to serious security risks or system instability. Fortunately, <i>PowerShell<\/i> provides a powerful and scriptable way to view and manage registry permissions safely. In this tutorial, we will walk you through a complete, step-by-step guide on how to change registry permissions using PowerShell.<\/p>\n<h2>Why Use PowerShell for Registry Permissions?<\/h2>\n<p>PowerShell is a preferred tool for system administrators thanks to its capability to automate complex tasks and its deep integration with Windows. When it comes to managing permissions on registry keys, PowerShell lets you:<\/p>\n<ul>\n<li>View current Access Control Lists (ACLs)<\/li>\n<li>Modify user or group permissions<\/li>\n<li>Automate scripts for permission changes across multiple machines<\/li>\n<li>Maintain a detailed audit trail of changes<\/li>\n<\/ul>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"720\" src=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1.jpg 1080w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1-300x200.jpg 300w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1-1024x683.jpg 1024w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/a-computer-screen-with-a-bunch-of-lines-on-it-powershell-comments-code-example-scripting-1-768x512.jpg 768w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n<h2>Understanding Registry Key Permissions<\/h2>\n<p>Each registry key has security descriptors that include ACLs. These define which users or groups can read, write, or modify keys and values. Permissions can include:<\/p>\n<ul>\n<li><b>ReadKey<\/b> &#8211; View the key&#8217;s contents.<\/li>\n<li><b>WriteKey<\/b> &#8211; Write new values to the key.<\/li>\n<li><b>FullControl<\/b> &#8211; Complete access to read, write, or delete.<\/li>\n<\/ul>\n<p>Before modifying permissions, it&#8217;s vital to back up the registry key being changed or create a system restore point.<\/p>\n<h2>Viewing Current Permissions<\/h2>\n<p>You can view the current ACLs for a registry key using PowerShell:<\/p>\n<pre><code>$key = 'HKLM:\\SOFTWARE\\MyApp'\n(Get-Acl -Path $key).Access<\/code><\/pre>\n<p>This command will display the current access rules for the specified key, making it easier to know what permissions are already in place before modification.<\/p>\n<h2>Changing Permissions Step-by-Step<\/h2>\n<h3>Step 1: Set the Registry Path<\/h3>\n<p>First, identify the registry key you want to modify:<\/p>\n<pre><code>$regKeyPath = 'HKLM:\\SOFTWARE\\MyApp'<\/code><\/pre>\n<h3>Step 2: Define the New Permission Rule<\/h3>\n<p>You will need to define the new permission using an instance of <i>System.Security.AccessControl.RegistryAccessRule<\/i>:<\/p>\n<pre><code>$user = 'DOMAIN\\UserName'\n$rights = [System.Security.AccessControl.RegistryRights]::FullControl\n$inherit = [System.Security.AccessControl.InheritanceFlags]::None\n$propagation = [System.Security.AccessControl.PropagationFlags]::None\n$type = [System.Security.AccessControl.AccessControlType]::Allow\n\n$rule = New-Object System.Security.AccessControl.RegistryAccessRule($user, $rights, $inherit, $propagation, $type)<\/code><\/pre>\n<h3>Step 3: Apply the New Permission<\/h3>\n<p>Now you can retrieve the current ACL, add the new rule, and apply it:<\/p>\n<pre><code>$acl = Get-Acl -Path $regKeyPath\n$acl.SetAccessRule($rule)\nSet-Acl -Path $regKeyPath -AclObject $acl<\/code><\/pre>\n<img loading=\"lazy\" decoding=\"async\" width=\"1080\" height=\"720\" src=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/turned-on-macbook-air-displaying-coding-application-powershell-scripting-best-practices-documentation.jpg\" class=\"attachment-full size-full\" alt=\"\" srcset=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/turned-on-macbook-air-displaying-coding-application-powershell-scripting-best-practices-documentation.jpg 1080w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/turned-on-macbook-air-displaying-coding-application-powershell-scripting-best-practices-documentation-300x200.jpg 300w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/turned-on-macbook-air-displaying-coding-application-powershell-scripting-best-practices-documentation-1024x683.jpg 1024w, https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/turned-on-macbook-air-displaying-coding-application-powershell-scripting-best-practices-documentation-768x512.jpg 768w\" sizes=\"auto, (max-width: 1080px) 100vw, 1080px\" \/>\n<p>After running these commands, the specified user or group will have the configured permission for the registry key. Always verify the change using the <code>Get-Acl<\/code> command.<\/p>\n<h2>Best Practices and Caution<\/h2>\n<p>Registry permission changes are delicate operations. Adhere to the following best practices:<\/p>\n<ul>\n<li><b>Backup First:<\/b> Use <code>reg export<\/code> to backup the key or create a restore point.<\/li>\n<li><b>Scope User Rights:<\/b> Grant only the necessary permissions. Avoid using <i>FullControl<\/i> unless required.<\/li>\n<li><b>Test on Non-Production Machines:<\/b> Always test scripts on staging systems before deploying to production.<\/li>\n<li><b>Avoid Wildcard Scripting Across Registry:<\/b> Target specific keys to avoid unwanted changes.<\/li>\n<\/ul>\n<h2>Use PowerShell Responsibly<\/h2>\n<p>PowerShell grants enormous capabilities over your Windows environment, but that power must be tempered with caution, especially when working with system-level components like the registry. By carefully following this guide, you can safely and effectively manage registry permissions, improving system control and security.<\/p>\n<p>For advanced use cases, such as revoking inherited permissions or auditing access, consider integrating PowerShell with Group Policy and Active Directory tools for an enterprise-grade approach.<\/p>\n<p>As with any administrative procedure, thorough documentation and logging are essential. Keep track of what changes are made, by whom, and why, to simplify troubleshooting and compliance auditing.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Modifying Windows Registry permissions is a task that should be approached with care and precision. The Windows Registry is a critical database for the system configuration, and improper changes can &#8230; <\/p>\n<p class=\"read-more-container\"><a title=\"Change Registry Permissions With PowerShell (Full Tutorial)\" class=\"read-more button\" href=\"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#more-10053\" aria-label=\"Read more about Change Registry Permissions With PowerShell (Full Tutorial)\">Read more<\/a><\/p>\n","protected":false},"author":88,"featured_media":10051,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[495],"tags":[],"class_list":["post-10053","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-50","no-featured-image-padding"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.4 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Change Registry Permissions With PowerShell (Full Tutorial) - Save the Video Blog<\/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:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Change Registry Permissions With PowerShell (Full Tutorial) - Save the Video Blog\" \/>\n<meta property=\"og:description\" content=\"Modifying Windows Registry permissions is a task that should be approached with care and precision. The Windows Registry is a critical database for the system configuration, and improper changes can ... Read more\" \/>\n<meta property=\"og:url\" content=\"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/\" \/>\n<meta property=\"og:site_name\" content=\"Save the Video Blog\" \/>\n<meta property=\"article:published_time\" content=\"2025-08-15T07:11:59+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-15T07:13:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/white-wooden-framed-glass-window-windows-10-settings-family-options-security-center.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1080\" \/>\n\t<meta property=\"og:image:height\" content=\"688\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jonathan Dough\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jonathan Dough\" \/>\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:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/\"},\"author\":{\"name\":\"Jonathan Dough\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700\"},\"headline\":\"Change Registry Permissions With PowerShell (Full Tutorial)\",\"datePublished\":\"2025-08-15T07:11:59+00:00\",\"dateModified\":\"2025-08-15T07:13:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/\"},\"wordCount\":522,\"publisher\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/white-wooden-framed-glass-window-windows-10-settings-family-options-security-center.jpg\",\"articleSection\":[\"Blog\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/\",\"url\":\"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/\",\"name\":\"Change Registry Permissions With PowerShell (Full Tutorial) - Save the Video Blog\",\"isPartOf\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/white-wooden-framed-glass-window-windows-10-settings-family-options-security-center.jpg\",\"datePublished\":\"2025-08-15T07:11:59+00:00\",\"dateModified\":\"2025-08-15T07:13:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#primaryimage\",\"url\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/white-wooden-framed-glass-window-windows-10-settings-family-options-security-center.jpg\",\"contentUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/white-wooden-framed-glass-window-windows-10-settings-family-options-security-center.jpg\",\"width\":1080,\"height\":688},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/savethevideo.net\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Change Registry Permissions With PowerShell (Full Tutorial)\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#website\",\"url\":\"https:\/\/savethevideo.net\/blog\/\",\"name\":\"Save the Video Blog\",\"description\":\"Everything you need to know about videos\",\"publisher\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/savethevideo.net\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#organization\",\"name\":\"Save the Video Blog\",\"url\":\"https:\/\/savethevideo.net\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2021\/02\/cropped-stv-logo.png\",\"contentUrl\":\"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2021\/02\/cropped-stv-logo.png\",\"width\":500,\"height\":119,\"caption\":\"Save the Video Blog\"},\"image\":{\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700\",\"name\":\"Jonathan Dough\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/9afc32c64534e0fac8123f418680cd8c214b1c82b9a0e765b34eddf7636ede6d?s=96&d=monsterid&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/9afc32c64534e0fac8123f418680cd8c214b1c82b9a0e765b34eddf7636ede6d?s=96&d=monsterid&r=g\",\"caption\":\"Jonathan Dough\"},\"url\":\"https:\/\/savethevideo.net\/blog\/author\/jonathand\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Change Registry Permissions With PowerShell (Full Tutorial) - Save the Video Blog","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:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/","og_locale":"en_US","og_type":"article","og_title":"Change Registry Permissions With PowerShell (Full Tutorial) - Save the Video Blog","og_description":"Modifying Windows Registry permissions is a task that should be approached with care and precision. The Windows Registry is a critical database for the system configuration, and improper changes can ... Read more","og_url":"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/","og_site_name":"Save the Video Blog","article_published_time":"2025-08-15T07:11:59+00:00","article_modified_time":"2025-08-15T07:13:48+00:00","og_image":[{"width":1080,"height":688,"url":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/white-wooden-framed-glass-window-windows-10-settings-family-options-security-center.jpg","type":"image\/jpeg"}],"author":"Jonathan Dough","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Jonathan Dough","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#article","isPartOf":{"@id":"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/"},"author":{"name":"Jonathan Dough","@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700"},"headline":"Change Registry Permissions With PowerShell (Full Tutorial)","datePublished":"2025-08-15T07:11:59+00:00","dateModified":"2025-08-15T07:13:48+00:00","mainEntityOfPage":{"@id":"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/"},"wordCount":522,"publisher":{"@id":"https:\/\/savethevideo.net\/blog\/#organization"},"image":{"@id":"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#primaryimage"},"thumbnailUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/white-wooden-framed-glass-window-windows-10-settings-family-options-security-center.jpg","articleSection":["Blog"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/","url":"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/","name":"Change Registry Permissions With PowerShell (Full Tutorial) - Save the Video Blog","isPartOf":{"@id":"https:\/\/savethevideo.net\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#primaryimage"},"image":{"@id":"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#primaryimage"},"thumbnailUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/white-wooden-framed-glass-window-windows-10-settings-family-options-security-center.jpg","datePublished":"2025-08-15T07:11:59+00:00","dateModified":"2025-08-15T07:13:48+00:00","breadcrumb":{"@id":"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#primaryimage","url":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/white-wooden-framed-glass-window-windows-10-settings-family-options-security-center.jpg","contentUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2025\/08\/white-wooden-framed-glass-window-windows-10-settings-family-options-security-center.jpg","width":1080,"height":688},{"@type":"BreadcrumbList","@id":"https:\/\/savethevideo.net\/blog\/change-registry-permissions-with-powershell-full-tutorial\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/savethevideo.net\/blog\/"},{"@type":"ListItem","position":2,"name":"Change Registry Permissions With PowerShell (Full Tutorial)"}]},{"@type":"WebSite","@id":"https:\/\/savethevideo.net\/blog\/#website","url":"https:\/\/savethevideo.net\/blog\/","name":"Save the Video Blog","description":"Everything you need to know about videos","publisher":{"@id":"https:\/\/savethevideo.net\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/savethevideo.net\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/savethevideo.net\/blog\/#organization","name":"Save the Video Blog","url":"https:\/\/savethevideo.net\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2021\/02\/cropped-stv-logo.png","contentUrl":"https:\/\/savethevideo.net\/blog\/wp-content\/uploads\/2021\/02\/cropped-stv-logo.png","width":500,"height":119,"caption":"Save the Video Blog"},"image":{"@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/2fd5bb6675327a328b726eb409570700","name":"Jonathan Dough","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/savethevideo.net\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/9afc32c64534e0fac8123f418680cd8c214b1c82b9a0e765b34eddf7636ede6d?s=96&d=monsterid&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/9afc32c64534e0fac8123f418680cd8c214b1c82b9a0e765b34eddf7636ede6d?s=96&d=monsterid&r=g","caption":"Jonathan Dough"},"url":"https:\/\/savethevideo.net\/blog\/author\/jonathand\/"}]}},"_links":{"self":[{"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts\/10053","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/users\/88"}],"replies":[{"embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/comments?post=10053"}],"version-history":[{"count":1,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts\/10053\/revisions"}],"predecessor-version":[{"id":10071,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/posts\/10053\/revisions\/10071"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/media\/10051"}],"wp:attachment":[{"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/media?parent=10053"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/categories?post=10053"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/savethevideo.net\/blog\/wp-json\/wp\/v2\/tags?post=10053"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}