Uploaded June 2023 | Updated September 2026, 26 minutes ago
In this video, I show you how to sysprep a customized Windows 11 computer. I also demonstrate how to fix error the message when there is a sysprep error. I show you how to remove packages from windows 11 using the PowerShell command.
Commands to remove packages:
You will have to run both commands for each app to be removed. This works for most apps, you just have to replace the package name and correct version.
Get-AppxPackage -allusers AdobeNotificationClient_3.0.1.1_x86__enpm4xejd91yc | Remove-AppxPackage
Get-AppxPackage -AllUsers *AdobeNotificationClient* | Remove-AppxPackage -AllUsers
Get-AppxPackage -allusers Microsoft.OneDriveSync_21220.1024.5.0_neutral__8wekyb3d8bbwe | Remove-AppxPackage
Get-appxpackage -allusers *Microsoft.OneDriveSync* | Remove-AppxPackage -allusers
Get-AppxPackage -allusers SpotifyAB.SpotifyMusic_1.190.859.0_x86__zpdnekdrzrea0 | Remove-AppxPackage
Get-appxpackage -allusers *SpotifyAB.SpotifyMusic* | Remove-AppxPackage -allusers
Get-AppxPackage -allusers Microsoft.Windows.Photos_2020.20120.4004.0_x64__8wekyb3d8bbwe | Remove-AppxPackage
Get-appxpackage -allusers *Microsoft.Windows.Photos* | Remove-AppxPackage -allusers
Resources:
learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview?view=windows-11
learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/sysprep-process-overview?view=windows-11
learn.microsoft.com/en-us/troubleshoot/windows-client/deployment/sysprep-fails-remove-or-update-store-apps
In this video, I show you how to sysprep a customized Windows 11 computer. I also demonstrate how to fix error the message when there is a sysprep error. I show you how to remove packages from windows 11 using the PowerShell command.
Commands to remove packages:
You will have to run both commands for each app to be removed. This works for most apps, you just have to replace the package name and correct version.
Get-AppxPackage -allusers AdobeNotificationClient_3.0.1.1_x86__enpm4xejd91yc | Remove-AppxPackage
Get-AppxPackage -AllUsers *AdobeNotificationClient* | Remove-AppxPackage -AllUsers
Get-AppxPackage -allusers Microsoft.OneDriveSync_21220.1024.5.0_neutral__8wekyb3d8bbwe | Remove-AppxPackage
Get-appxpackage -allusers *Microsoft.OneDriveSync* | Remove-AppxPackage -allusers
Get-AppxPackage -allusers SpotifyAB.SpotifyMusic_1.190.859.0_x86__zpdnekdrzrea0 | Remove-AppxPackage
Get-appxpackage -allusers *SpotifyAB.SpotifyMusic* | Remove-AppxPackage -allusers
Get-AppxPackage -allusers Microsoft.Windows.Photos_2020.20120.4004.0_x64__8wekyb3d8bbwe | Remove-AppxPackage
Get-appxpackage -allusers *Microsoft.Windows.Photos* | Remove-AppxPackage -allusers
Resources:
learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/sysprep--system-preparation--overview?view=windows-11
learn.microsoft.com/en-us/windows-hardware/manufacture/desktop/sysprep-process-overview?view=windows-11
learn.microsoft.com/en-us/troubleshoot/windows-client/deployment/sysprep-fails-remove-or-update-store-apps










