From 6c9b789a8c3fd0ced7ed2b35af40d449d88eb25b Mon Sep 17 00:00:00 2001 From: ghostersk <68815071+ghostersk@users.noreply.github.com> Date: Mon, 24 May 2021 12:05:21 +0100 Subject: [PATCH] + --- Windows App Cleaner.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Windows App Cleaner.ps1 b/Windows App Cleaner.ps1 index e3cc3e8..de47375 100644 --- a/Windows App Cleaner.ps1 +++ b/Windows App Cleaner.ps1 @@ -7,6 +7,8 @@ # Lists all app packages on system {-AllUsers > will return all apps, even not logged users} #Get-AppxPackage -AllUsers | Select Name, PackageFullName +# Export all packages and save it in csv file +#Get-AppxPackage | Select Name, PackageFullName, InstallLocation | export-csv -Path `apps.csv' -NoTypeInformation # Removes the app from Windows #Get-AppxPackage Microsoft.XboxApp | Remove-AppxPackage