Dec 13 2020 02:31 AM
Edge boots with a restore pages message constantly, which doesn't go away unless you click on it.
There seem to be many options to disable it on chrome and chromium, but haven't found any that work for Edge Dev.
Dec 13 2020 03:01 AM
Mar 17 2021 06:38 AM - edited Mar 17 2021 06:42 AM
@NewbUser This was bugging (pun intended) me too. I'm using Windows 10 with Edge, so YRMV, but this worked for me:
Open your browser. Click on the 3 dots all the way to the top right of the screen.
Click on "Settings"
Click "System"
At the top right, turn off "Startup Boost"
If you have an old school hard drive, this might slow down startup of your browser a bit, but if you have a SSD, probably won't notice a difference.
Mar 17 2021 12:01 PM - edited Mar 17 2021 12:03 PM
Hi,
Welcome to the community,
please take a moment and review the guidelines,
one of them is not cross-posting/duplicate posting, the other one is not bumping old threads.
Thank you
Mar 18 2021 05:02 PM
Apr 13 2021 09:03 AM
@Alexandra-R - thanks for the suggestion, but unfortunately this does not work for me.
On restart/startup this popup constantly nags until it is clicked on (closed).
Running Version 89.0.774.76 (Official build) (64-bit)
Here's how my settings look for your information:
May 12 2021 02:02 PM
Sep 01 2021 09:14 AM
I have this problem also, on multiple devices. On all devices:
Is there any additional place to tell the browser not to restore pages/tabs?
(So far this is the only thing in new Edge that is seriously tempting me to return to Chrome... slowly driving me crazy.)
Sep 02 2021 09:08 AM
Sep 02 2021 09:01 PM
Sep 02 2021 09:17 PM
Sep 03 2021 06:36 AM
It's unclear to me why it should be appearing at all.
If I crash with tabs open and want to get them back, I'll go to history and re-open them.
But this message pops up when no session has been abnormally terminated, so it's doubly irritating to not be able to turn it off.
Sep 06 2021 10:01 AM
Oct 04 2021 05:56 PM
There is no such registry option in Win 11, and this issue persists unfortunately.
Looks like Microsoft removed the registry entry, but didn't fix the problem.
Crazy!
Oct 04 2021 06:46 PM
Nov 07 2021 10:07 PM
@NewbUser from reading this post it looks like there is not a baked in setting to do this or even a reg hack. However here is some powershell code I found that will close all edge processes, including open windows, gracefully. By gracefully I mean once the windows close and I reopen them I do not see the restore pages prompt. Also I tested this with Close-Process in powershell and found that the restore pages prompt still appears on reopening edge.
$edgeProcesses = Get-Process msedge -ErrorAction SilentlyContinue
if($edgeProcesses.Count -le 0)
{
Write-Verbose -Verbose "No edge processes were found"
#exit
}
while($edgeProcesses.Count -gt 0)
{
foreach($process in $edgeProcesses)
{
$process.CloseMainWindow() | Out-Null
}
$edgeProcesses = Get-Process msedge -ErrorAction SilentlyContinue
}
Nov 08 2021 05:35 AM - edited Nov 08 2021 05:36 AM
As of recent updates, the problem has stopped occurring for me. There's still no setting as far as I can tell, but I no longer get nagged about restoring tabs every time I open the browser on a different device.
Nov 16 2021 02:38 PM
Nov 16 2021 03:29 PM
Nov 16 2021 03:37 PM