Search code examples
powershellmicrosoft-edge-extension

How to enable edge extension using powershell script


Post installation of an application it creates a edge extension but by default it is turned off. Does anyone have solution to enable it using powershell script?

I'm new to powershell to not sure how to and where to start with.


Solution

  • First, test without Powershell.

    Add the ID under HKCU\SOFTWARE\Policies\Microsoft\Edge\ExtensionInstallForcelist

    Check via edge://extensions

    Only manage extensions via either HKCU or HKLM.

    More information on Information about extensions.

    When this works, you can write the PowerShell code to modify the registry accordingly.

    With kind regards, TheStingPilot