Removing MS Store App from system where user is no longer able to logon.

P

Paul_0806

We scan our systems for vulnerabilities and Microsoft Store apps that are not updated get flagged. 99% of the time these are users who only have logged in to the system once or are no longer with the company. The following command works some of the time.Get-AppxPackage -allusers name_of_app | remove-appxpackageGet-AppxPackage -AllUsers name_of_app | remove-appxpackage -AllUsersSome times the command will run, not displaying an error and the app is still installed.I tried this command C:\Windows\system32\Dism.exe /online /remove-provisionedappxpackage /packagename:name_of_appI get the same resu

Continue reading...
 
Back
Top Bottom