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

Disable Edge Welcome Page & Default Browser Prompt During OSD – Win 10 1607

Note: Is not working on new builds of Windows 10.  For now, recommend using Group Policy: “Windows Component \ Microsoft Edge … Prevent the Frist Run webpage…” This Registry Key should also work.. REG ADD HKLM\SOFTWARE\Policies\Microsoft\MicrosoftEdge\Main  /V PreventFirstRunPage /T REG_DWORD /D 1 /F — Original Post: This idea was borrowed and adapted from Jorgen Nilsson’s … Read more

Dell Warranty Reporting via ConfigMgr – Dell Warranty API

Update 11/3 – Contact info for Dell API key has changed: (Info directly from Dell API Support team)New process – The customer should create ticket via TechDirect https://techdirect.dell.com;Alternatively they can reach out to us at APIs_TechDirect@Dell.com Update 10/20  – Nickolaj posted his Dell Right Click tool, so if you’ve take then time to get the … Read more