anyone know to make windows 10 stop re-installing the "built-in" apps that i am un-installing via the powershell (administrator privelidges)?
i am running 2 scripts to achieve this (which apparently should work)
Get-AppxPackage -AllUsers | Remove-AppxPackage
this script removes all the "junk" apps that windows 10 like to pre-install
Get-AppxPackage -allusers Microsoft.WindowsStore | Foreach {Add-AppxPackage -DisableDevelopmentMode -Register "$($_.InstallLocation)\AppXManifest.xml"}
this script re-installs the Microsoft Store (which is removed as part of the first script).
this seems to work fine in that all the junk apps are removed (or appear to be removed), but after a period of time (usually after a reboot) windows decides to re-install them all again. same happens if a new user logs in, all the previsously removed apps re-appear.
there's only so many times i have the will to remove "3d viewer" or "mixed reality portal" (to name just 2).