4

I want my system to boot straight into an application with no other UI elements.

I have set the system to boot using the Custom User Interface and boot straight into the application but during the login process it shows the user name, picture, loading "dots" and background.

Is there any way to just have this as a blank screen?

M murphy
  • 41
  • 1
  • 3

3 Answers3

3

I have no experience with windows 10 IoT, but the usual method for skipping the login screen and to log directly on boot into a user account is to enter Control Panel -> User Accounts, click on your user account to select it and uncheck the box labeled “Users must enter a user name and password to use this computer”.

You’ll be prompted to enter the user account’s password - enter the password and click OK.


If this option does not exist in Windows Iot, here is how to do the same via the registry (regedit) :

  • Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon
  • Enter 1 as the value of AutoAdminLogon
  • Enter the computer name (or domain) as the value of DefaultDomainName
  • Enter the account name as the value of DefaultUserName
  • Enter the account's password as the value of DefaultPassword

More info can be found here.


To disable the Windows 10 Welcome Screen in Group Policy Editor :

  • Run gpedit.ms
  • Navigate to: Computer Configuration > Administrative Templates > System > Logon
  • Double-click the “Do not display the Getting Started welcome screen at logon”
  • Choose “Disable”
  • Click OK

Next time you restart the computer, your computer will automatically bypass the Windows 10 login screen.

harrymc
  • 480,290
  • I was intrigued by this answer, having never encountered this setting, but I can't find it in Win10 Pro 1709. Does it need a particular configuration to enable it? – AFH Nov 13 '17 at 15:11
  • IoT might miss this option. I added a registry method above. – harrymc Nov 13 '17 at 15:28
  • This will successfully autologon an account, but the logon welcome screens will continue to be visible. – I say Reinstate Monica Nov 13 '17 at 15:31
  • I use a SysInternals utility Autologon which makes the registry changes without needing the registry editor, but like @TwistyImpersonator I don't think this answers the question completely. – AFH Nov 13 '17 at 15:43
  • @TwistyImpersonator: I added above what I believe is the missing piece. – harrymc Nov 13 '17 at 15:56
  • thanks for the help, the auto admin is working fine but when the first boot happens i still see the user name and the spinning dots. whats stranger is if i do a warm reboot i also briefly see the clock. Is there by any chance a way to set the font colour of the lock screen to black so i can at lease hide it? – M murphy Nov 15 '17 at 11:41
  • This link may do it. – harrymc Nov 15 '17 at 12:37
  • Your second tip there (to disable the Welcome screen) doesn't seem to work - and when I read the text at the side of this option, it says that it applies to Windows 2000 Professional only. – komodosp Feb 13 '19 at 08:56
  • @colmde: The comment wasn't updated since Windows 2000, but this policy continued working long afterward, but it may be disabled because of other settings. – harrymc Feb 13 '19 at 09:23
  • @harrymc - Do you know what other settings might prevent this from working? – komodosp Feb 13 '19 at 09:51
  • @colmde: No, too many changes in Windows 10 to keep track. – harrymc Feb 13 '19 at 09:52
3

Go to the Processes page on the IoT Utilities page and type these commands.  It should disable the Windows logo.

  1. bcdedit /set quietboot on
  2. bcdedit /set bootux Disabled
  3. bcdedit /set bootuxdisabled on
  • Although this didn't disable the welcome screen, it did disable the loading screen that shows before the welcome screen, so the welcome screen seems less jarring. Thanks. – dt192 Dec 18 '19 at 12:22
1

This was the only setting that worked for me to visually hide the welcome screen on Windows 10:

reg add "HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows Embedded\EmbeddedLogon" /v "HideAutoLogonUI" /t REG_DWORD /d 1 /f

I used this setting together with the AutoAdminLogon from here.

More information about this registry key can be found on MSDN: https://docs.microsoft.com/en-us/windows-hardware/customize/desktop/unattend/microsoft-windows-embedded-embeddedlogon