Modern builds of Windows 10 and Windows 11 come with the Microsoft Edge browser preinstalled, which should replace the deprecated Internet Explorer (How to remove IE on Windows). Some users are annoyed that the Microsoft Edge browser automatically opens when they sign in to Windows. If you use another browser or want to save some processing power on your computer, you can prevent Edge from launching automatically on Windows startup.
Here’s a look at the main ways to disable the Edge browser from launching automatically when you sign in to Windows:
1. Disable automatic startup of Microsoft Edge:
- Verify whether the Edge shortcut has been added to Windows Startup. run
shell:startup
command (or navigate%AppData%\Microsoft\Windows\Start Menu\Programs\Startup
, Delete the Microsoft Edge shortcut from the directory, if it exists; - Open Task Manager (
taskmgr.exe
), go to start up tab. Now locate Microsoft Edge in the list, right-click on it and select disable, This will disable the autostart of the application.
2. Disable Preloading for Microsoft Edge
It is possible to disable Microsoft Edge preload. Please note that many Edge background processes are launched during Windows startup and these processes will continue to run even after the browser is closed.
Please note that when launching Windows, various background edge processes are also launched, which continue to run even when the browser is closed. These processes help the Edge browser to launch faster on Windows. It is possible to disable Edge’s startup boost:
- from browser settings: Open Edge, click on the menu in the upper right corner and choose Adjustmentor go to
edge://settings/system
in address bar. navigate to system and performance section and disable startup boost Option. - with group policy: Open the Local GPO Editor (
gpedit.msc
) and navigate to Computer Configuration -> Administrative Templates -> Windows Components -> Microsoft Edge. trace Allow Microsoft Edge to pre-launch on Windows startup, when the system is idle and every time Microsoft Edge is closed Enable and select the policy policy in the list stop pre-launching In its setting; - Using PowerShell: Create a new registry property Startup Boost Enabled = 0,
$regPath = "HKLM:\SOFTWARE\Policies\Microsoft\Edge"
New-Item -Path $regPath -Force | Out-Null
New-ItemProperty -Path $regPath -Name StartupBoostEnabled -Value 0 -PropertyType DWORD -Force | Out-Null
3. Check Edge Autostart Settings in Registry, Open Registry Editor (regedit.exe) and navigate to HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\Microsoft\EdgeUpdate\Clients\{56EB18F8-B008-4CBD-B6D2-8C97FE7E9062}\Commands\on-logon-autolaunch
Create a DWORD 32-bit parameter in the specified key with the name AutoRunOnLogon and the value 0,
then check if AutoRunOnLogon = 1 is present in the parameter on-logon-startup-boost section. If such a parameter exists, change its value to 0 or remove it.
4. Disable MS Edge Scheduler tasks
There are a number of MS Edge tasks in the Windows Task Scheduler that the browser can run automatically on certain triggers. You can disable these scheduler tasks:
- Open the Task Scheduler console (
taskschd.msc
, - Navigate to Task Scheduler Library section and disable MicrosoftEdgeShadowStackRollbackTask, MicroosftEdgeUpdateTaskMachineCoreAnd microsoft edge update task machine ua Work;
Or you can use PowerShell to disable scheduler tasks:Disable-ScheduledTask -TaskName MicrosoftEdgeShadowStackRollbackTask
Disable-ScheduledTask -TaskName MicroosftEdgeUpdateTaskMachineCore
Disable-ScheduledTask -TaskName MicroosftEdgeUpdateTaskMachineUA
5. Disable Apps Auto Reopening After Restart:
Windows 10/11 can automatically launch any applications that were running before the last time you shut down or restarted your computer. If the Automatic restart option is enabled and you had the Microsoft Edge browser open before you shut down/restarted your computer, it will start automatically the next time you sign in to Windows. You can disable automatically restoring previously opened programs after Windows restarts.
- go to Adjustment , Accounts , sign-in options (You can quickly access this section with the URI shortcut command:
ms-settings:signinoptions
, - disable Automatically save my restartable apps when I sign out and restart them when I sign in in option restart the apps section.
If you use the Windows Spotlight app (which shows the background image) on the lock screen, it may launch Edge automatically. To disable Spotlight, navigate to Adjustment , privatization , background And select a picture or slideshow as your lock screen background.
In some Windows 10 builds, using the space bar to wake from sleep launches Edge. Use any other key on the keyboard to wake the computer.
Leave a Comment