{"id":145518,"date":"2024-10-10T05:00:17","date_gmt":"2024-10-10T09:00:17","guid":{"rendered":"https:\/\/pureinfotech.com\/?p=145518"},"modified":"2025-08-18T08:38:52","modified_gmt":"2025-08-18T12:38:52","slug":"change-execution-policy-run-scripts-powershell","status":"publish","type":"post","link":"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/","title":{"rendered":"How to change execution policy to run scripts on PowerShell"},"content":{"rendered":"<ul class=\"sum\">\n<li>To change the PowerShell execution policy, open <strong>PowerShell (admin)<\/strong> and run the <strong>&#8220;Set-ExecutionPolicy RemoteSigned&#8221;<\/strong> command to set execution to allow scripts. The <strong>&#8220;Set-ExecutionPolicy AllSigned&#8221;<\/strong> command allows scripts from trusted publishers. Or the <strong>&#8220;Set-ExecutionPolicy Unrestricted&#8221;<\/strong> command allows scripts without restrictions.<\/li>\n<li>You can also run the <strong>&#8220;Set-ExecutionPolicy Restricted&#8221;<\/strong> to undo the changes and prevent scripts from running.<\/li>\n<li>Finally, you can allow PowerShell scripts by changing the policy from the Windows 11 and 10 Settings app.<\/li>\n<\/ul>\n<p>On <a href=\"https:\/\/pureinfotech.com\/tag\/windows-11\">Windows 11<\/a> (or 10), by default, when you try to run a script on PowerShell, it will fail with the <strong>&#8220;cannot be loaded because running scripts is disabled on this system&#8221;<\/strong> error message. This is because PowerShell has an &#8220;execution policy&#8221; security feature that controls how to load configuration files and run scripts to prevent malicious code from running on the system.<\/p>\n<p>If you must run a script on Windows 11 (or 10), you can change the execution policy for the local computer, current user, or session.<\/p>\n<p>When you set a PowerShell execution policy for the local computer and current user, the information is stored in the Registry. If you configure the policy for a particular session, it is held in memory and then lost when you close the session.<\/p>\n<p>According to <a href=\"https:\/\/docs.microsoft.com\/en-us\/powershell\/module\/microsoft.powershell.core\/about\/about_execution_policies?view=powershell-7.2\" target=\"_blank\" rel=\"noopener\">Microsoft<\/a>, the execution policy doesn&#8217;t restrict actions. You can bypass the policy by typing the script in the command-line interface (CLI). The policy has been designed to help users prevent running malicious scripts.<\/p>\n<p>In this <a href=\"https:\/\/pureinfotech.com\/tag\/how-to\">guide<\/a>, I will teach you how to change the execution policy to run scripts successfully on PowerShell on Windows 11 or 10.<\/p>\n<ul class=\"toc\">\n<li><a href=\"#change_execution_policy_command_windows11\">Change execution policy on Windows 11 from PowerShell<\/a><\/li>\n<li><a href=\"#change_execution_policy_settings_windows11\">Change execution policy on Windows 11 from Settings<\/a><\/li>\n<li><a href=\"#change_execution_policy_not_signed\">Change execution policy to allow script not digitally signed<\/a><\/li>\n<\/ul>\n<h2 id=\"change_execution_policy_command_windows11\">Change execution policy on Windows 11 from PowerShell<\/h2>\n<p>To change the PowerShell execution policy on Windows 11 (or 10), use these steps:<\/p>\n<ol>\n<li>\n<p>Open <strong>Start <\/strong>on Windows 11.<\/p>\n<\/li>\n<li>\n<p>Search for <strong>PowerShell<\/strong>, right-click the top result, and select the <strong>Run as administrator<\/strong> option.<\/p>\n<\/li>\n<li>\n<p>Type the following command to confirm the current execution policy and press <strong>Enter<\/strong>:<\/p>\n<pre>Get-ExecutionPolicy<\/pre>\n<\/li>\n<li>\n<p>(Optional) Type the following command to view the effective PowerShell execution policies and press <strong>Enter<\/strong>:<\/p>\n<pre>Get-ExecutionPolicy -List<\/pre>\n<\/li>\n<li>\n<p>Type the following command to change the PowerShell execution policy to allow scripts to run on Windows 11 and press <strong>Enter<\/strong>:<\/p>\n<pre>Set-ExecutionPolicy RemoteSigned<\/pre>\n<\/li>\n<li>\n<p>(Optional) Type the following command to change the execution policy to prevent scripts from running and press <strong>Enter<\/strong>:<\/p>\n<pre>Set-ExecutionPolicy Restricted<\/pre>\n<p><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-145523\" src=\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/07\/powershell-change-execution-policy-windows-11.webp?resize=827%2C415&#038;quality=78&#038;strip=all&#038;ssl=1\" alt=\"PowerShell change execution policy\" width=\"827\" height=\"415\" srcset=\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/07\/powershell-change-execution-policy-windows-11.webp?w=952&amp;quality=78&amp;strip=all&amp;ssl=1 952w, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/07\/powershell-change-execution-policy-windows-11.webp?resize=300%2C151&amp;quality=78&amp;strip=all&amp;ssl=1 300w, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/07\/powershell-change-execution-policy-windows-11.webp?resize=150%2C75&amp;quality=78&amp;strip=all&amp;ssl=1 150w\" sizes=\"auto, (max-width: 827px) 100vw, 827px\" \/><\/li>\n<\/ol>\n<p>Once you complete the steps, you can execute the script again, and it should now run successfully on Windows 11. If you no longer want to allow scripts to run on your computer, you can run the optional command mentioned in the steps.<\/p>\n    <div class=\"responsive-youtube-container\">\n        <iframe\n            src=\"https:\/\/www.youtube.com\/embed\/PXwltlq6YhU?rel=0&showinfo=0\"\n            frameborder=\"0\"\n            allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\"\n            allowfullscreen\n            loading=\"lazy\"\n        ><\/iframe>\n    <\/div>\n<p>If you want to change the execution policy to run scripts for the current user or local computer, you need to use the &#8220;Scope&#8221; option like this: <code>Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser<\/code> or <code><span class=\"hljs-pscommand\">Set-ExecutionPolicy<\/span><span class=\"hljs-parameter\"> -ExecutionPolicy<\/span> RemoteSigned<span class=\"hljs-parameter\"> -Scope<\/span> LocalMachine<\/code>.<\/p>\n<p>On Windows 11, you can choose from four different execution policies to allow or deny scripts:<\/p>\n<ul>\n<li><strong>Restricted \u2014<\/strong> blocks any script file from running.<\/li>\n<li><strong>RemoteSigned \u2014 <\/strong>allows scripts to be created on the computer. However, scripts created on another device won&#8217;t run without a trusted signature.<\/li>\n<li><strong>AllSigned \u2014<\/strong> allows all scripts to run. However, only if a trusted publisher has included a signature.<\/li>\n<li><strong>Unrestricted \u2014<\/strong> runs any script without restrictions.<\/li>\n<\/ul>\n<p>You don&#8217;t need to change the execution policy if you need to run a script that does not have the required parameters and does not return output. Instead, you can use the <code>PowerShell.exe -File \"FILENAME\" -ExecutionPolicy Bypass<\/code> command to bypass the restrictions.<\/p>\n<h2 id=\"change_execution_policy_settings_windows11\">Change execution policy on Windows 11 from Settings<\/h2>\n<p>On Windows 11 and 10, you can also allow scripts to run on PowerShell by changing the configuration of the command console from the Settings app.<\/p>\n<h3>From Windows 11<\/h3>\n<p>To change the PowerShell execution policy from the Settings app, use these steps:<\/p>\n<ol>\n<li>\n<p>Open <b>Settings<\/b>.<\/p>\n<\/li>\n<li>\n<p>Click on <strong>System<\/strong>.<\/p>\n<\/li>\n<li>\n<p>Click the <strong>For developers<\/strong> page.<\/p>\n<\/li>\n<li>\n<p>Click the <strong>PowerShell<\/strong> setting.<\/p>\n<\/li>\n<li>\n<p>Turn on the <strong>&#8220;Change execution policy to allow local PowerShell scripts [&#8230;]&#8221;<\/strong> toggle switch.<\/p>\n<p><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-170394\" src=\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/05\/windows-11-settings-change-execution-policy-powershell.webp?resize=827%2C440&#038;quality=78&#038;strip=all&#038;ssl=1\" alt=\"Windows 11 Settings change PowerShell execution\" width=\"827\" height=\"440\" srcset=\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/05\/windows-11-settings-change-execution-policy-powershell.webp?w=967&amp;quality=78&amp;strip=all&amp;ssl=1 967w, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/05\/windows-11-settings-change-execution-policy-powershell.webp?resize=300%2C159&amp;quality=78&amp;strip=all&amp;ssl=1 300w, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/05\/windows-11-settings-change-execution-policy-powershell.webp?resize=150%2C80&amp;quality=78&amp;strip=all&amp;ssl=1 150w\" sizes=\"auto, (max-width: 827px) 100vw, 827px\" \/><\/li>\n<\/ol>\n<p>If you no longer need this feature, you can block scripts by using the same steps, but in <strong>step 5<\/strong>, turn off the <strong>&#8220;Change execution policy to allow local PowerShell scripts [&#8230;]&#8221;<\/strong> toggle switch.<\/p>\n<h3>From Windows 10<\/h3>\n<p>To change the PowerShell execution policy from the Settings app, use these steps:<\/p>\n<ol>\n<li>\n<p>Open <b>Settings<\/b>.<\/p>\n<\/li>\n<li>\n<p>Click on <strong>Update &amp; Security<\/strong>.<\/p>\n<\/li>\n<li>\n<p>Click the <strong>For developers<\/strong> page.<\/p>\n<\/li>\n<li>\n<p>Check the <strong>&#8220;Change execution policy to allow local PowerShell scripts [&#8230;]&#8221;<\/strong> option for the PowerShell setting.<\/p>\n<p><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-170393\" src=\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/05\/windows-10-settings-change-execution-policy-powershell.webp?resize=827%2C414&#038;quality=78&#038;strip=all&#038;ssl=1\" alt=\"Windows 10 Settings change PowerShell execution\" width=\"827\" height=\"414\" srcset=\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/05\/windows-10-settings-change-execution-policy-powershell.webp?w=912&amp;quality=78&amp;strip=all&amp;ssl=1 912w, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/05\/windows-10-settings-change-execution-policy-powershell.webp?resize=300%2C150&amp;quality=78&amp;strip=all&amp;ssl=1 300w, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/05\/windows-10-settings-change-execution-policy-powershell.webp?resize=150%2C75&amp;quality=78&amp;strip=all&amp;ssl=1 150w\" sizes=\"auto, (max-width: 827px) 100vw, 827px\" \/><\/li>\n<li>\n<p>Click the <strong>Apply<\/strong> button.<\/p>\n<\/li>\n<\/ol>\n<p>If you no longer need this feature, you can block scripts by using the same steps, but in<strong> step 4<\/strong>, clear the <strong>&#8220;Change execution policy to allow local PowerShell scripts [&#8230;]&#8221;<\/strong> option and apply the changes.<\/p>\n<p>After you complete the steps, the setting will set the execution policy for PowerShell to &#8220;RemoteSigned.&#8221; This policy will allow you to run scripts without signing but will require signing for remote scripts.<\/p>\n<h2 id=\"change_execution_policy_not_signed\">Change execution policy to allow script not digitally signed<\/h2>\n<p>If you have a PowerShell script that was created on another computer or downloaded from the internet, if you try to run the script, you might get the <strong>&#8220;File [&#8230;].ps1 cannot be loaded. The file [&#8230;].ps1 is not digitally signed. You cannot run this script on the current system&#8221;<\/strong> or the <strong>&#8220;The script will not execute on the system&#8221;<\/strong> error message. However, as long as you know the script is safe to use and you grabbed it from a trusted source, you can change the <strong>&#8220;Process&#8221;<\/strong> scope policy to run it successfully.\u00a0<\/p>\n<figure id=\"attachment_173115\"  class=\"wp-caption alignnone\"><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"size-full wp-image-173115\" src=\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2024\/07\/powerhsell-script-not-digitally-signed.webp?resize=827%2C287&#038;quality=78&#038;strip=all&#038;ssl=1\" alt=\"PowerShell script not digitally signed error\" width=\"827\" height=\"287\" srcset=\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2024\/07\/powerhsell-script-not-digitally-signed.webp?w=934&amp;quality=78&amp;strip=all&amp;ssl=1 934w, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2024\/07\/powerhsell-script-not-digitally-signed.webp?resize=300%2C104&amp;quality=78&amp;strip=all&amp;ssl=1 300w, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2024\/07\/powerhsell-script-not-digitally-signed.webp?resize=150%2C52&amp;quality=78&amp;strip=all&amp;ssl=1 150w\" sizes=\"auto, (max-width: 827px) 100vw, 827px\" \/><figcaption class=\"wp-caption-text\">PowerShell script not digitally signed error \/ Image: Mauro Huculak<\/figcaption><\/figure>\n<p>To change the PowerShell execution policy to run a &#8220;.ps1&#8221; script that isn&#8217;t digitally signed, use these steps:<\/p>\n<ol>\n<li>\n<p>Open <strong>Start<\/strong>.<\/p>\n<\/li>\n<li>\n<p>Search for <strong>PowerShell<\/strong>, right-click the top result, and select the <strong>Run as administrator<\/strong> option.<\/p>\n<\/li>\n<li>\n<p>Type the following command to change to allow PowerShell scripts with a digital signature and press <strong>Enter<\/strong>:<\/p>\n<pre>Set-ExecutionPolicy -Scope Process -ExecutionPolicy Bypass<\/pre>\n<p><img data-recalc-dims=\"1\" loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-173116\" src=\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2024\/07\/powershell-allow-not-digitall-signed-script.webp?resize=827%2C413&#038;quality=78&#038;strip=all&#038;ssl=1\" alt=\"PowerShell allow script not digitally signed \" width=\"827\" height=\"413\" srcset=\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2024\/07\/powershell-allow-not-digitall-signed-script.webp?w=916&amp;quality=78&amp;strip=all&amp;ssl=1 916w, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2024\/07\/powershell-allow-not-digitall-signed-script.webp?resize=300%2C150&amp;quality=78&amp;strip=all&amp;ssl=1 300w, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2024\/07\/powershell-allow-not-digitall-signed-script.webp?resize=150%2C75&amp;quality=78&amp;strip=all&amp;ssl=1 150w\" sizes=\"auto, (max-width: 827px) 100vw, 827px\" \/><\/li>\n<\/ol>\n<p>Once you complete the steps, you can run the script file using the <code>.\\Your-PowerShell-Script.ps1<\/code> command during the current session. After closing the PowerShell session, the execution policy will revert to its original stay to prevent other scripts from running.\u00a0<\/p>\n<p>If you have to run another script file, you can repeat the steps outlined above.<\/p>\n<p><strong>Update October 10, 2024:<\/strong> This guide has been updated to ensure accuracy and reflect changes to the process.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you&#8217;re getting an error running a PowerShell script, it&#8217;s because you need to change the execution policy, and here&#8217;s how.<\/p>\n","protected":false},"author":2,"featured_media":155438,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"jetpack_post_was_ever_published":false,"footnotes":""},"categories":[2426,23],"tags":[97,19,2555,2715,2576],"class_list":["post-145518","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-features","category-windows","tag-difficulty-level-advanced","tag-how-to","tag-powershell","tag-windows-11","tag-windows-help"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to change execution policy to run scripts on PowerShell - Pureinfotech<\/title>\n<meta name=\"description\" content=\"To allow scripts to run on PowerShell, you have to change the execution policy. The &quot;Set-ExecutionPolicy RemoteSigned&quot; allows scrips.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to change execution policy to run scripts on PowerShell - Pureinfotech\" \/>\n<meta property=\"og:description\" content=\"To allow scripts to run on PowerShell, you have to change the execution policy. The &quot;Set-ExecutionPolicy RemoteSigned&quot; allows scrips.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/\" \/>\n<meta property=\"og:site_name\" content=\"Pureinfotech \u2022 Windows 10 &amp; Windows 11 help for humans\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/facebook.com\/pureinfotech\" \/>\n<meta property=\"article:published_time\" content=\"2024-10-10T09:00:17+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-08-18T12:38:52+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-11-change-powershell-execution-policy-here.webp\" \/>\n\t<meta property=\"og:image:width\" content=\"1677\" \/>\n\t<meta property=\"og:image:height\" content=\"1040\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/webp\" \/>\n<meta name=\"author\" content=\"Mauro Huculak\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@Pureinfotech\" \/>\n<meta name=\"twitter:site\" content=\"@Pureinfotech\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mauro Huculak\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/\"},\"author\":{\"name\":\"Mauro Huculak\",\"@id\":\"https:\/\/pureinfotech.com\/#\/schema\/person\/bf4921a81eb4380865af70691a93af43\"},\"headline\":\"How to change execution policy to run scripts on PowerShell\",\"datePublished\":\"2024-10-10T09:00:17+00:00\",\"dateModified\":\"2025-08-18T12:38:52+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/\"},\"wordCount\":1027,\"publisher\":{\"@id\":\"https:\/\/pureinfotech.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-11-change-powershell-execution-policy-here.webp?fit=1677%2C1040&quality=78&strip=all&ssl=1\",\"keywords\":[\"Difficulty level: Advanced\",\"How-To\",\"PowerShell\",\"Windows 11\",\"Windows Help\"],\"articleSection\":[\"Features\",\"Windows\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/\",\"url\":\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/\",\"name\":\"How to change execution policy to run scripts on PowerShell - Pureinfotech\",\"isPartOf\":{\"@id\":\"https:\/\/pureinfotech.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-11-change-powershell-execution-policy-here.webp?fit=1677%2C1040&quality=78&strip=all&ssl=1\",\"datePublished\":\"2024-10-10T09:00:17+00:00\",\"dateModified\":\"2025-08-18T12:38:52+00:00\",\"description\":\"To allow scripts to run on PowerShell, you have to change the execution policy. The \\\"Set-ExecutionPolicy RemoteSigned\\\" allows scrips.\",\"breadcrumb\":{\"@id\":\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#primaryimage\",\"url\":\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-11-change-powershell-execution-policy-here.webp?fit=1677%2C1040&quality=78&strip=all&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-11-change-powershell-execution-policy-here.webp?fit=1677%2C1040&quality=78&strip=all&ssl=1\",\"width\":1677,\"height\":1040,\"caption\":\"Windows 11 change PowerShell execution policy\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/pureinfotech.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to change execution policy to run scripts on PowerShell\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/pureinfotech.com\/#website\",\"url\":\"https:\/\/pureinfotech.com\/\",\"name\":\"Pureinfotech \u2022 Windows 10 &amp; Windows 11 help for humans\",\"description\":\"Pureinfotech is the best site to get Windows help \u2013 featuring friendly how-to guides on Windows 10, Windows 11, Xbox, and other things tech, news, deals, reviews, and more.\",\"publisher\":{\"@id\":\"https:\/\/pureinfotech.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/pureinfotech.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/pureinfotech.com\/#organization\",\"name\":\"Pureinfotech\",\"url\":\"https:\/\/pureinfotech.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/pureinfotech.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2019\/05\/pure-logo-v45.png?fit=192%2C192&quality=78&strip=all&ssl=1\",\"contentUrl\":\"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2019\/05\/pure-logo-v45.png?fit=192%2C192&quality=78&strip=all&ssl=1\",\"width\":192,\"height\":192,\"caption\":\"Pureinfotech\"},\"image\":{\"@id\":\"https:\/\/pureinfotech.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/facebook.com\/pureinfotech\",\"https:\/\/x.com\/Pureinfotech\",\"https:\/\/www.youtube.com\/user\/Pureinfotech\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/pureinfotech.com\/#\/schema\/person\/bf4921a81eb4380865af70691a93af43\",\"name\":\"Mauro Huculak\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/secure.gravatar.com\/avatar\/1cbac450402490f703560c52c3114f3e5ab02a741684eb73917885ae4a117a16?s=96&d=mm&r=g\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/1cbac450402490f703560c52c3114f3e5ab02a741684eb73917885ae4a117a16?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/1cbac450402490f703560c52c3114f3e5ab02a741684eb73917885ae4a117a16?s=96&d=mm&r=g\",\"caption\":\"Mauro Huculak\"},\"description\":\"Mauro Huculak is a Windows How-To Expert and founder of Pureinfotech (est. 2010). With over 21 years as a technology writer and IT Specialist, Mauro specializes in Windows, software, and cross-platform systems such as Linux, Android, and macOS. Certifications he holds include Microsoft Certified Solutions Associate (MCSA), Cisco Certified Network Professional (CCNP), VMware Certified Professional (VCP), and CompTIA A+ and Network+. Mauro is a recognized Microsoft MVP and has also been a long-time contributor to Windows Central. You can follow him on YouTube, Threads, BlueSky, X (Twitter), LinkedIn and About.me. Email him at Contact@Pureinfotech.com.\",\"sameAs\":[\"https:\/\/pureinfotech.com\",\"https:\/\/x.com\/@Pureinfotech\"],\"url\":\"https:\/\/pureinfotech.com\/mauro-huculak\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to change execution policy to run scripts on PowerShell - Pureinfotech","description":"To allow scripts to run on PowerShell, you have to change the execution policy. The \"Set-ExecutionPolicy RemoteSigned\" allows scrips.","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:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/","og_locale":"en_US","og_type":"article","og_title":"How to change execution policy to run scripts on PowerShell - Pureinfotech","og_description":"To allow scripts to run on PowerShell, you have to change the execution policy. The \"Set-ExecutionPolicy RemoteSigned\" allows scrips.","og_url":"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/","og_site_name":"Pureinfotech \u2022 Windows 10 &amp; Windows 11 help for humans","article_publisher":"https:\/\/facebook.com\/pureinfotech","article_published_time":"2024-10-10T09:00:17+00:00","article_modified_time":"2025-08-18T12:38:52+00:00","og_image":[{"width":1677,"height":1040,"url":"https:\/\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-11-change-powershell-execution-policy-here.webp","type":"image\/webp"}],"author":"Mauro Huculak","twitter_card":"summary_large_image","twitter_creator":"@Pureinfotech","twitter_site":"@Pureinfotech","twitter_misc":{"Written by":"Mauro Huculak","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#article","isPartOf":{"@id":"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/"},"author":{"name":"Mauro Huculak","@id":"https:\/\/pureinfotech.com\/#\/schema\/person\/bf4921a81eb4380865af70691a93af43"},"headline":"How to change execution policy to run scripts on PowerShell","datePublished":"2024-10-10T09:00:17+00:00","dateModified":"2025-08-18T12:38:52+00:00","mainEntityOfPage":{"@id":"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/"},"wordCount":1027,"publisher":{"@id":"https:\/\/pureinfotech.com\/#organization"},"image":{"@id":"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-11-change-powershell-execution-policy-here.webp?fit=1677%2C1040&quality=78&strip=all&ssl=1","keywords":["Difficulty level: Advanced","How-To","PowerShell","Windows 11","Windows Help"],"articleSection":["Features","Windows"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/","url":"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/","name":"How to change execution policy to run scripts on PowerShell - Pureinfotech","isPartOf":{"@id":"https:\/\/pureinfotech.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#primaryimage"},"image":{"@id":"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#primaryimage"},"thumbnailUrl":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-11-change-powershell-execution-policy-here.webp?fit=1677%2C1040&quality=78&strip=all&ssl=1","datePublished":"2024-10-10T09:00:17+00:00","dateModified":"2025-08-18T12:38:52+00:00","description":"To allow scripts to run on PowerShell, you have to change the execution policy. The \"Set-ExecutionPolicy RemoteSigned\" allows scrips.","breadcrumb":{"@id":"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#primaryimage","url":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-11-change-powershell-execution-policy-here.webp?fit=1677%2C1040&quality=78&strip=all&ssl=1","contentUrl":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-11-change-powershell-execution-policy-here.webp?fit=1677%2C1040&quality=78&strip=all&ssl=1","width":1677,"height":1040,"caption":"Windows 11 change PowerShell execution policy"},{"@type":"BreadcrumbList","@id":"https:\/\/pureinfotech.com\/change-execution-policy-run-scripts-powershell\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/pureinfotech.com\/"},{"@type":"ListItem","position":2,"name":"How to change execution policy to run scripts on PowerShell"}]},{"@type":"WebSite","@id":"https:\/\/pureinfotech.com\/#website","url":"https:\/\/pureinfotech.com\/","name":"Pureinfotech \u2022 Windows 10 &amp; Windows 11 help for humans","description":"Pureinfotech is the best site to get Windows help \u2013 featuring friendly how-to guides on Windows 10, Windows 11, Xbox, and other things tech, news, deals, reviews, and more.","publisher":{"@id":"https:\/\/pureinfotech.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pureinfotech.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pureinfotech.com\/#organization","name":"Pureinfotech","url":"https:\/\/pureinfotech.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pureinfotech.com\/#\/schema\/logo\/image\/","url":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2019\/05\/pure-logo-v45.png?fit=192%2C192&quality=78&strip=all&ssl=1","contentUrl":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2019\/05\/pure-logo-v45.png?fit=192%2C192&quality=78&strip=all&ssl=1","width":192,"height":192,"caption":"Pureinfotech"},"image":{"@id":"https:\/\/pureinfotech.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/facebook.com\/pureinfotech","https:\/\/x.com\/Pureinfotech","https:\/\/www.youtube.com\/user\/Pureinfotech"]},{"@type":"Person","@id":"https:\/\/pureinfotech.com\/#\/schema\/person\/bf4921a81eb4380865af70691a93af43","name":"Mauro Huculak","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1cbac450402490f703560c52c3114f3e5ab02a741684eb73917885ae4a117a16?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1cbac450402490f703560c52c3114f3e5ab02a741684eb73917885ae4a117a16?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1cbac450402490f703560c52c3114f3e5ab02a741684eb73917885ae4a117a16?s=96&d=mm&r=g","caption":"Mauro Huculak"},"description":"Mauro Huculak is a Windows How-To Expert and founder of Pureinfotech (est. 2010). With over 21 years as a technology writer and IT Specialist, Mauro specializes in Windows, software, and cross-platform systems such as Linux, Android, and macOS. Certifications he holds include Microsoft Certified Solutions Associate (MCSA), Cisco Certified Network Professional (CCNP), VMware Certified Professional (VCP), and CompTIA A+ and Network+. Mauro is a recognized Microsoft MVP and has also been a long-time contributor to Windows Central. You can follow him on YouTube, Threads, BlueSky, X (Twitter), LinkedIn and About.me. Email him at Contact@Pureinfotech.com.","sameAs":["https:\/\/pureinfotech.com","https:\/\/x.com\/@Pureinfotech"],"url":"https:\/\/pureinfotech.com\/mauro-huculak"}]}},"jetpack_featured_media_url":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/01\/windows-11-change-powershell-execution-policy-here.webp?fit=1677%2C1040&quality=78&strip=all&ssl=1","jetpack-related-posts":[{"id":178978,"url":"https:\/\/pureinfotech.com\/download-tiny11-iso-windows-11-25h2\/","url_meta":{"origin":145518,"position":0},"title":"How to download Tiny11 ISO for Windows 11 25H2","author":"Mauro Huculak","date":"August 30, 2025","format":false,"excerpt":"Create a custom, bloatware-free Windows 11 25H2 ISO with local account support using Tiny11 Builder.","rel":"","context":"","block_context":{"text":"Features","link":"https:\/\/pureinfotech.com\/category\/features\/"},"img":{"alt_text":"Windows 11 25H2 Tiny11 ISO","src":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2025\/07\/windows-11-25h2-tiny11-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2025\/07\/windows-11-25h2-tiny11-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2025\/07\/windows-11-25h2-tiny11-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2025\/07\/windows-11-25h2-tiny11-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2025\/07\/windows-11-25h2-tiny11-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":145329,"url":"https:\/\/pureinfotech.com\/install-updates-manually-windows-11\/","url_meta":{"origin":145518,"position":1},"title":"How to install updates manually on Windows 11","author":"Mauro Huculak","date":"December 4, 2025","format":false,"excerpt":"You can install updates manually on Windows 11 in multiple ways, including with a command \u2013 here\u2019s how.","rel":"","context":"","block_context":{"text":"Features","link":"https:\/\/pureinfotech.com\/category\/features\/"},"img":{"alt_text":"Windows 11 install updates \/ Image: Mauro Huculak","src":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2024\/06\/windows-11-updates-manual-install-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2024\/06\/windows-11-updates-manual-install-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2024\/06\/windows-11-updates-manual-install-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2024\/06\/windows-11-updates-manual-install-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2024\/06\/windows-11-updates-manual-install-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":136544,"url":"https:\/\/pureinfotech.com\/uninstall-update-windows-11\/","url_meta":{"origin":145518,"position":2},"title":"5 Ways to uninstall an update manually on Windows 11 (2026)","author":"Mauro Huculak","date":"March 17, 2026","format":false,"excerpt":"If a Windows 11 update is causing problems, you can use these five different ways to uninstall it to get the computer working again.","rel":"","context":"","block_context":{"text":"Windows","link":"https:\/\/pureinfotech.com\/category\/windows\/"},"img":{"alt_text":"Windows 11 uninstall update","src":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2025\/02\/windows-11-uninstall-updates-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2025\/02\/windows-11-uninstall-updates-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2025\/02\/windows-11-uninstall-updates-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2025\/02\/windows-11-uninstall-updates-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2025\/02\/windows-11-uninstall-updates-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":142622,"url":"https:\/\/pureinfotech.com\/uninstall-problematic-updates-windows-11\/","url_meta":{"origin":145518,"position":3},"title":"Uninstall update KB5034765 to fix Taskbar problems on Windows 11","author":"Mauro Huculak","date":"February 20, 2024","format":false,"excerpt":"If a particular update is causing problems, you can remove it to roll back to the previous good working state, and here's how.","rel":"","context":"","block_context":{"text":"Windows","link":"https:\/\/pureinfotech.com\/category\/windows\/"},"img":{"alt_text":"Uninstall problematic update","src":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/09\/windows-11-uninstall-problematic-update-hero-mauro-huculak.webp?fit=1200%2C801&quality=78&strip=all&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/09\/windows-11-uninstall-problematic-update-hero-mauro-huculak.webp?fit=1200%2C801&quality=78&strip=all&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/09\/windows-11-uninstall-problematic-update-hero-mauro-huculak.webp?fit=1200%2C801&quality=78&strip=all&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/09\/windows-11-uninstall-problematic-update-hero-mauro-huculak.webp?fit=1200%2C801&quality=78&strip=all&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/09\/windows-11-uninstall-problematic-update-hero-mauro-huculak.webp?fit=1200%2C801&quality=78&strip=all&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":94617,"url":"https:\/\/pureinfotech.com\/delete-files-older-than-days-powershell\/","url_meta":{"origin":145518,"position":4},"title":"How to delete files older than X days automatically using PowerShell","author":"Mauro Huculak","date":"February 6, 2023","format":false,"excerpt":"You can use PowerShell to free up space and keep things organized by only deleting files older than a certain number of days in any folder \u2014 here's how to do it on Windows 10.","rel":"","context":"","block_context":{"text":"Features","link":"https:\/\/pureinfotech.com\/category\/features\/"},"img":{"alt_text":"PowerShell delete older files","src":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/03\/windows-10-powershell-delete-older-files-hero.webp?fit=1200%2C746&quality=78&strip=all&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/03\/windows-10-powershell-delete-older-files-hero.webp?fit=1200%2C746&quality=78&strip=all&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/03\/windows-10-powershell-delete-older-files-hero.webp?fit=1200%2C746&quality=78&strip=all&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/03\/windows-10-powershell-delete-older-files-hero.webp?fit=1200%2C746&quality=78&strip=all&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2022\/03\/windows-10-powershell-delete-older-files-hero.webp?fit=1200%2C746&quality=78&strip=all&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":135404,"url":"https:\/\/pureinfotech.com\/view-update-history-windows-11\/","url_meta":{"origin":145518,"position":5},"title":"How to view update history on Windows 11","author":"Mauro Huculak","date":"June 12, 2025","format":false,"excerpt":"Do you want to see the history of recent updates applied on Windows 11? You can do this using the Windows Update settings or PowerShell.","rel":"","context":"","block_context":{"text":"Windows","link":"https:\/\/pureinfotech.com\/category\/windows\/"},"img":{"alt_text":"Windows Update History","src":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/10\/windows-update-history-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/10\/windows-update-history-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/10\/windows-update-history-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/10\/windows-update-history-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/pureinfotech.com\/wp-content\/uploads\/2023\/10\/windows-update-history-hero.webp?fit=1200%2C750&quality=78&strip=all&ssl=1&resize=1050%2C600 3x"},"classes":[]}],"_links":{"self":[{"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/posts\/145518","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/comments?post=145518"}],"version-history":[{"count":2,"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/posts\/145518\/revisions"}],"predecessor-version":[{"id":179981,"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/posts\/145518\/revisions\/179981"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/media\/155438"}],"wp:attachment":[{"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/media?parent=145518"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/categories?post=145518"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pureinfotech.com\/wp-json\/wp\/v2\/tags?post=145518"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}