Uninstall Microsoft whiteboard modern app (appx).

  • Uninstall Microsoft whiteboard modern app (appx).

    Posted by Roddy Gelberty on 6 July 2020 at 2:21 pm

    Can someone please tell me how to uninstall Microsoft whiteboard modern app. Using ‘Remove-AppxPackage‘ brings the application back when the user logon again.
    Is it possible to uninstall it for every user?

    Roddy Gelberty replied 4 years, 8 months ago 2 Members · 1 Reply
  • 1 Reply
  • Roddy Gelberty

    Member
    6 July 2020 at 2:30 pm

    Thanks for your question Jessica. Its a coincidence that I’ve been working on an offline install which has ‘Uninstall’ steps for Microsoft Whiteboard. The below two lines work most of the times. 🙂

    Get-AppxPackage -Name "Microsoft.WhiteBoard" -AllUsers|Remove-AppxPackage -AllUsers
    Get-AppxProvisionedPackage -Online| Where-Object {$_.DisplayName -match "Microsoft.WhiteBoard"} | Select-Object -Property PackageName | Remove-AppxProvisionedPackage -Online

Log in to reply.