Jump to content

Recommended Posts

Posted

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

  • Thanks 1
Posted

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.

  • Thanks 2
Posted (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 by Oaktech
  • Thanks 1

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 account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...