Search notes:

System apps

System Apps is one category of Apps (the other being Apps).
System apps are integral components of Windows.

Listing system apps

With PowerShell, system apps can be listed like so
PS C:\> get-appxPackage -packageTypeFilter main | ? { $_.SignatureKind -eq "System" } | sort name | format-table name, installLocation

Index