SCCM – Stamp Registry in Task Sequence

email me

To stamp the registry in a Task Sequence, create two Run Commands in the Post Setup group (I add these as the final steps):

To set the field where Model is normally at

#1
cmd /c reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation” /v Model /t REG_SZ /d “ABC WIN10 1.0” /f /reg:64

#2
cmd /c reg add “HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\OEMInformation” /v BuildDate /t REG_SZ /d “%DATE% %TIME%” /f /reg:64

 

You may also use this to set Computer Description

cmd /c reg add “HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\lanmanserver\parameters” /v svrcomment /t REG_SZ /d “ABC WIN10 1.0” /f