Microsoft edge открывается при запуске windows 10 с рекламой

Некоторые пользователи Windows 11 и Windows 10 сталкиваются с тем, что при включении компьютера и входе в систему автоматически запускается браузер Microsoft Edge и не все из них находят это полезным. При этом нигде в автозагрузке браузер может и не отображаться, что затрудняет выяснение причин его открытия при входе в систему.

В этой пошаговой инструкции подробно о том, как отключить автоматический запуск Edge при входе в Windows несколькими способами и для разных сценариев появления рассматриваемой проблемы.

Простые способы отключить автозапуск браузера Edge

Далее рассмотрены варианты отключения самопроизвольного запуска Microsoft Edge при отсутствии вредоносного ПО на компьютере. Если же браузер запускается как при включении, так и в произвольные моменты времени с открытыми сомнительными сайтами или рекламой, сам открывает вкладки, то методы будут другими: Что делать, если сам открывается браузер с рекламой.

Сначала — несколько простых способов, один из которых с большой вероятностью поможет решить проблему:

  1. Нажмите правой кнопкой мыши по кнопке «Пуск», выберите пункт «Выполнить», введите shell:startup в окно «Выполнить» и нажмите Enter. Если в открывшейся папке будет ярлык Microsoft Edge, удалите его.
  2. Откройте Параметры Windows и перейдите в раздел «Учетные записи» — «Варианты входа», отключите пункт «Автоматически сохранять мои перезапускаемые приложения из системы и перезапускать их при повторном входе». Разделы в параметрах будут одинаковы для Windows 11 и Windows 10, несмотря на разное визуальное оформление.
    Отключить перезапуск программ при загрузке Windows

  3. Зайдите в Настройки Microsoft Edge (три точки справа вверху — Настройки), в меню параметров (три полосы слева вверху) откройте пункт «Система и производительность» и отключите пункт «Ускорение запуска».
    Отключить ускорение запуска Microsoft Edge

  4. Если вы включали автозапуск панели Edge, это также может привести к автоматическому запуску браузера. Можно попробовать отключить её. Подробнее: Как настроить и использовать панель Edge.

После того, как описанные действия были выполнены, попробуйте выполнить перезагрузку, либо завершить работу и снова включить компьютер, наблюдая, продолжает ли Edge запускаться сам по себе.

Дополнительные способы решить проблему

В случае, если предыдущие 4 шага не привели к нужному результату, попробуйте изменить параметры автозапуска Edge в реестре:

  1. Нажмите правой кнопкой мыши по кнопке Пуск, выберите пункт «Выполнить», введите regedit и нажмите Ок или Enter.
  2. В открывшемся редакторе реестра в строку «адреса» вставьте путь
    HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate\Clients\{56EB18F8-B008-4CBD-B6D2-8C97FE7E9062}\Commands\on-logon-autolaunch

    и нажмите Enter для перехода в соответствующий раздел реестра.

  3. В правой панели редактора реестра нажмите в пустом пространстве правой кнопкой мыши и создайте параметр DWORD с именем AutoRunOnLogon и значением 0 (для изменения значения дважды нажимаем по параметру и вводим нужное).
    Отключить автоматический запуск Edge при входе в Windows в реестре

  4. В том же расположении в реестре загляните в раздел on-logon-startup-boost, если там присутствует параметр AutoRunOnLogon равный 1, измените его значение на 0.
  5. В подразделе on-os-upgrade присутствует параметр AutoRunOnOSUpgrade. Без необходимости его изменять не следует, но, если изменить на значение на 0, это должно отключить запуск Edge после обновления системы.

И ещё несколько возможностей:

  • Внимательно изучите элементы автозагрузки. Подробнее: Как убрать программы из автозагрузки Windows 11, Автозагрузка программ Windows 10.
  • Попробуйте проверить, запускается ли Edge, если использовать чистую загрузку Windows. Если в этом случае запуск не происходит, можно предположить, что какие-то сторонние службы или программы выполняют запуск браузера.

Распределенное обучение с TensorFlow и Python

AI_Generated 05.05.2025

В машинном обучении размер имеет значение. С ростом сложности моделей и объема данных одиночный процессор или даже мощная видеокарта уже не справляются с задачей обучения за разумное время. Когда. . .

CRUD API на C# и GraphQL

stackOverflow 05.05.2025

В бэкенд-разработке постоянно возникают новые технологии, призванные решить актуальные проблемы и упростить жизнь программистам. Одной из таких технологий стал GraphQL — язык запросов для API,. . .

Распознавание голоса и речи на C#

UnmanagedCoder 05.05.2025

Интеграция голосового управления в приложения на C# стала намного доступнее благодаря развитию специализированных библиотек и API. При этом многие разработчики до сих пор считают голосовое управление. . .

Реализация своих итераторов в C++

NullReferenced 05.05.2025

Итераторы в C++ — это абстракция, которая связывает весь экосистему Стандартной Библиотеки Шаблонов (STL) в единое целое, позволяя алгоритмам работать с разнородными структурами данных без знания их. . .

Разработка собственного фреймворка для тестирования в C#

UnmanagedCoder 04.05.2025

C# довольно богат готовыми решениями – NUnit, xUnit, MSTest уже давно стали своеобразными динозаврами индустрии. Однако, как и любой динозавр, они не всегда могут протиснуться в узкие коридоры. . .

Распределенная трассировка в Java с помощью OpenTelemetry

Javaican 04.05.2025

Микросервисная архитектура стала краеугольным камнем современной разработки, но вместе с ней пришла и головная боль, знакомая многим — отслеживание прохождения запросов через лабиринт взаимосвязанных. . .

Шаблоны обнаружения сервисов в Kubernetes

Mr. Docker 04.05.2025

Современные Kubernetes-инфраструктуры сталкиваются с серьёзными вызовами. Развертывание в нескольких регионах и облаках одновременно, необходимость обеспечения низкой задержки для глобально. . .

Создаем SPA на C# и Blazor

stackOverflow 04.05.2025

Мир веб-разработки за последние десять лет претерпел коллосальные изменения. Переход от традиционных многостраничных сайтов к одностраничным приложениям (Single Page Applications, SPA) — это. . .

Реализация шаблонов проектирования GoF на C++

NullReferenced 04.05.2025

«Банда четырёх» (Gang of Four или GoF) — Эрих Гамма, Ричард Хелм, Ральф Джонсон и Джон Влиссидес — в 1994 году сформировали канон шаблонов, который выдержал проверку временем. И хотя C++ претерпел. . .

C# и сети: Сокеты, gRPC и SignalR

UnmanagedCoder 04.05.2025

Сетевые технологии не стоят на месте, а вместе с ними эволюционируют и инструменты разработки. В . NET появилось множество решений — от низкоуровневых сокетов, позволяющих управлять каждым байтом. . .

Quick Answer

  • The easiest method to stop Microsoft Edge from opening on Startup in Windows is to remove it from the list of startup apps.
  • Click each file type and switch it to a different web browser to completely remove Microsoft Edge as a default browser.
  • If you pick a different web browser as your default instead of Microsoft Edge, it will prevent Edge from launching automatically for opening external links or suggestions.

Microsoft Edge is undoubtedly a feature-rich browser with many nifty features, like voice typing and vertical tabs. However, if you don’t prefer using it as your default browser, facing it every time you start your computer can be unpleasing. Fortunately, you can disable Edge by adjusting specific settings on your Windows PC. Here’s how to stop Microsoft Edge from opening on startup on Windows 10/11.

Microsoft Edge logo with a red cross

How to Stop Microsoft Edge From Opening on Startup in Windows 10/11?

There are several ways to prevent Microsoft Edge from launching at your system startup. You can disable it from the native startup app settings or configure additional Windows properties to get the desirable result. Let’s look at all these methods in detail below.

Method 1 – Configure Startup Apps

The easiest method to stop Microsoft Edge from opening on Startup in Windows is to remove it from the list of startup apps. Since startup apps run instantly after system bootup, removing Edge from the list will prevent it from launching automatically. Here’s what you need to follow:

1. Press the Windows key and search for Startup Apps to open it.

2. Scroll down, locate Microsoft Edge, and turn off its toggle to disable it from opening on Windows startup.

Microsoft Edge toggle under Windows startup app list

Method 2 – Use Task Manager to Stop Microsoft Edge From Opening on Startup

The Task Manager is an administrative monitoring program that keeps all information about active processes and applications, including the startup apps. Consequently, you can use it to stop Microsoft Edge from opening on startup. Follow these steps for an easy fix.

1. Press the Ctrl+Shift+Esc key to open the Task Manager app.

2. Expand the Startup Apps tab and right-click Microsoft Edge to disable it.

Microsoft Edge under startup apps on the Windows taskbar window

Method 3 – Disable Windows Spotlight Images

Windows Spotlight is an in-built feature on Microsoft Windows that displays different background images and offers suggestions on your lock screen. These suggestions often contain links that open up instantly in Microsoft Edge when you unlock your PC. You can disable this feature from the settings app to prevent this sudden Edge browser pop-up window on startup. Here’s how it can be done.

1. Open the Settings app by pressing the Windows + I hotkey.

2. Expand Personalization in the left sidebar and click Lock Screen to configure its settings.

3. Switch lock screen personalization to Picture or Slideshow instead of Windows Spotlight.

Picture mode selected under lock screen settings of windows

Method 4 – Remove Edge as Your Default Browser

If you pick a different web browser as your default instead of Microsoft Edge, it will prevent Edge from launching automatically for opening external links or suggestions. Consequently, the problem of Microsoft Edge launching automatically at startup will be resolved.

1. Press the Windows key and search for Default Apps to open the associated settings.

2. Type Microsoft Edge in the application search bar and click to open it.

3. This will show various file types that use the Edge browser as default.

file types using Microsoft Edge as default browser

4. Click each file type and switch it to a different web browser to completely remove Microsoft Edge as a default browser.

changing the default file type to firefox

Method 5 – Change Browser Settings to Stop Microsoft Edge From Opening on Startup

Besides tweaking Windows settings, you can also configure the in-built Edge browser settings to stop it from running during startup on Windows 11/10. Here’s the process you need to follow.

1. Open Microsoft Edge and click the three-dot menu in the top-right to open Settings.

2. Expand the System and Performance tab and disable Startup Boost on the right.

3. Finally, turn off the toggle to run background extensions when Microsoft Edge is closed.

toggling off startup boost and background extensions under system and preferences tab

Method 6 – Disable Task Scheduler Entries for Microsoft Edge

Task Scheduler is a system tool that contains a list of automated predefined actions. If it includes a scheduled startup task for Microsoft Edge, it will execute automatically without your permission. Fortunately, you can review and disable it by accessing the task scheduler properties.

1. Open the Task Scheduler app by searching it in the Start menu.

2. Double-click the Task Scheduler Library tab and locate tasks scheduled by Microsoft Edge.

3. Right-click the Microsoft Edge task and click Disable to remove it.

Method 7 – Adjust Windows Settings to Stop Microsoft Edge From Opening on Startup

If Microsoft Edge opens instantly after you unlock your Windows PC, an existing Windows configuration might be its culprit. Access the Windows settings app to change and prevent it from happening. Here’s how.

1. Press the Windows + I hotkey to open the Settings app.

2. Switch to the Accounts tab and press Sign-in Options on the right.

3. Finally, turn off the toggle button for ‘Automatically Save my restartable apps and restart them when I sign back in.’

toggle off save my restartable apps under Windows Sign-in options

Method 8 – Use Group Policy Editor

Another nifty technique to stop Microsoft Edge from opening on Windows startup is to change its settings inside the local group policy editor. Follow these steps for an easy solution.

1. Open the Run window by pressing the Windows + R hotkey and type “gpedit. msc” to open the Group Policy Editor window.

launching group policy editor from run window

2. Navigate to the following path inside Group Policy Editor:

Computer Configuration> Administrative Templates> Windows Components> Microsoft Edge

3. Locate ‘Allow Microsoft Edge to pre-launch at Windows startup when the system is idle, and each time Microsoft Edge is closed‘ on the right and double-click to configure its value.

selecting allow Microsoft edge to launch at startup from Group Policy editor

4. Set its value to Disabled and click Apply to save changes.

disabling allow Microsoft edge to launch at startup from Group Policy editor

5. Repeat the same steps for the ‘Allow Microsoft Edge to start and load the Start and New Tab page at Windows startup, and each time Microsoft Edge is closed‘ item under Microsoft Edge.

disabling allow Microsoft edge to load new tab using Group Policy editor

6. Restart your PC to view the applied changes.

Method 9 – Remove Desktop Shortcuts for Microsoft Edge

If Microsoft Edge automatically creates new shortcuts on your desktop after each boot, you can permanently run our custom registry editor file to remove these Edge desktop shortcuts. Here’s how:

1. Download our removeedgeshortcut registry file from this Google Drive link.

2. Double-click the downloaded registry file to open it on Windows.

3. Finally, click Yes to add the registry values to Windows 10/11.

Wrapping Up

So these are all the methods to stop the Microsoft Edge browser from launching automatically at startup in Windows 10 or 11. If you found it helpful, spread the word with your friends and subscribe to GadgetsToUse for more awesome guides. Also, don’t forget to check the below links for other helpful tips and tricks on Windows 11.

You might be interested in:

  • 6 Ways to Pin Any App or Feature to Taskbar in Windows 11
  • 15 Ways to Fix Slow Start Menu Search on Windows 11/10
  • 2 Ways to Add an Extra Taskbar to Windows 11
  • 11 Ways to Disable All Advertisements in Windows 10/11

You can also follow us for instant tech news at Google News or for tips and tricks, smartphones & gadgets reviews, join GadgetsToUse Telegram Group, or for the latest review videos subscribe GadgetsToUse Youtube Channel.

Was this article helpful?

YesNo

Want to get rid of the Microsoft Edge download ad which appears in the Windows 10 Start menu? The blog post has a solution.

try new microsoft edge

Microsoft recently rolled out latest update for Windows 10 i.e. Windows 10 May 2020 Update. After installing the update some users reporting when they click on the search icon available on the taskbar, Microsoft Download ad appear with message:

Try the new browser recommended by Microsoft

The New Microsoft Edge is on your PC and bring you best of the web

Accompanied by link to launch it

Some users reporting that when they search for browser like Chrome, Firefox, Internet Explorer, and even edge legacy.

Recommend tab appear in start menu with link to open new Microsoft Edge.

Some users reporting that they’re seeing the same tab when they click on the start button.

recommend microsoft edge

This is nothing new, Microsoft is doing this from the day, they make first stable version of Microsoft Edge Chromium available for download. Earlier users have already reported about different Edge ads.

Microsoft Edge ad appears under the Suggested section in Start menu or while typing Internet Explorer in Start menu search box with a message which reads:

Still using Firefox? Microsoft Edge is here

The New Microsoft Edge is here” with a download link

How to Get Rid of Microsoft Edge Windows 10 Start Menu

With these ads the company doing its best to make users install a new Edge browser on their computer or laptops. To achieve this showing Microsoft Edge ads in Windows 10 Start menu search bar.

Promoting Microsoft Edge is good, but this is not a good idea to doing it. In case, you’re seeing any of the ad discussed above or similar, and you don’t want to see them, fret not! There’s a way using which you can get rid of the ads.

Microsoft Edge advertisement is appearing in the Start menu of Windows 10 because the “Show suggestions occasionally in start” is enabled. All you have to do is to turn it off. Here’s how you can do that:

Launch the Settings app and then Personalization > Start.

Show suggestions occasionally in start in windows 10

On the right side, you need to scroll down and find the option which reads “Show suggestions occasionally in start“. You need to turn off this setting by moving the slider to Off position.

Alternatively, you can also use registry hack to get rid of Edge ads. Here’s what you need to do:

Launch Registry Editor and navigate to the following key: HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager

On the right side, you need to either modify or create DWORD 32-bit value called “SubscribedContent-338388Enabled” and set its Value data to 0.

disable microsoft edge ads registry hack

Restart your computer and you will no longer see suggestion to download and launch Microsoft Edge.

Do you see any Microsoft Edge ad in Start menu or search or anywhere else? Does solution help you to turn off these ads? Let us know in the comments.

Viney Dhiman, the mind behind GeekerMag, is a seasoned content writer with over 12 years of experience. Specializing in simplifying complex tech concepts, he covers Windows OS, Android, iOS, web apps, and product reviews. His work can be found on popular tech websites like Gizmodo and The Verge, and he has been interviewed by the Microsoft Edge team.

Если вы видите это сообщение, значит, произошла проблема с загрузкой файлов в стилей (CSS) нашего сайта. Попробуйте сбросить кэш браузера (Ctrl+F5).
Если это не поможет, а вы находитесь в регионе, где возможны ограничения интернет-трафика с российских серверов — воспользуйтесь VPN.

Microsoft edge предустановлен на windows 10. Абсолютно им не пользуюсь. Использую либо гугл, либо яндекс. Во время любой сессии — просмотр фильма или просто поискать-почитать, самопроизвольно открывается Microsoft edge с рекламой. На панели появляется ярлык. Если браузер Microsoft edge не закрыть, то открывается все больше и больше рекламных вкладок. Как избавиться? Пожалуйста, пошагово, как для чайника. Спасибо.

Чистила утилитой, антивирусник стоит.

Такие казусы могут быть вызваны как наличием вируса (а антивирусы далеко не все их обнаруживают), так и системными настройками. Проверьте автозагрузку, назначенные задания, программы по умолчанию, отключите все лишнее. Если не поможет, попробуйте удалить Microsoft edge. И еще есть вариант обратиться в техподдержку производителя.

Знаете ответ?

Понравилась статья? Поделить с друзьями:
0 0 голоса
Рейтинг статьи
Подписаться
Уведомить о
guest

0 комментариев
Старые
Новые Популярные
Межтекстовые Отзывы
Посмотреть все комментарии
  • Как сделать одну картинку на два монитора windows 10
  • Speedtest приложение для windows 10
  • Как почистить проводник windows 10
  • Сколько нужно оставить места на диске с для windows 11
  • Программа для скачивания обновлений для windows 10