Configuration Manager (SCCM) | Operating System Deployment (OSD) | Summary Screen | Basic
You may have seen a previous post describing how to implement an advanced script that is used at the end of an Operating System Deployment within MECM to indicate that the build has been completed
The advanced script provided quite a lot of detail about the build, such as architecture, drivers, applications, variables values etc….but what if you want the complete opposite?
The below guide shows you how to add a simple summary splash screen to the end of your Task Sequence, that is a language universal as it mainly uses graphics to indicate the build is complete
Add the following steps to the task sequence

Step 1 – Disable – Mouse Cursor Suppression
Type: Command Line
Command Line: cmd.exe /c reg.exe add “HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Policies\System” /v EnableCursorSuppression /t REG_DWORD /d 0 /f 0 /f
Step 2 – Copy Files
Type : Command Line
Command Line: xcopy.exe “.\*.*” “%windir%\Temp\OSDReport” /Q /I /E /H /Y
Package: ‘The contents of the below files’
Download from GitHub https://github.com/Drakey2000/CommunityHelper/tree/master/OSDReport/Basic
Step 3 – Set System Setup
Type : Command Line
Command Line: cmd.exe /c reg add HKLM\SYSTEM\Setup /v CmdLine /d “System32\\wscript.exe //B %windir%\\Temp\\OSDReport\\Bootstrapper.vbs” /f
Step 4 – Set System Setup Type = 2
Type : Command Line
Command Line: cmd.exe /c reg add HKLM\SYSTEM\Setup /v SetupType /d 2 /t REG_DWORD /f
Step 7 – Restart Type:
Type : Restart Computer
Specify what to run after restart : The currently installed default operating system
The Splash Screen below will then be shown
