New
#11
Hello @gremar,
Do you get the same results if you run it asAdministrator
?
The command must be run in an elevated PowerShell window [which you will find in the list when you right-click on your Start button].
You can save the output to a useful file type by using this in that elevated PS window
which will save it on your Desktop [assuming you have not relocated it] as a csv file which can be opened in Excel.Code:Get-AppxPackage -AllUsers | Select Name, PackageFullName | Sort Name | Export-CSV -NoTypeInformation -Path "C:\Users\$env:UserName\Desktop\Packages.csv"
I am trying to help you do what you are trying to do. I don't mean to imply that I understand why you are doing it.
Denis
Last edited by Try3; 1 Week Ago at 03:49.