How to uninstall Chrome Apps silently with powershell?

julien deroche 131 Reputation points
2025-03-01T11:09:04.4233333+00:00

Hi,

I'm trying to uninstall silently a Chrome app but i have still the confirmation pop up before uninstall. I have used the following switches but nothing works: --quiet, --q, --silent, --s, --force-uninstall, --qb.

2025-02-28 16_53_44-Window

2025-02-28 16_38_44-Window

The uninstallation command is "C:\Program Files\Google\Chrome\Application\chrome.exe" --profile-directory=Default --uninstall-app-id=cadlkienfkclaiaibeoongdcgmdikeeg.

Do you have an idea?

Thank you for your help.

Regards

PowerShell
PowerShell
A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
2,859 questions
0 comments No comments
{count} votes

3 answers

Sort by: Most helpful
  1. Marcin Policht 38,470 Reputation points MVP
    2025-03-01T12:05:36.32+00:00

    Try the following:

    chrome.exe --uninstall-app="<APP_ID>" --force-uninstall --silent
    

    AFAIK, this may still trigger a confirmation popup depending on Chrome's security settings.


    If the above response helps answer your question, remember to "Accept Answer" so that others in the community facing similar issues can easily find the solution. Your contribution is highly appreciated.

    hth

    Marcin

    0 comments No comments

  2. julien deroche 131 Reputation points
    2025-03-03T07:32:54.83+00:00

    Hi Marcin,

    Thank you for your answer, i have still the pop-up... I'm still seraching :)

    Regards


  3. Mars Shan-MSFT 545 Reputation points Microsoft External Staff
    2025-03-07T01:45:54.9833333+00:00

    Hello,

    As far as I know , Chrome doesn'tprovide a supported command‐line switch (or PowerShell approach) to hide the confirmation dialog when uninstalling apps via the --uninstall-app-id flag. In other words, the switches you tried (–quiet, –silent, etc.) are not implemented for this purpose.Currently, there isn’t a “silent uninstall” switch for Chrome apps via PowerShell.  


    If the Answer is helpful, please click "Accept Answer" and upvote it.

    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.