question

LorinDavis-2849 avatar image
0 Votes"
LorinDavis-2849 asked VigneshDevendran-3510 answered

Unable to remove the default MS Edge desktop shortcut

Hi,

Currently our default browser is IE 11 and Windows 10 version used is 1909. As MS Edge is an in-built application, we are unable to remove the MS Edge desktop shortcut. Tried adding the following registry but no luck, the desktop shortcut still exists.

reg add HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer /v "DisableEdgeDesktopShortcutCreation" /t REG_DWORD /d "1" /f

Please help if there is a way to remove MS Edge desktop shortcut from all machines.

ms-edge
· 5
5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.

@LorinDavis-2849,
As you said built-in Edge application, I am assuming that you are talking about the Edge legacy browser(Please correct me if you are using the Edge Chromium browser).

Your registry seems correct to me. However, it can be possible that some issues occurred on your side.

As an alternative, you can try to remove that registry and again try to create it using the Powershell script below.

$registrypath = "HKLM:SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer"
$name = "DisableEdgeDesktopShortcutCreation"
$value = "1"
New-ItemProperty -Path $registryPath -Name $name -Value $value -PropertyType DWORD -Force | Out-Null

You can try to run this script as an administrator and see if it fixes the issue.

If possible after applying this registry, try to login to the newly created user profile and check whether it has the Edge shortcut or not.

0 Votes 0 ·

Hi,

Yes it is the Edge legacy browser but not the Edge Chromium browser. I have tried running this script as well but the shortcut still exists for the new user profile also.

0 Votes 0 ·

Sorry I tried once again with your script. The registry created successfully. Logged off and logged in as a different user, there was no Edge desktop shortcut on the new user profile. Whereas if I log back in I can see the Edge desktop shortcut still exists in my user profile.

So does the script remove for other user profiles only ?

0 Votes 0 ·

@LorinDavis-2849,
It looks like this registry can prevent creating Edge shortcuts but it will not remove/delete the already existing edge shortcuts.
For existing shortcuts, you can remove/ delete manually.

0 Votes 0 ·
Show more comments

1 Answer

VigneshDevendran-3510 avatar image
0 Votes"
VigneshDevendran-3510 answered

The old Edge legacy browser cannot be uninstalled but the shortcut can be deleted manually from the desktop. It worked for me.

5 |1600 characters needed characters left characters exceeded

Up to 10 attachments (including images) can be used with a maximum of 3.0 MiB each and 30.0 MiB total.