Last active
June 24, 2020 14:09
-
-
Save ndarville/988684f7c809ff0d471dba54ce1adb2e to your computer and use it in GitHub Desktop.
Batch script to delay startup of applications after boot
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
timeout /t 120 | |
start itunes | |
start /min %APPDATA%\Dropbox\bin\Dropbox.exe | |
start /min "" "C:\Program Files (x86)\Battle.net\Battle.net" | |
start /min "" "%LOCALAPPDATA%\Discord\app-0.0.297\Discord.exe" |
You should use "%LOCALAPPDATA%\Discord\Update.exe" --processStart Discord.exe instead
This is what discord uses when it opens at startup (I found out by right clicking the shortcut that was made on my desktop)
Oh awesome, I’ll start using that then, cheers.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Figuring out tech stuff through online communities is the worst, glad it worked out.
The Discord command is kind of outdated, because the versioning changes with every update if I recall correctly. But as a general example, it does the job.