Creating a Delayed Windows Shortcut for Discord on Older Systems
If you're using an older system, such as a Core i3-2100P, and want to create a Windows shortcut that starts the Discord application with a one-minute delay, you've come to the right place. This article will guide you through the process, providing detailed context and covering key concepts related to creating a delayed Windows shortcut for Discord on older systems.
Why Create a Delayed Windows Shortcut for Discord?
Creating a delayed Windows shortcut for Discord can be useful in several scenarios. For instance, if you're experiencing performance issues with your older system, adding a delay to the shortcut can help ensure that Discord starts up smoothly without causing any lag or freezing. Additionally, if you have other applications that need to start up before Discord, a delayed shortcut can help you manage your system's startup process more efficiently.
Creating the Delayed Windows Shortcut
To create a delayed Windows shortcut for Discord, follow these steps:
- Right-click on your desktop and select
New>Shortcut. - In the
Create Shortcutdialog box, enter the following path:C:\Windows\System32\cmd.exe. - Click
Next. - Enter a name for the shortcut, such as
Discord Delayed Start. - Click
Finish. - Right-click on the new shortcut and select
Properties. - In the
Shortcuttab, click theAdvancedbutton. - Check the box next to
Run as administrator. - Click
OK. - In the
Shortcuttab, click theTargetfield and add the following text after the existing text:/c start /wait /min Discord.exe && timeout /t 60000. - Click
OK.
The /c switch tells the command prompt to run the command and then close. The start command starts a new application, in this case, Discord. The /wait switch tells the command prompt to wait until the application has closed before moving on to the next command. The /min switch starts the application minimized. The Discord.exe is the executable file for Discord. The timeout /t 60000 command pauses the execution for 60,000 milliseconds, or one minute. Finally, the && operator allows us to run multiple commands in one line.
Testing the Delayed Windows Shortcut
To test the delayed Windows shortcut, simply double-click on it. Discord should start up with a one-minute delay. If you want to change the delay time, you can modify the timeout /t command in the shortcut's properties.
References
- Microsoft. (n.d.). Command prompt. https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/cmd
- Microsoft. (n.d.). Start. https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/start
- Microsoft. (n.d.). Timeout. https://docs.microsoft.com/en-us/windows-server/administration/windows-commands/timeout
This article was created for the site focused on the global topic of creating Windows shortcuts for older systems. The types of references included are online resources.
End of article.