When you logon to Windows 10 for the first time with a new user without a profile you will see this dialog:
Hi
We’re happy you’re here
Lots of great features to get excited about
Getting everything ready for you
Let’s start
You might not like this dialog and prefer not to see it. setting the Group policy
Computer ConfigurationAdministrative TemplatesSystemLogonShow first sign-in animation to disabled
Will change the dialog to this simple one (Preparing Windows):
You can also set this in unattened.xml as shown here:
<settings pass=”specialize”>
<component name=”Microsoft-Windows-Deployment” 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“>
<RunSynchronous>
<RunSynchronousCommand wcm:action=”add”>
<Path>reg add HKLMSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f</Path>
<Order>2</Order>
<Description>Do not Show First Logon Animation</Description>
</RunSynchronousCommand>
</RunSynchronous>
</component>
</settings>
Or directly in your task sequence with the command
reg add HKLMSoftwareMicrosoftWindowsCurrentVersionPoliciesSystem /v EnableFirstLogonAnimation /t REG_DWORD /d 0 /f