<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Opera automatically sets itself as the default browser on installation (Windows)]]></title><description><![CDATA[<p dir="auto">I noticed that Opera automatically sets itself as the default browser on installation in Windows, without asking the user, with no interaction from the user at all.</p>
<p dir="auto">I just wanted to voice the fact that I think is not a good practice and I am hopeful that Opera will either discontinue the behavior, or at least ask the user if it's OK to set Opera as the default during the installation process.</p>
<p dir="auto">Thank you for your consideration.</p>
]]></description><link>https://forums.opera.com/topic/66988/opera-automatically-sets-itself-as-the-default-browser-on-installation-windows</link><generator>RSS for Node</generator><lastBuildDate>Sun, 07 Jun 2026 02:57:43 GMT</lastBuildDate><atom:link href="https://forums.opera.com/topic/66988.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 12 Oct 2023 14:41:48 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Fri, 15 Nov 2024 09:15:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/869108">@Labna</a> said in <a href="/post/364102">Opera automatically sets itself as the default browser on installation (Windows)</a>:</p>
<blockquote>
<p dir="auto">----launchbrowser=0</p>
</blockquote>
<p dir="auto">I assume you meant <code>--launchbrowser=0</code>.</p>
]]></description><link>https://forums.opera.com/post/364106</link><guid isPermaLink="true">https://forums.opera.com/post/364106</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Fri, 15 Nov 2024 09:15:42 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Fri, 15 Nov 2024 07:36:45 GMT]]></title><description><![CDATA[<p dir="auto">After trying few things there is some changes that needs to be done for Winget to work properly :</p>
<ol>
<li>I wrote a script with multiples <code>winget update</code> in a row, beginning with some specific overrride options, then doing the  global update.</li>
<li>Trying with the last update the mentioned parameters in the <code>--help</code> option  with the installer. apparently you need to add <code>--</code> in front of the options to be functional (it wasn't clear)</li>
<li>Winget accepts <code>--override</code> only with one package at a time</li>
</ol>
<p dir="auto">So, it's my final version in my script :</p>
<pre><code class="language-cmd">winget update --silent --accept-package-agreements --accept-source-agreements --disable-interactivity --override "--setdefaultbrowser=0 --desktopshortcut=0 --startmenushortcut=0 --pintotaskbar=0 ----launchbrowser=0 --silent" Opera.Opera
winget update --silent --accept-package-agreements --accept-source-agreements --all --wait --disable-interactivity 
</code></pre>
<p dir="auto">If this doesn't work for you, my last solution is to block the version used in Winget so it'll ignore any future update.</p>
]]></description><link>https://forums.opera.com/post/364102</link><guid isPermaLink="true">https://forums.opera.com/post/364102</guid><dc:creator><![CDATA[Labna]]></dc:creator><pubDate>Fri, 15 Nov 2024 07:36:45 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Fri, 25 Oct 2024 02:16:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/869108">@Labna</a> Thanks.</p>
<blockquote>
<p dir="auto">The installer parameter copyonly=[0|1], is usable too but not sure of what append after this kind of install.</p>
</blockquote>
<p dir="auto">See the "--singleprofile=1|0" section at <a href="https://reddit.com/r/operabrowser/wiki/opera/installer_commands/" target="_blank" rel="noopener noreferrer nofollow ugc">https://reddit.com/r/operabrowser/wiki/opera/installer_commands/</a> for one example of copyonly.</p>
]]></description><link>https://forums.opera.com/post/362624</link><guid isPermaLink="true">https://forums.opera.com/post/362624</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Fri, 25 Oct 2024 02:16:44 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Thu, 24 Oct 2024 08:20:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/122">@burnout426</a> said in <a href="/post/334411">Opera automatically sets itself as the default browser on installation (Windows)</a>:</p>
<blockquote>
<p dir="auto">Haven't messed with winget and don't really know how it's all set up, but there might be a way to pass --setdefaultbrowser=0 to the winget upgrade command you use to upgrade Opera. Or, if you do winget upgrade --all, there might be some file that you can put --setdefaultbrowser=0 in for Opera so its upgrade command passes that to Opera's installer.<br />
But, that's assuming winget makes use of the Opera installer at all. If the Opera winget package is just Opera's install files that winget just extracts or something, winget would need to support not making Opera the default browser on upgrade.<br />
Something to investigate though.</p>
</blockquote>
<p dir="auto">For Winget you have to use the <code>--override</code> parameter.</p>
<p dir="auto">For example : <code>&gt; winget update --override "setdefaultbrowser=0 desktopshortcut=0 startmenushortcut=0 pintotaskbar=0 launchbrowser=0" Opera.Opera</code></p>
<p dir="auto">The installer parameter <code>copyonly=[0|1]</code>, is usable too but not sure of what append after this kind of install.<br />
: If true, the installer will only copy the files to the installation folder and will otherwise not perform any modification on the system.</p>
<p dir="auto">For the <code>&gt; winget update --all</code> I use <code>&gt; winget update --silent --accept-package-agreements --accept-source-agreements --all --wait --disable-interactivity --override "setdefaultbrowser=0 desktopshortcut=0 startmenushortcut=0 pintotaskbar=0 launchbrowser=0"</code> and as many installer ignore unknown parameters it works most of the time.</p>
]]></description><link>https://forums.opera.com/post/362607</link><guid isPermaLink="true">https://forums.opera.com/post/362607</guid><dc:creator><![CDATA[Labna]]></dc:creator><pubDate>Thu, 24 Oct 2024 08:20:10 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Sun, 28 Jan 2024 23:42:11 GMT]]></title><description><![CDATA[<p dir="auto">Desinstalling completly Opera and using another browser solved the problem.<br />
There are enough alternatives available, there is no need to waste time trying to find a workaround.<br />
I'll check in a year if this behavior is corrected.</p>
]]></description><link>https://forums.opera.com/post/341260</link><guid isPermaLink="true">https://forums.opera.com/post/341260</guid><dc:creator><![CDATA[JoohnDooe]]></dc:creator><pubDate>Sun, 28 Jan 2024 23:42:11 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Fri, 15 Dec 2023 08:14:17 GMT]]></title><description><![CDATA[<p dir="auto">Same behavior for me since a few months. I am using Opera as my primary browser on both PC and cellphone since 2010, but nowadays because of my company SSO policy, I need to open local files and links in other apps in a different browser. Opera keeps making itself the default browser around once or twice every week and I need to go to Windows Default Apps and reset the settings over and over. Also, I am not sure what is the deal with frequent popups from Windows about allowing Opera to give access to Public/Private network. No other browser requires any such accesses. The only way forward I see at this point to open links in different browser for sure is to delete Opera from my PC.</p>
<p dir="auto">I tried uninstalling Opera and reinstalled it with 'Make Opera your default browser' deselected, but the moment it got installed, it was the default browser again. I didn't delete user data at the time of uninstalling but the way Opera is behaving these days, not sure even that is going to help it.</p>
]]></description><link>https://forums.opera.com/post/337374</link><guid isPermaLink="true">https://forums.opera.com/post/337374</guid><dc:creator><![CDATA[jatinsanghvi]]></dc:creator><pubDate>Fri, 15 Dec 2023 08:14:17 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Mon, 04 Dec 2023 16:24:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/507131">@holmes8888</a> Still strange. None of my Operas I have installed do that on update.</p>
]]></description><link>https://forums.opera.com/post/336348</link><guid isPermaLink="true">https://forums.opera.com/post/336348</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Mon, 04 Dec 2023 16:24:56 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Mon, 04 Dec 2023 15:40:30 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/122">@burnout426</a> Unfortunately, the reinstallation steps didn't help. Opera updated itself again and set itself as the default browser.</p>
<p dir="auto">It looks like this is done not by the installation itself, but by Opera when you run it the first time after it updates. When I ran Opera after the latest update, I got multiple Windows prompts telling me that Opera wants to make changes to my device. I allowed the changes and then checked 'Default Apps' in Windows and confirmed that Opera became the default browser again.</p>
]]></description><link>https://forums.opera.com/post/336342</link><guid isPermaLink="true">https://forums.opera.com/post/336342</guid><dc:creator><![CDATA[holmes8888]]></dc:creator><pubDate>Mon, 04 Dec 2023 15:40:30 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Mon, 20 Nov 2023 18:22:28 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/122">@burnout426</a> Thank you, I just completed the steps to reinstall Opera. Will now wait for the next Opera update to see if the issue is resolved.</p>
]]></description><link>https://forums.opera.com/post/334506</link><guid isPermaLink="true">https://forums.opera.com/post/334506</guid><dc:creator><![CDATA[holmes8888]]></dc:creator><pubDate>Mon, 20 Nov 2023 18:22:28 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Mon, 20 Nov 2023 02:24:00 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/659337">@giannitrib</a></p>
<p dir="auto">Haven't messed with winget and don't really know how it's all set up, but there might be a way to pass <code>--setdefaultbrowser=0</code> to the winget upgrade command you use to upgrade Opera. Or, if you do winget upgrade --all, there might be some file that you can put <code>--setdefaultbrowser=0</code> in for Opera so its upgrade command passes that to Opera's installer.</p>
<p dir="auto">But, that's assuming winget makes use of the Opera installer at all. If the Opera winget package is just Opera's install files that winget just extracts or something, winget would need to support not making Opera the default browser on upgrade.</p>
<p dir="auto">Something to investigate though.</p>
]]></description><link>https://forums.opera.com/post/334411</link><guid isPermaLink="true">https://forums.opera.com/post/334411</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Mon, 20 Nov 2023 02:24:00 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Sat, 18 Nov 2023 23:32:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/73">@leocg</a> that may be the case but the default when updating with winget (microsoft's package manager of choice now) it sets it as a default browser. It should be that when going through that route it doesn't change the default browser settings</p>
]]></description><link>https://forums.opera.com/post/334361</link><guid isPermaLink="true">https://forums.opera.com/post/334361</guid><dc:creator><![CDATA[giannitrib]]></dc:creator><pubDate>Sat, 18 Nov 2023 23:32:15 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Sat, 18 Nov 2023 23:21:53 GMT]]></title><description><![CDATA[<p dir="auto">i am on the verge of uninstalling opera because after just updating it today it not only add itself to the taskbar yet again without authorisation (this has been happening for a long time and i manually remove it from the task bar) but also set itself as the default browser<br />
I have it as like my 3rd browser and i don't expect this sort of behaviour and it doesn't happen with any other browser i use<br />
Sort it out opera - not acceptable</p>
]]></description><link>https://forums.opera.com/post/334360</link><guid isPermaLink="true">https://forums.opera.com/post/334360</guid><dc:creator><![CDATA[giannitrib]]></dc:creator><pubDate>Sat, 18 Nov 2023 23:21:53 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Thu, 16 Nov 2023 10:22:42 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/507131">@holmes8888</a> I can't reproduce that.</p>
<p dir="auto">I would download the Opera installer, goto the URL <code>opera://about</code>, take note of the "install" path and close Opera. Then, uninstall Opera (do not choose to delete your data when uninstalling). Then, delete the install folder (it will be left behind after the uninstallation). Then, delete everything in "C:\Windows\temp" and "C:\Users\yourusername\AppData\Local\temp".</p>
<p dir="auto">Then, launch the Opera installer, click "options", uncheck the option to make Opera the default browser, review everything else, and install.</p>
<p dir="auto">Hopefully that will fix things where the updater won't try to pull a fast one.</p>
]]></description><link>https://forums.opera.com/post/333996</link><guid isPermaLink="true">https://forums.opera.com/post/333996</guid><dc:creator><![CDATA[burnout426]]></dc:creator><pubDate>Thu, 16 Nov 2023 10:22:42 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Wed, 15 Nov 2023 23:17:16 GMT]]></title><description><![CDATA[<p dir="auto">Well, actually it does. I understand that Opera isn't <strong>supposed</strong> to change the setting, but that doesn't mean that there isn't a bug.</p>
<p dir="auto">Opera just kept updating itself as usual, and one day it started setting itself as default browser after each update. Every time I have to manually revert the default browser using 'Default Apps' settings in Windows 11. This started happening around the same time as the splash screen and the startup sound were introduced.</p>
]]></description><link>https://forums.opera.com/post/333954</link><guid isPermaLink="true">https://forums.opera.com/post/333954</guid><dc:creator><![CDATA[holmes8888]]></dc:creator><pubDate>Wed, 15 Nov 2023 23:17:16 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Wed, 15 Nov 2023 20:40:59 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/507131">@holmes8888</a> Opera doesn't change it during automatic updates.</p>
]]></description><link>https://forums.opera.com/post/333921</link><guid isPermaLink="true">https://forums.opera.com/post/333921</guid><dc:creator><![CDATA[leocg]]></dc:creator><pubDate>Wed, 15 Nov 2023 20:40:59 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Wed, 15 Nov 2023 20:30:07 GMT]]></title><description><![CDATA[<p dir="auto">This happens to me as well. I can't disable this during the installation, because the installation happens silently when Opera updates itself.</p>
]]></description><link>https://forums.opera.com/post/333920</link><guid isPermaLink="true">https://forums.opera.com/post/333920</guid><dc:creator><![CDATA[holmes8888]]></dc:creator><pubDate>Wed, 15 Nov 2023 20:30:07 GMT</pubDate></item><item><title><![CDATA[Reply to Opera automatically sets itself as the default browser on installation (Windows) on Thu, 12 Oct 2023 22:50:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="https://forums.opera.com/uid/630158">@cadill</a> You can disable that option during the installation.</p>
]]></description><link>https://forums.opera.com/post/329990</link><guid isPermaLink="true">https://forums.opera.com/post/329990</guid><dc:creator><![CDATA[leocg]]></dc:creator><pubDate>Thu, 12 Oct 2023 22:50:03 GMT</pubDate></item></channel></rss>