Hide the logon screen windows 10 IOT
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?
windows-10 windows-registry group-policy
add a comment |
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?
windows-10 windows-registry group-policy
add a comment |
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?
windows-10 windows-registry group-policy
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?
windows-10 windows-registry group-policy
windows-10 windows-registry group-policy
asked Nov 13 '17 at 14:03
M murphyM murphy
212
212
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
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_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogon
- Enter
1
as the value ofAutoAdminLogon
- 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.
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.
– Twisty Impersonator
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
|
show 6 more comments
Go to the Processes page on the IoT Utilities page and type these commands.
It should disable the Windows logo.
bcdedit /set quietboot on
bcdedit /set bootux Disabled
bcdedit /set bootuxdisabled on
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1267931%2fhide-the-logon-screen-windows-10-iot%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
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_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogon
- Enter
1
as the value ofAutoAdminLogon
- 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.
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.
– Twisty Impersonator
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
|
show 6 more comments
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_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogon
- Enter
1
as the value ofAutoAdminLogon
- 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.
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.
– Twisty Impersonator
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
|
show 6 more comments
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_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogon
- Enter
1
as the value ofAutoAdminLogon
- 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.
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_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogon
- Enter
1
as the value ofAutoAdminLogon
- 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.
edited Nov 13 '17 at 15:55
answered Nov 13 '17 at 14:30
harrymcharrymc
264k14272581
264k14272581
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.
– Twisty Impersonator
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
|
show 6 more comments
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.
– Twisty Impersonator
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
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
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
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.
– Twisty Impersonator
Nov 13 '17 at 15:31
This will successfully autologon an account, but the logon welcome screens will continue to be visible.
– Twisty Impersonator
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
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
@TwistyImpersonator: I added above what I believe is the missing piece.
– harrymc
Nov 13 '17 at 15:56
|
show 6 more comments
Go to the Processes page on the IoT Utilities page and type these commands.
It should disable the Windows logo.
bcdedit /set quietboot on
bcdedit /set bootux Disabled
bcdedit /set bootuxdisabled on
add a comment |
Go to the Processes page on the IoT Utilities page and type these commands.
It should disable the Windows logo.
bcdedit /set quietboot on
bcdedit /set bootux Disabled
bcdedit /set bootuxdisabled on
add a comment |
Go to the Processes page on the IoT Utilities page and type these commands.
It should disable the Windows logo.
bcdedit /set quietboot on
bcdedit /set bootux Disabled
bcdedit /set bootuxdisabled on
Go to the Processes page on the IoT Utilities page and type these commands.
It should disable the Windows logo.
bcdedit /set quietboot on
bcdedit /set bootux Disabled
bcdedit /set bootuxdisabled on
edited Feb 26 at 7:40
Scott
16.1k113990
16.1k113990
answered Feb 26 at 6:56
prateekmandeprateekmande
111
111
add a comment |
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1267931%2fhide-the-logon-screen-windows-10-iot%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown