Get-AppxProvisionedPackage -Online | ? { $_.DisplayName -like "*Solitaire*" } | % { Remove-AppxProvisionedPackage -PackageName $_.PackageName -AllUsers -Online }
Hey Neemobeer I appreciate the response. Now let me ask you under the administrator account becasuse I am doing this in audit mode, After completing the image and all. Now the image is getting applied and it automatically logs me in as desktopsupport because I have the answer file setup like that. Once I join it to the domain and login as a new user will the apps reappear or should they not come back? This is of course uninstalling the apps with powershell while in audit mode.It can be done with Powershell. Have to use the appxprovisionedpackage commands to remove them from all users and future accounts.
This is an example to remove Solitaire
Code:Get-AppxProvisionedPackage -Online | ? { $_.DisplayName -like "*Solitaire*" } | % { Remove-AppxProvisionedPackage -PackageName $_.PackageName -AllUsers -Online }
ime it depends on the App, for example WebView2 is part of Edge which you cann't uninstall [Edge] you can uninstall WebView2 but Microsoft will just put it back next time your system looks for updates so setting your system to block user accounts won't stop anything because Microsoft has more control then a user... or even the AdminThey should not come back.