Preventing new Chromium Edge from making desktop shortcut on c:\users\public\desktop

MD5Hash 151 Reputation points
2020-11-12T23:04:02.543+00:00

Hello. During imaging computers before Win10 20H2 we would use a registry key to block Edge from putting a shortcut on the All Users desktop. However, that key no longer works, thanks to the New Edge. I have tried adding the following key in our ConfigMgr task sequence

reg add HKLM\SOFTWARE\Policies\Microsoft\EdgeUpdate /v "CreateDesktopShortcutDefault" /t REG_DWORD /d "0" /f

but when I log into a computer after the sequence is done, there is still a shortcut on c:\users\public\desktop that goes to the new Edge.

I have also already set the group policy - "Prevent desktop shortcut creation upon install default" for Administrative Templates\Microsoft Edge Update\Applications to 'disabled' to see if that would work.

I want to prevent this shortcut from being created, because our users are not admins on computers and cannot delete things from c:\users\public\desktop. If they want to use Edge they can make their own shortcut in their own profile.

So what is the method?

Microsoft Edge
Microsoft Edge
A Microsoft cross-platform web browser that provides privacy, learning, and accessibility tools.
2,301 questions
0 comments No comments
{count} vote

4 answers

Sort by: Most helpful
  1. Eswar Koneti 2,201 Reputation points
    2020-11-13T06:43:40.247+00:00

    try to create the registry key like below:

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

    or powershell script:

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

    Regards,
    Eswar
    www.eskonr.com

    1 person found this answer helpful.
    0 comments No comments

  2. MD5Hash 151 Reputation points
    2020-11-16T15:12:21.467+00:00

    Hi Eswar - that's the old method of doing it, for the original (pre Chromium) edge. We were already doing that until 20H2 with the original Edge and it worked great. However, when we updated our task sequence to push a 20H2 wim - which has the new chromium edge built in - now the new chromium based Edge has its own, different shortcut on c:\users\public\desktop and that is not removed.

    Does that key work for you on windows 10 version 20H2, Eswar? Because it doesn't for us.

    1 person found this answer helpful.
    0 comments No comments

  3. MD5Hash 151 Reputation points
    2020-11-20T17:07:26.833+00:00

    Anyone have any other ideas about registry edits to stop the NEW edge from putting a desktop shortcut on c:\users\public\desktop


  4. Rahul Jindal [MVP] 9,966 Reputation points MVP
    2020-11-22T01:38:21.047+00:00

    Haven’t tried it with edge chromium, but you can deploy a simple a batch file to delete the icon from public desktop as a post upgrade step in your IPU TS. I remember doing something similar for synaptic driver icons as part of imaging setup.

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.