Permanent shortcut path for discord launching

Commenti

4 commenti

  • Tohka

    Paste this code in a .bat file and it'll be your shortcut.

    @echo off
    cd %localappdata%
    for /f "delims=" %%i in ('dir /b /ad-h /o-n "Discord\app-*"') do (
        cd "Discord\%%i"
        start Discord.exe
        exit
    )

    This also won't allow discord to update on starting (useful when using BetterDiscord)

    0
  • Amy

    Tohka you don't need to do any of that. You can just create a shortcut to this path:

    %localappdata%\Discord\Update.exe --processStart Discord.exe

    It's how discord does it when you install it. It will always launch whichever version you have.

    1
  • Tohka

    @Amy 
    Yes, I agree with you. My solution is way more work, but the thing is, I have tried running Discord from update.exe, but I don't know why it didn't work, and I thought maybe it won't work for some others either. So...

    0
  • k0ch1a

    Brilliant workarounds. Wonder if discord would include them in the future for users like me who wants to manually launch the apps.

    0

Accedi per aggiungere un commento.