Get-AppxPackage | select packagefullname (This will generate a list of all apps installed)
Get-AppxPackage *<APPX package name>* | Remove-AppxPackage (This will remove apps installed for the current user)
Get-AppxPackage -User <user> *<APPX package name>* | Remove-AppxPackage (This will remove apps installed for a specific user)
Get-AppxPackage -AllUsers <user> *<APPX package name>* | Remove-AppxPackage (This will remove apps installed for all users)
Create a PowerShell script with all lines needed and put it in Group Policy. Then default apps will be removed when the user logons. Nice too see that Windows 10 can be fully managed this way.
There's a PowerShell script available too, which can remove default apps from the WIM image, instead of using it during a task sequence. You can find it in the Microsoft TechNet Gallery.
0 Response to "Remove default Apps from Windows 10 during deployment"
Posting Komentar