DSAGEY Posted May 17, 2022 Posted May 17, 2022 Hi, We have got new computers for our ICT Suite, but the 'My Dell' app appears everytime someone logs in. Is there any easy way for me to delete this? I have unistalled it, but when another user logs on it appears again. Thanks 1
tmoon-mint Posted May 17, 2022 Posted May 17, 2022 Probably a provisioned modern app that came in the factory image from Dell. Run this to list them all: Get-AppxProvisionedPackage -Online | Format-Table DisplayName, PackageName Identify the My Dell one and then remove-AppxprovisionedPackage -packagename to remove it from the image. 2
Oaktech Posted May 17, 2022 Posted May 17, 2022 (edited) If you do a get-appxpackage -allusers and find the name of the package, and then issue: Get-AppxPackage -AllUsers | Where PackageFullName -eq {PackageFullName} | Remove-AppxPackage -AllUsers subbing in the full name of the app it should then remove it for everyone. Unless it's a provisioned app - then the thing above is the ticket. Edited May 17, 2022 by Oaktech 1
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now