Hello! How do I uninstall an old MS store app for about 70 users via Intune?

Jodi Frey 0 Reputation points
2024-08-29T11:05:19.1133333+00:00

We have the new Kyocera Print Center app in Intune set to uninstall in Intune but is not uninstalling the old version (A97ECD55.KYOCERAPrintCenter). Intune shows an application ID, but it doesn't look like a normal GUID. I don't have this installed on my machine so it's not in my registry to look for an uninstall key. Does anyone have a script that would allow to be able to uninstall this? ANY help would be greatly appreciated!!

Blessings!

Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
5,053 questions
PowerShell
PowerShell
A family of Microsoft task automation and configuration management frameworks consisting of a command-line shell and associated scripting language.
2,509 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Crystal-MSFT 48,591 Reputation points Microsoft Vendor
    2024-08-30T02:47:45.42+00:00

    @Jodi Frey, Thanks for posting in Q&A. For the old Kyocera Print Center app, is it installed via Microsoft store as well? If yes, we can run the following command on one affected device to find out the app package name.

    Get-AppxPackage

    And then remove it via the following command:

    Remove-AppxPackage [PackageFullName]

    Here is a link with more details for your reference:

    https://www.process.st/how-to/uninstall-microsoft-store-apps/#:~:text=Use%20PowerShell%3A%20open%20as%20an,instructions%20by%20the%20app%20developer.

    Note: Non-Microsoft link, just for the reference.

    After the PowerShell commands working, we can write it into a script and deploy it via Intune.

    https://learn.microsoft.com/en-us/mem/intune/apps/intune-management-extension

    Hope the above information can help.


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


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.