SCCM, no OSD TS progress bar for windows 10

 

 

Using SCCM and latest version of windows 10, in my case SCCM CB 1806 with Windows 10 1803 we can’t see any bar progress after first phase of task sequence, more exact after Setup Operating System à Setup Windows and Configuration Manager reboot. After this reboot no progress bar anymore only “Just a moment” for many, many moments 😊.

 

I’ve found the solution to fix the issue by adding in unattended.xml file  those two OOBE configurations:line

 

<SkipMachineOOBE>true</SkipMachineOOBE>

 

<SkipUserOOBE>true</SkipUserOOBE>

 PS This function it’s supposedly deprecated, but it works :)

 Now my xml file is looking lie this:

Apply Operating System

 

my xml file for Irish configuration

 

<?xml version="1.0" encoding="utf-8"?>
<unattend xmlns="urn:schemas-microsoft-com:unattend">
    <settings pass="oobeSystem">
        <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <OOBE>
                <HideEULAPage>true</HideEULAPage>
                <HideOEMRegistrationScreen>true</HideOEMRegistrationScreen>
                <HideOnlineAccountScreens>true</HideOnlineAccountScreens>
                <HideWirelessSetupInOOBE>true</HideWirelessSetupInOOBE>
    <SkipMachineOOBE>true</SkipMachineOOBE>
    <SkipUserOOBE>true</SkipUserOOBE>
                <ProtectYourPC>1</ProtectYourPC>
            </OOBE>
        </component>
        <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
            <InputLocale>en-IE</InputLocale>
            <SystemLocale>en-IE</SystemLocale>
            <UILanguage>en-IE</UILanguage>
            <UserLocale>en-IE</UserLocale>
        </component>
    </settings>
    <cpi:offlineImage cpi:source="wim:c:/temp/windows10-1803.wim#1" xmlns:cpi="urn:schemas-microsoft-com:cpi" />
</unattend>

 

After that all good, now the progress bar is back :).

 

That was all, happy SCCM-ing :)