Enable Mouse Support in Win10 OSD during State Restore.

*Updated to allow Mouse Support directly following Apply OS step by adding keys offline. Create Group and place directly after the “Apply Operating System” Step (In my example, I have it also removing the mixed reality portal, which you can find info here) Step 1: Load Offline Registry reg load HKLM\Offline c:\windows\system32\config\software Step 2: Add … Read more

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