How To: Use PowerShell to Validate Installed Microsoft Apps


Overview

This document will cover using PowerShell to obtain evidence on installed app packages from the Microsoft Store that are not found in the Add/Remove Programs.

https://apps.microsoft.com/home?hl=en-us&gl=US

Prerequisites

Administrator access to Windows PowerShell


Instructions

  1. Open PowerShell as Administrator

  2. Run the following command

Get-AppxPackage -AllUsers | Where-Object {$_.Name -Like "Microsoft.Microsoft3DViewer"}

NOTE: Replace the ‘Microsoft.Microsoft3DViewer'in code above with the application name you are searching for. In our example, we search for Microsoft 3D Viewer.

Here is a sample of the output that is returned:

image-20240619-134628.png

If the app is not found or installed, it will display a blank output like this:

image-20240619-134712.png

Need Support?

Do you need help? You can access our support portal to create, view, and update tickets anytime.

https://cybercns.freshdesk.com

Click below to be directed to our secure support portal or email support@cybercns.com to open a ticket.


Â