How to Control Windows 11 Startup Delay for Apps
This tutorial shows you how to enable or disable the delay when startup apps run in Windows 11. You can control when these apps open when you sign into Windows.
What Are Startup Apps?
Startup apps are programs that open automatically when you sign into Windows 11. You can set any app, shortcut, folder, drive, file, or script to run at startup.
Why Would You Want to Change This?
By default, Windows waits about 10 seconds before running your startup items. This delay helps your computer start faster. But if you have a fast computer, you might want to remove this delay. This lets your startup items run right away instead of waiting.
How to Enable or Disable Startup App Delay
- [Admin Required] Open Windows Terminal as an administrator.
- Run the commands below based on what you want to do.
Enable Delay of Running Startup Apps
This is the default Windows setting.
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v StartupDelayInMSec /f
reg delete "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v WaitForIdleState /f
Disable Delay of Running Startup Apps
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v StartupDelayInMSec /t REG_DWORD /d 0 /f
reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v WaitForIdleState /t REG_DWORD /d 0 /f
What Happens?
Once you run the command, your startup apps will behave based on your choice. If you enabled the delay, apps will wait 10 seconds before running. If you disabled the delay, apps will run right away when you sign in.
Summary
You now know how to control when your startup apps run in Windows 11. Use the administrator command in Windows Terminal to enable or disable the startup delay. This gives you control over how quickly your apps launch when you sign in to your computer.
How to disable Windows 11 startup delay?
To disable the startup delay, open Windows Terminal as an administrator. Execute the following commands: 'reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v StartupDelayInMSec /t REG_DWORD /d 0 /f' followed by 'reg add "HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Serialize" /v WaitForIdleState /t REG_DWORD /d 0 /f'. This forces startup apps to launch immediately upon login.
Why is my PC taking so long to startup Windows 11?
Your PC may take longer to start due to a high number of enabled startup applications, outdated drivers, or a slow hard drive. Windows also includes a default 10-second delay for startup items to ensure system stability. Managing these apps and disabling unnecessary startup delays can significantly improve your boot time.
How to fix startup delay?
You can fix startup delays by disabling unnecessary programs in the Task Manager's Startup tab. For advanced users, you can remove the default Windows startup delay by modifying the registry via Windows Terminal. Running the specific registry commands to set StartupDelayInMSec and WaitForIdleState to zero will eliminate the wait time.
How to make Windows 11 startup quicker?
To make Windows 11 start quicker, disable unnecessary startup apps in Task Manager, enable Fast Startup in Power Options, and remove the default 10-second startup delay via the Registry Editor. Additionally, keeping your system drivers updated and ensuring your OS is installed on an SSD will provide the fastest boot performance.
Was this guide helpful?
Leave a Reply