Tag Archives: sysprep

Windows 10 apps I remove before running Sysprep

By | June 28, 2018
Share

** Updated on 2018/07/12 Here is are the powershell commands I run prior to running sysprep on Windows 1703/1709/1803.  Without running these commands, Sysprep typically fails.   get-appxpackage *getstarted* | remove-appxpackage get-appxpackage *photoshop* | remove-appxpackage get-appxpackage *freshpaint* | remove-appxpackage get-appxpackage *remotedesktop* | remove-appxpackage get-appxpackage *skype* | remove-appxpackage get-appxpackage *oneconnect* | remove-appxpackage get-appxpackage *maps* | remove-appxpackage… Read More »

Clean-up Before Sysprep And Capture To Reduce The WIM File Size

By | February 21, 2018
Share

Wally Mead (DeploymentBunny) wrote a great script that accommodates his image factory.  It performs several clean up operations before running sysprep.  I run it manually on all of my Virtual Machines prior to running a Sysprep and Capture routine. I’ve seen this script reduce a WIM file by 10GB. Jump to Wally’s github and save… Read More »