{"id":1962,"date":"2026-03-19T18:03:21","date_gmt":"2026-03-19T18:03:21","guid":{"rendered":"https:\/\/alterego.cc\/wp\/?p=1962"},"modified":"2026-03-19T18:03:22","modified_gmt":"2026-03-19T18:03:22","slug":"fixing-browser-tamer-issues-in-windows","status":"publish","type":"post","link":"https:\/\/alterego.cc\/wp\/2026\/03\/19\/fixing-browser-tamer-issues-in-windows\/","title":{"rendered":"Fixing Browser Tamer Issues in Windows"},"content":{"rendered":"\n<h1 class=\"wp-block-heading\">Browser Tamer Working Again on Windows (for the moment)<\/h1>\n\n\n\n<h2 class=\"wp-block-heading\">The Problem<\/h2>\n\n\n\n<p>I loved <strong>Browser Tamer<\/strong>. If you don&#8217;t know it, it\u2019s a small tool that sits between Windows and your browsers. When you click a link anywhere on your system, Browser Tamer catches it first and lets you decide which browser should open it.<\/p>\n\n\n\n<p>If you use multiple browsers (for example work, personal, testing, or different profiles), it\u2019s incredibly useful.<\/p>\n\n\n\n<p>For years the process was simple: download the installer, install it, set it as the default browser, done.<\/p>\n\n\n\n<p>Then things changed.<\/p>\n\n\n\n<p>At some point the classic installer stopped being distributed. Browser Tamer itself didn\u2019t disappear \u2014 the developer simply stopped producing the traditional installer package and instead distributes the application as a <code>.zip<\/code> or through <strong>winget<\/strong> (the Windows package manager).<\/p>\n\n\n\n<p>I switched to the winget version, but it started giving me problems. Links would not always open through Browser Tamer, settings sometimes reverted, and Windows increasingly resisted letting Browser Tamer become the real default handler.<\/p>\n\n\n\n<p>That\u2019s when I realized the issue was not Browser Tamer itself.<\/p>\n\n\n\n<p>The real issue was <strong>Windows<\/strong>.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Why Windows Makes This Difficult<\/h2>\n\n\n\n<p>Modern versions of Windows include several mechanisms designed to prevent programs from silently changing default applications.<\/p>\n\n\n\n<p>The official explanation from Microsoft is security: malware could otherwise change your browser or file associations without your consent.<\/p>\n\n\n\n<p>That explanation makes sense on the surface.<\/p>\n\n\n\n<p>However the side effect is that legitimate tools \u2014 including utilities like Browser Tamer \u2014 have a much harder time registering themselves as default handlers.<\/p>\n\n\n\n<p>Some of the technologies involved include:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>UserChoice<\/strong> \u2013 the registry location where Windows stores default app selections.<\/li>\n\n\n\n<li><strong>UserChoice hash protection<\/strong> \u2013 a cryptographic hash that prevents direct registry editing.<\/li>\n\n\n\n<li><strong>UCPD (User Choice Protection Driver)<\/strong> \u2013 a Windows driver that blocks unauthorized changes.<\/li>\n\n\n\n<li><strong>UserChoiceLatest<\/strong> \u2013 a newer system introduced in recent Windows builds that uses a different hash format.<\/li>\n<\/ul>\n\n\n\n<p>All of these together make default application changes harder to perform programmatically.<\/p>\n\n\n\n<p>After some experimentation, I figured out a method to get Browser Tamer working again (for the moment).<\/p>\n\n\n\n<p>This guide explains my findings and what I did<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">The Tools I Use<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">Browser Tamer<\/h3>\n\n\n\n<p>This is the application we ultimately want to use. It intercepts web links and routes them to the browser we choose.<\/p>\n\n\n\n<p>Website:<br><a href=\"https:\/\/www.aloneguid.uk\/projects\/bt\/\" target=\"_blank\" rel=\"noreferrer noopener external\" data-wpel-link=\"external\">https:\/\/www.aloneguid.uk\/projects\/bt\/<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">winget<\/h3>\n\n\n\n<p><strong>winget<\/strong> is Microsoft\u2019s official Windows package manager. It allows installing and updating applications from the command line.<\/p>\n\n\n\n<p>I use it to install Browser Tamer.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">ViVeTool<\/h3>\n\n\n\n<p>ViVeTool is a utility that allows enabling or disabling hidden Windows feature flags.<\/p>\n\n\n\n<p>Windows uses feature flags internally to test and gradually roll out new features. ViVeTool allows controlling them manually.<\/p>\n\n\n\n<p>In this guide I use it to disable specific Windows protections that interfere with default browser configuration.<\/p>\n\n\n\n<p>Download:<br><a href=\"https:\/\/github.com\/thebookisclosed\/ViVe\/releases\" target=\"_blank\" rel=\"noreferrer noopener external\" data-wpel-link=\"external\">https:\/\/github.com\/thebookisclosed\/ViVe\/releases<\/a><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">PS-SFTA<\/h3>\n\n\n\n<p>PS-SFTA is a PowerShell module that can correctly set Windows file and protocol associations by generating the required hash values.<\/p>\n\n\n\n<p>Windows refuses association changes without the correct hash, so this tool performs the necessary calculation.<\/p>\n\n\n\n<p>Download:<br><a href=\"https:\/\/github.com\/DanysysTeam\/PS-SFTA\" target=\"_blank\" rel=\"noreferrer noopener external\" data-wpel-link=\"external\">https:\/\/github.com\/DanysysTeam\/PS-SFTA<\/a><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">\u26a0\ufe0f Important Warnings Before Starting<\/h2>\n\n\n\n<p><strong>This guide modifies Windows configuration.<\/strong><\/p>\n\n\n\n<p>While the procedure is safe if performed carefully, several steps interact with sensitive parts of the operating system.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Some steps modify the Windows registry.<\/li>\n\n\n\n<li>Some steps require administrator privileges.<\/li>\n\n\n\n<li>Future Windows updates may revert some of these changes.<\/li>\n<\/ul>\n\n\n\n<p>The method described in this article is not an official or supported procedure. It is simply the approach I arrived at through research, testing, and experimentation on my own systems. I cannot guarantee that it is the only correct way to achieve this result, nor that it will work in every Windows configuration.<\/p>\n\n\n\n<p>Some of the steps modify system settings and interact with internal Windows mechanisms that are not intended to be user-configurable. Because of that, behavior may change with future Windows updates, and the procedure may stop working or require adjustments.<\/p>\n\n\n\n<p>If you choose to follow this guide, you do so entirely at your own risk and responsibility. Make sure you understand each step before performing it and take appropriate precautions, such as backing up relevant settings or creating a restore point beforehand.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 1 \u2013 Install Browser Tamer<\/h2>\n\n\n\n<p>Open a normal PowerShell or Command Prompt window.<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>winget install --id aloneguid.bt -e --accept-source-agreements --accept-package-agreements\n<\/code><\/pre>\n\n\n\n<p>This installs the latest version of Browser Tamer.<\/p>\n\n\n\n<p>If it is already installed, winget will simply update it.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 2 \u2013 Launch Browser Tamer Once<\/h2>\n\n\n\n<p>After installation, run Browser Tamer once and close it.<\/p>\n\n\n\n<p>This creates its configuration file in:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>%LOCALAPPDATA%\\bt\\config.ini\n<\/code><\/pre>\n\n\n\n<p>This file stores Browser Tamer settings.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 3 \u2013 Configure the Browser Picker<\/h2>\n\n\n\n<p>Open the file:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>%LOCALAPPDATA%\\bt\\config.ini\n<\/code><\/pre>\n\n\n\n<p>Find or add the following section:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&#91;picker]\nalways = y\n<\/code><\/pre>\n\n\n\n<p>This forces Browser Tamer to always show the browser picker when opening links.<\/p>\n\n\n\n<p><strong>Important:<\/strong> Browser Tamer must be closed before editing this file.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 4 \u2013 Register Browser Tamer as a Browser<\/h2>\n\n\n\n<p>Windows must know Browser Tamer exists as a valid browser handler.<\/p>\n\n\n\n<p>This step registers Browser Tamer in the Windows registry so it appears in the list of browsers.<\/p>\n\n\n\n<p>After this step you should be able to see Browser Tamer under:<\/p>\n\n\n\n<p><strong>Settings \u2192 Apps \u2192 Default Apps<\/strong><\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 5 \u2013 Backup Existing Associations<\/h2>\n\n\n\n<p>Before modifying any associations I export the current registry entries.<\/p>\n\n\n\n<p>The keys I back up include:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>HKCU\\Software\\Microsoft\\Windows\\Shell\\Associations\\UrlAssociations\\http\nHKCU\\Software\\Microsoft\\Windows\\Shell\\Associations\\UrlAssociations\\https\n<\/code><\/pre>\n\n\n\n<p>This provides a rollback point if something goes wrong.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 6 \u2013 Disable the UCPD Driver<\/h2>\n\n\n\n<p>This step requires administrator privileges.<\/p>\n\n\n\n<p>Open an elevated PowerShell window and run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>reg add \"HKLM\\SYSTEM\\CurrentControlSet\\Services\\UCPD\" \/v Start \/t REG_DWORD \/d 4 \/f\nreg add \"HKLM\\SYSTEM\\CurrentControlSet\\Services\\UCPD\" \/v FeatureV2 \/t REG_DWORD \/d 0 \/f\n<\/code><\/pre>\n\n\n\n<p>These values disable the User Choice Protection Driver.<\/p>\n\n\n\n<p><strong>Danger:<\/strong> This modifies system-level protections designed to prevent unauthorized default application changes.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 7 \u2013 Disable the UCPD Scheduled Task<\/h2>\n\n\n\n<p>Windows includes a scheduled task that can re-enable UCPD automatically.<\/p>\n\n\n\n<p>To disable it run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>schtasks \/change \/Disable \/TN \"\\Microsoft\\Windows\\AppxDeploymentClient\\UCPD velocity\"\n<\/code><\/pre>\n\n\n\n<p>If this step is skipped, Windows may undo previous changes after reboot.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 8 \u2013 Disable Feature Flags Using ViVeTool<\/h2>\n\n\n\n<p>Open an elevated PowerShell in the folder where ViVeTool is located.<\/p>\n\n\n\n<p>Run:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>ViVeTool.exe \/disable \/id:44860385\nViVeTool.exe \/disable \/id:43229420\nViVeTool.exe \/disable \/id:27623730\n<\/code><\/pre>\n\n\n\n<p>These flags disable mechanisms related to default app hash rotation and UserChoiceLatest.<\/p>\n\n\n\n<p><strong>Danger:<\/strong> ViVeTool modifies hidden Windows feature flags. Only change the specific flags described here.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 9 \u2013 Set Browser Associations<\/h2>\n\n\n\n<p>Now open PowerShell as your normal user.<\/p>\n\n\n\n<p>Load PS-SFTA:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>. \"C:\\path\\to\\SFTA.ps1\"\n<\/code><\/pre>\n\n\n\n<p>Then set protocol associations:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Set-PTA BrowserTamerHTM http\nSet-PTA BrowserTamerHTM https\n<\/code><\/pre>\n\n\n\n<p>Then set file type associations:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Register-FTA \"C:\\path\\to\\bt.exe\" .html -ProgId BrowserTamerHTM\nRegister-FTA \"C:\\path\\to\\bt.exe\" .htm -ProgId BrowserTamerHTM\nRegister-FTA \"C:\\path\\to\\bt.exe\" .pdf -ProgId BrowserTamerPDF\n<\/code><\/pre>\n\n\n\n<p>This writes the correct UserChoice entries including the required hash values.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Step 10 \u2013 Verify<\/h2>\n\n\n\n<p>Verify the associations using:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>Get-PTA http\nGet-PTA https\nGet-FTA .html\nGet-FTA .pdf\n<\/code><\/pre>\n\n\n\n<p>They should return BrowserTamerHTM or BrowserTamerPDF.<\/p>\n\n\n\n<p>Finally reboot and test opening links.<\/p>\n\n\n\n<p>If everything worked correctly, Browser Tamer will intercept them and show the browser picker.<\/p>\n\n\n\n<hr class=\"wp-block-separator has-alpha-channel-opacity\"\/>\n\n\n\n<h2 class=\"wp-block-heading\">Final Thoughts<\/h2>\n\n\n\n<p>The surprising thing I discovered through this process is that Browser Tamer itself was never the real problem.<\/p>\n\n\n\n<p>The real issue was how aggressively modern Windows protects default application settings.<\/p>\n\n\n\n<p>While the goal of preventing malicious software from hijacking browser settings is understandable, it also makes legitimate customization much harder.<\/p>\n\n\n\n<p>Once everything is configured, Browser Tamer works exactly as it used to \u2014 letting you decide which browser opens every link (for the moment).<\/p>\n","protected":false},"excerpt":{"rendered":"<p>After Windows updates introduced stronger protections around default applications, tools like Browser Tamer stopped working reliably. In this guide I explain what changed, why it happens, and what I found out on restoring Browser Tamer as the default link handler on modern Windows systems<\/p>\n","protected":false},"author":1,"featured_media":1963,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":true,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[37],"tags":[64,43,77,82,76],"class_list":["post-1962","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials","tag-english","tag-github","tag-microsoft","tag-troubleshooting","tag-windows"],"aioseo_notices":[],"jetpack_publicize_connections":[],"jetpack_featured_media_url":"https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/03\/browser-tamer.png?fit=1536%2C1024&ssl=1","jetpack-related-posts":[{"id":1968,"url":"https:\/\/alterego.cc\/wp\/2026\/03\/19\/fix-browsertamer-1-0-available-on-github\/","url_meta":{"origin":1962,"position":0},"title":"fix-browsertamer 1.0 available on GitHub","author":"fabio","date":"19 March 2026","format":false,"excerpt":"Modern Windows versions introduced mechanisms such as UCPD and UserChoice protections that prevent programmatic changes to default browsers. This post introduces a script that restores Browser Tamer as the default browser and automates the entire workaround process","rel":"","context":"In &quot;Software&quot;","block_context":{"text":"Software","link":"https:\/\/alterego.cc\/wp\/category\/software\/"},"img":{"alt_text":"Illustration of a Windows laptop running a script to fix Browser Tamer as the default browser, routing links to multiple browsers","src":"https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/03\/fix-browser-tamer.png?fit=1200%2C800&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/03\/fix-browser-tamer.png?fit=1200%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/03\/fix-browser-tamer.png?fit=1200%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/03\/fix-browser-tamer.png?fit=1200%2C800&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/03\/fix-browser-tamer.png?fit=1200%2C800&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":1982,"url":"https:\/\/alterego.cc\/wp\/2026\/04\/05\/fix-browsertamer-1-1\/","url_meta":{"origin":1962,"position":1},"title":"fix-browsertamer 1.1","author":"fabio","date":"5 April 2026","format":false,"excerpt":"Make BrowserTamer stick as default on Windows 10\/11: UCPD, UserChoiceLatest, PS-SFTA, registration fixes, phantom-browser cleanup, and uninstall.","rel":"","context":"In &quot;Development&quot;","block_context":{"text":"Development","link":"https:\/\/alterego.cc\/wp\/category\/development\/"},"img":{"alt_text":"Illustrated BrowserTamer version 1.1 banner with a smiling robot holding a wrench, surrounded by gears, code icons and repair symbols","src":"https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/04\/BrowserTamer-1.1-release-announcement.png?fit=1200%2C800&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/04\/BrowserTamer-1.1-release-announcement.png?fit=1200%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/04\/BrowserTamer-1.1-release-announcement.png?fit=1200%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/04\/BrowserTamer-1.1-release-announcement.png?fit=1200%2C800&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/04\/BrowserTamer-1.1-release-announcement.png?fit=1200%2C800&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":1976,"url":"https:\/\/alterego.cc\/wp\/2026\/03\/22\/itch-batch-downloader-v0-1-1-released\/","url_meta":{"origin":1962,"position":2},"title":"itch batch downloader v0.1.1 released!","author":"fabio","date":"22 March 2026","format":false,"excerpt":"Version 0.1.1 brings important fixes to modern itch.io download handling, including newer button formats, Cloudflare mirror support, better filename fallback logic, and safer download behavior when metadata is missing. The release also updates dependencies and significantly refreshes the documentation.","rel":"","context":"In &quot;Development&quot;","block_context":{"text":"Development","link":"https:\/\/alterego.cc\/wp\/category\/development\/"},"img":{"alt_text":"Banner illustrating a Python tool that batch downloads and archives an itch.io game library.","src":"https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/03\/ITCH-BATCH-DOWNLOADERv0.1.1.png?fit=1200%2C800&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/03\/ITCH-BATCH-DOWNLOADERv0.1.1.png?fit=1200%2C800&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/03\/ITCH-BATCH-DOWNLOADERv0.1.1.png?fit=1200%2C800&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/03\/ITCH-BATCH-DOWNLOADERv0.1.1.png?fit=1200%2C800&ssl=1&resize=700%2C400 2x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2026\/03\/ITCH-BATCH-DOWNLOADERv0.1.1.png?fit=1200%2C800&ssl=1&resize=1050%2C600 3x"},"classes":[]},{"id":607,"url":"https:\/\/alterego.cc\/wp\/2022\/09\/25\/itch-batch-downloader-v0-1-0-released\/","url_meta":{"origin":1962,"position":3},"title":"itch batch downloader v0.1.0 released!","author":"fabio","date":"25 September 2022","format":false,"excerpt":"downloads all your stuff from your itch.io account, useful if you bought on itch.io and want to have your purchases batch-downloaded and updated offline","rel":"","context":"In &quot;Development&quot;","block_context":{"text":"Development","link":"https:\/\/alterego.cc\/wp\/category\/development\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2022\/09\/itchio.webp?fit=759%2C427&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2022\/09\/itchio.webp?fit=759%2C427&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2022\/09\/itchio.webp?fit=759%2C427&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2022\/09\/itchio.webp?fit=759%2C427&ssl=1&resize=700%2C400 2x"},"classes":[]},{"id":438,"url":"https:\/\/alterego.cc\/wp\/2020\/01\/25\/this-software-is-not-supported-on-your-system-q\/","url_meta":{"origin":1962,"position":4},"title":"This software is not supported on your system","author":"fabio","date":"25 January 2020","format":false,"excerpt":"How to force-install something you are not allowed to install on your Mac in the first place? Nobody likes being told what they can and cannot do. And a customer success manager and his Mac Mini are no exception","rel":"","context":"In &quot;Software&quot;","block_context":{"text":"Software","link":"https:\/\/alterego.cc\/wp\/category\/software\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2022\/02\/SoftwareNotSupportedOnYourSystem.jpg?fit=618%2C432&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2022\/02\/SoftwareNotSupportedOnYourSystem.jpg?fit=618%2C432&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2022\/02\/SoftwareNotSupportedOnYourSystem.jpg?fit=618%2C432&ssl=1&resize=525%2C300 1.5x"},"classes":[]},{"id":699,"url":"https:\/\/alterego.cc\/wp\/2022\/10\/11\/windows-file-explorer-not-responding-fixed\/","url_meta":{"origin":1962,"position":5},"title":"Windows File Explorer Not Responding (Solved)","author":"fabio","date":"11 October 2022","format":false,"excerpt":"Windows File Explorer was freezing, stop responding and crashing. It drove me crazy for a while. Eventually I found out it was related to a mapped network share","rel":"","context":"In &quot;Software&quot;","block_context":{"text":"Software","link":"https:\/\/alterego.cc\/wp\/category\/software\/"},"img":{"alt_text":"","src":"https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2022\/10\/windows-file-explorer-icon.png?fit=860%2C674&ssl=1&resize=350%2C200","width":350,"height":200,"srcset":"https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2022\/10\/windows-file-explorer-icon.png?fit=860%2C674&ssl=1&resize=350%2C200 1x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2022\/10\/windows-file-explorer-icon.png?fit=860%2C674&ssl=1&resize=525%2C300 1.5x, https:\/\/i0.wp.com\/alterego.cc\/wp\/wp-content\/uploads\/2022\/10\/windows-file-explorer-icon.png?fit=860%2C674&ssl=1&resize=700%2C400 2x"},"classes":[]}],"jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/alterego.cc\/wp\/wp-json\/wp\/v2\/posts\/1962","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/alterego.cc\/wp\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/alterego.cc\/wp\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/alterego.cc\/wp\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/alterego.cc\/wp\/wp-json\/wp\/v2\/comments?post=1962"}],"version-history":[{"count":2,"href":"https:\/\/alterego.cc\/wp\/wp-json\/wp\/v2\/posts\/1962\/revisions"}],"predecessor-version":[{"id":1965,"href":"https:\/\/alterego.cc\/wp\/wp-json\/wp\/v2\/posts\/1962\/revisions\/1965"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/alterego.cc\/wp\/wp-json\/wp\/v2\/media\/1963"}],"wp:attachment":[{"href":"https:\/\/alterego.cc\/wp\/wp-json\/wp\/v2\/media?parent=1962"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/alterego.cc\/wp\/wp-json\/wp\/v2\/categories?post=1962"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/alterego.cc\/wp\/wp-json\/wp\/v2\/tags?post=1962"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}