Jump to content

Recommended Posts

Posted

Hi,

 

We have moved to Windows 11 this summer and changed the student profile over to a local profile.

 

However, currently we have terminal on the start menu and struggling to remove it currently.

 

I have tried using this PowerShell script on the PC Start up script but it does not remove it.

 

Get-AppxPackage -AllUsers *WindowsTerminal* | Remove-AppxPackage -AllUsers

 

Has anyone managed to remove it through gpo, registry or scripting?

 

Thanks,

Posted

When removing Windows 11 apps, you need to remove them twice!

Once as an installed application, and once from the repository of installable apps.

Otherwise Windows just reinstall the missing app from the repository, when a user login.

 

try

Get-AppxProvisionedPackage -Online | Where-Object DisplayName -eq "*WindowsTerminal*" | Remove-AppxProvisionedPackage -Online

Get-AppxPackage -name *WindowsTerminal* -AllUsers | Remove-AppPackage -AllUsers

  • Thanks 1
  • 5 months later...
Posted

Sorry to bump this thread - is this true for 24H2?

All I did was

 

Get-AppxPackage *BingNews* | Remove-AppxPackage -AllUsers

 

without removing the provisionedpackage part

 

and it seems to have worked - at least no users have the Bing News any more - has 24H2 changed this?

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...