Jump to content

Recommended Posts

Posted

Is there a good guide or any suggestions for Windows 10 Sysprep process? I think there were some problems with Windows 10 Sysprep in the past...

 

Thanks

Posted

The only issue I'm aware of is you need to stop provisioned apps from updating. If using MDT to build and capture you can add regkeys to disable and enable the updates in the TS.

It's been a while since I created my MDT task sequence, there are more steps than I remember.

 

At Postinstall

 

Disable Store

Reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\WindowsStore /v AutoDownload /t REG_DWORD /d 2 /f

 

Disable Updates

Reg add HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate  /v AuOptions /t REG_DWORD /d 2 /f

 

Disable Defender AntiSpyware

Reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender" /v DisableAntiSpyware /t REG_DWORD /d 1 /f

 

Disable Defender Real-Time Protection

Reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows Defender\Real-Time Protection" /v DisableRealtimeMonitoring /t REG_DWORD /d 1 /f

 

 

At Capture Image, before the last Create WIM step, reset all the values.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now



×
×
  • Create New...