Windows 10 in place upgrade Task Sequence, auto re-install RSAT.

UPDATE: 2020.03.11 (1909 Tested) Windows has changed a lot since this post, how MS does RSAT has changed and they are now Features on Demand I’ve had to update my method for detection, I’ve switched to using PowerShell: Code: if (Get-WindowsCapability -Online | Where-Object { $_.State -eq “Installed” -and $_.Name -match “Rsat.ActiveDirectory”}) {Write-Output “TRUE”} else … Read more

Windows 10 Customizations during OSD

Update 6/12/2018 – Updated Task Sequence with all Tweaks, you can grab what you want, or nest it as a “Run TS Step”.  Download HERE Many of the steps are now just Registry Keys (Reg Add).   I’ve added some Fixes and other things that have come up over the past couple upgrades, feel free to … Read more