In which order are startup programs loaded?
Are Windows 10 startup programs initiated in a specific sequence, such as alphabetical or CPU impact order, or are they all initiated simultaneously?
Are there special cases in which programs are given preference from others, such as Windows Defender loading first for security purposes?
windows-10 boot
add a comment |
Are Windows 10 startup programs initiated in a specific sequence, such as alphabetical or CPU impact order, or are they all initiated simultaneously?
Are there special cases in which programs are given preference from others, such as Windows Defender loading first for security purposes?
windows-10 boot
The order is unspecified (except defined by dependence - for example, none programs can start from HKCU/Soft/MS/Win/CurVer/Run or from Autostart menu folder until explorer.exe is started). And no preferences.
– Akina
Dec 7 '18 at 6:55
Security software often includes system drivers which are loaded before regular applications. It's a broad field so you likely would need to be more specific. What's the order of Windows startup on StackOverflow might be interesting. The part about the logon phase especially.
– Seth
Dec 7 '18 at 7:22
add a comment |
Are Windows 10 startup programs initiated in a specific sequence, such as alphabetical or CPU impact order, or are they all initiated simultaneously?
Are there special cases in which programs are given preference from others, such as Windows Defender loading first for security purposes?
windows-10 boot
Are Windows 10 startup programs initiated in a specific sequence, such as alphabetical or CPU impact order, or are they all initiated simultaneously?
Are there special cases in which programs are given preference from others, such as Windows Defender loading first for security purposes?
windows-10 boot
windows-10 boot
asked Dec 7 '18 at 5:40
enriquejr99
132
132
The order is unspecified (except defined by dependence - for example, none programs can start from HKCU/Soft/MS/Win/CurVer/Run or from Autostart menu folder until explorer.exe is started). And no preferences.
– Akina
Dec 7 '18 at 6:55
Security software often includes system drivers which are loaded before regular applications. It's a broad field so you likely would need to be more specific. What's the order of Windows startup on StackOverflow might be interesting. The part about the logon phase especially.
– Seth
Dec 7 '18 at 7:22
add a comment |
The order is unspecified (except defined by dependence - for example, none programs can start from HKCU/Soft/MS/Win/CurVer/Run or from Autostart menu folder until explorer.exe is started). And no preferences.
– Akina
Dec 7 '18 at 6:55
Security software often includes system drivers which are loaded before regular applications. It's a broad field so you likely would need to be more specific. What's the order of Windows startup on StackOverflow might be interesting. The part about the logon phase especially.
– Seth
Dec 7 '18 at 7:22
The order is unspecified (except defined by dependence - for example, none programs can start from HKCU/Soft/MS/Win/CurVer/Run or from Autostart menu folder until explorer.exe is started). And no preferences.
– Akina
Dec 7 '18 at 6:55
The order is unspecified (except defined by dependence - for example, none programs can start from HKCU/Soft/MS/Win/CurVer/Run or from Autostart menu folder until explorer.exe is started). And no preferences.
– Akina
Dec 7 '18 at 6:55
Security software often includes system drivers which are loaded before regular applications. It's a broad field so you likely would need to be more specific. What's the order of Windows startup on StackOverflow might be interesting. The part about the logon phase especially.
– Seth
Dec 7 '18 at 7:22
Security software often includes system drivers which are loaded before regular applications. It's a broad field so you likely would need to be more specific. What's the order of Windows startup on StackOverflow might be interesting. The part about the logon phase especially.
– Seth
Dec 7 '18 at 7:22
add a comment |
1 Answer
1
active
oldest
votes
Windows launches on startup the programs in parallel, but in groups, as follows:
Windows Boot Device Drivers, having a
Start
value equal to 0HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Windows Auto-start Services & Drivers, having a
Start
value equal to 2HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Windows delayed Auto-start Services & Drivers, having a
Start
value equal to 2
andDelayedAutostart
equal to 1:HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Run Services Once only:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServicesOnce
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunServicesOnce
Run Services permanently:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServices
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunServices
After the user logs on, the order is as follows :
Notify of the logon event:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogonNotify
User Initialization:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonUserinit
Shell:
HKEY_CURRENT_USERSoftwareMicrosoftWindows NTCurrentVersionWinlogonShell
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonShell
ShellServiceObjectDelayLoad pointing to CLSID InProcServer:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionShellServiceObjectDelayLoad
RunOnce Local Machine Key:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunOnce
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunOnceEx
Run permanently:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRun
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRun
RunOnce Current User Key (mostly for installations):
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunOnce
Explorer Run:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionPoliciesExplorerRun
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorerRun
Load Key (deprecated):
HKEY_CURRENT_USERSoftwareMicrosoftWindows NTCurrentVersionWindowsload
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWindows
SharedTaskScheduler:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerSharedTaskScheduler
AppInit_DLLs:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWindows
All Users Startup Folder:
C:UsersAll UsersStart MenuProgramsStartup
User Profile Startup Folder :
C:UsersusernameStart MenuProgramsStartup
Sources :
- Windows Registry Persistence, Part 2: The Run Keys and Search-Order
Windows Program Automatic Startup Locations.
Good answer. I also want to note that some services can have a delayed start to ensure other services start first (hopefully), or to lessen startup time impact. With so many services and applications starting, there completion times can vary heavily under load. And to address the OPs question, Windows Defender is a service, the application seen in the task tray loads later.
– Keltari
Dec 7 '18 at 16:39
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%2f1381547%2fin-which-order-are-startup-programs-loaded%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Windows launches on startup the programs in parallel, but in groups, as follows:
Windows Boot Device Drivers, having a
Start
value equal to 0HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Windows Auto-start Services & Drivers, having a
Start
value equal to 2HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Windows delayed Auto-start Services & Drivers, having a
Start
value equal to 2
andDelayedAutostart
equal to 1:HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Run Services Once only:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServicesOnce
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunServicesOnce
Run Services permanently:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServices
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunServices
After the user logs on, the order is as follows :
Notify of the logon event:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogonNotify
User Initialization:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonUserinit
Shell:
HKEY_CURRENT_USERSoftwareMicrosoftWindows NTCurrentVersionWinlogonShell
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonShell
ShellServiceObjectDelayLoad pointing to CLSID InProcServer:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionShellServiceObjectDelayLoad
RunOnce Local Machine Key:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunOnce
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunOnceEx
Run permanently:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRun
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRun
RunOnce Current User Key (mostly for installations):
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunOnce
Explorer Run:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionPoliciesExplorerRun
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorerRun
Load Key (deprecated):
HKEY_CURRENT_USERSoftwareMicrosoftWindows NTCurrentVersionWindowsload
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWindows
SharedTaskScheduler:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerSharedTaskScheduler
AppInit_DLLs:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWindows
All Users Startup Folder:
C:UsersAll UsersStart MenuProgramsStartup
User Profile Startup Folder :
C:UsersusernameStart MenuProgramsStartup
Sources :
- Windows Registry Persistence, Part 2: The Run Keys and Search-Order
Windows Program Automatic Startup Locations.
Good answer. I also want to note that some services can have a delayed start to ensure other services start first (hopefully), or to lessen startup time impact. With so many services and applications starting, there completion times can vary heavily under load. And to address the OPs question, Windows Defender is a service, the application seen in the task tray loads later.
– Keltari
Dec 7 '18 at 16:39
add a comment |
Windows launches on startup the programs in parallel, but in groups, as follows:
Windows Boot Device Drivers, having a
Start
value equal to 0HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Windows Auto-start Services & Drivers, having a
Start
value equal to 2HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Windows delayed Auto-start Services & Drivers, having a
Start
value equal to 2
andDelayedAutostart
equal to 1:HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Run Services Once only:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServicesOnce
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunServicesOnce
Run Services permanently:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServices
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunServices
After the user logs on, the order is as follows :
Notify of the logon event:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogonNotify
User Initialization:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonUserinit
Shell:
HKEY_CURRENT_USERSoftwareMicrosoftWindows NTCurrentVersionWinlogonShell
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonShell
ShellServiceObjectDelayLoad pointing to CLSID InProcServer:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionShellServiceObjectDelayLoad
RunOnce Local Machine Key:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunOnce
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunOnceEx
Run permanently:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRun
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRun
RunOnce Current User Key (mostly for installations):
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunOnce
Explorer Run:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionPoliciesExplorerRun
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorerRun
Load Key (deprecated):
HKEY_CURRENT_USERSoftwareMicrosoftWindows NTCurrentVersionWindowsload
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWindows
SharedTaskScheduler:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerSharedTaskScheduler
AppInit_DLLs:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWindows
All Users Startup Folder:
C:UsersAll UsersStart MenuProgramsStartup
User Profile Startup Folder :
C:UsersusernameStart MenuProgramsStartup
Sources :
- Windows Registry Persistence, Part 2: The Run Keys and Search-Order
Windows Program Automatic Startup Locations.
Good answer. I also want to note that some services can have a delayed start to ensure other services start first (hopefully), or to lessen startup time impact. With so many services and applications starting, there completion times can vary heavily under load. And to address the OPs question, Windows Defender is a service, the application seen in the task tray loads later.
– Keltari
Dec 7 '18 at 16:39
add a comment |
Windows launches on startup the programs in parallel, but in groups, as follows:
Windows Boot Device Drivers, having a
Start
value equal to 0HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Windows Auto-start Services & Drivers, having a
Start
value equal to 2HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Windows delayed Auto-start Services & Drivers, having a
Start
value equal to 2
andDelayedAutostart
equal to 1:HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Run Services Once only:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServicesOnce
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunServicesOnce
Run Services permanently:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServices
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunServices
After the user logs on, the order is as follows :
Notify of the logon event:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogonNotify
User Initialization:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonUserinit
Shell:
HKEY_CURRENT_USERSoftwareMicrosoftWindows NTCurrentVersionWinlogonShell
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonShell
ShellServiceObjectDelayLoad pointing to CLSID InProcServer:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionShellServiceObjectDelayLoad
RunOnce Local Machine Key:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunOnce
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunOnceEx
Run permanently:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRun
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRun
RunOnce Current User Key (mostly for installations):
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunOnce
Explorer Run:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionPoliciesExplorerRun
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorerRun
Load Key (deprecated):
HKEY_CURRENT_USERSoftwareMicrosoftWindows NTCurrentVersionWindowsload
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWindows
SharedTaskScheduler:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerSharedTaskScheduler
AppInit_DLLs:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWindows
All Users Startup Folder:
C:UsersAll UsersStart MenuProgramsStartup
User Profile Startup Folder :
C:UsersusernameStart MenuProgramsStartup
Sources :
- Windows Registry Persistence, Part 2: The Run Keys and Search-Order
Windows Program Automatic Startup Locations.
Windows launches on startup the programs in parallel, but in groups, as follows:
Windows Boot Device Drivers, having a
Start
value equal to 0HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Windows Auto-start Services & Drivers, having a
Start
value equal to 2HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Windows delayed Auto-start Services & Drivers, having a
Start
value equal to 2
andDelayedAutostart
equal to 1:HKEY_LOCAL_MACHINESystemCurrentControlSetServices
Run Services Once only:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServicesOnce
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunServicesOnce
Run Services permanently:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunServices
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunServices
After the user logs on, the order is as follows :
Notify of the logon event:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindows NTCurrentVersionWinlogonNotify
User Initialization:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonUserinit
Shell:
HKEY_CURRENT_USERSoftwareMicrosoftWindows NTCurrentVersionWinlogonShell
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWinlogonShell
ShellServiceObjectDelayLoad pointing to CLSID InProcServer:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionShellServiceObjectDelayLoad
RunOnce Local Machine Key:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunOnce
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRunOnceEx
Run permanently:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionRun
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRun
RunOnce Current User Key (mostly for installations):
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionRunOnce
Explorer Run:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindowsCurrentVersionPoliciesExplorerRun
HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorerRun
Load Key (deprecated):
HKEY_CURRENT_USERSoftwareMicrosoftWindows NTCurrentVersionWindowsload
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWindows
SharedTaskScheduler:
HKEY_LOCAL_MACHINESOFTWAREMicrosoftWindowsCurrentVersionExplorerSharedTaskScheduler
AppInit_DLLs:
HKEY_LOCAL_MACHINESoftwareMicrosoftWindows NTCurrentVersionWindows
All Users Startup Folder:
C:UsersAll UsersStart MenuProgramsStartup
User Profile Startup Folder :
C:UsersusernameStart MenuProgramsStartup
Sources :
- Windows Registry Persistence, Part 2: The Run Keys and Search-Order
Windows Program Automatic Startup Locations.
answered Dec 7 '18 at 14:16
harrymc
253k12262564
253k12262564
Good answer. I also want to note that some services can have a delayed start to ensure other services start first (hopefully), or to lessen startup time impact. With so many services and applications starting, there completion times can vary heavily under load. And to address the OPs question, Windows Defender is a service, the application seen in the task tray loads later.
– Keltari
Dec 7 '18 at 16:39
add a comment |
Good answer. I also want to note that some services can have a delayed start to ensure other services start first (hopefully), or to lessen startup time impact. With so many services and applications starting, there completion times can vary heavily under load. And to address the OPs question, Windows Defender is a service, the application seen in the task tray loads later.
– Keltari
Dec 7 '18 at 16:39
Good answer. I also want to note that some services can have a delayed start to ensure other services start first (hopefully), or to lessen startup time impact. With so many services and applications starting, there completion times can vary heavily under load. And to address the OPs question, Windows Defender is a service, the application seen in the task tray loads later.
– Keltari
Dec 7 '18 at 16:39
Good answer. I also want to note that some services can have a delayed start to ensure other services start first (hopefully), or to lessen startup time impact. With so many services and applications starting, there completion times can vary heavily under load. And to address the OPs question, Windows Defender is a service, the application seen in the task tray loads later.
– Keltari
Dec 7 '18 at 16:39
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f1381547%2fin-which-order-are-startup-programs-loaded%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
The order is unspecified (except defined by dependence - for example, none programs can start from HKCU/Soft/MS/Win/CurVer/Run or from Autostart menu folder until explorer.exe is started). And no preferences.
– Akina
Dec 7 '18 at 6:55
Security software often includes system drivers which are loaded before regular applications. It's a broad field so you likely would need to be more specific. What's the order of Windows startup on StackOverflow might be interesting. The part about the logon phase especially.
– Seth
Dec 7 '18 at 7:22