confOS/windows/installers/vencord.bat
2024-09-06 09:52:59 +02:00

37 lines
925 B
Batchfile

@ECHO OFF
SETLOCAL ENABLEDELAYEDEXPANSION
ECHO Close Discord
TASKKILL /im Discord.exe /F
ECHO Force update Discord
ECHO Y | winget install --force -he Discord.Discord
SET "discord_dir=%LOCALAPPDATA%\Discord"
SET "vencord=%TEMP%\vencord.exe"
ECHO Download Vencord
PowerShell -Command "" ^
"$link = 'https://github.com/Vencord/Installer/releases/latest/download/VencordInstallerCli.exe';" ^
"Invoke-WebRequest -Uri $link -OutFile '!vencord!'"
ECHO Reclose Discord
TASKKILL /im Discord.exe /F
ECHO Install Vencord
PowerShell -Command "" ^
"Start-Process -Wait -NoNewWindow '!vencord!' '-install', '-location !discord_dir!';" ^
"Remove-Item -Force '!vencord!'"
:: Delete newly created Discord shortcut
DEL %HOMEPATH%\Desktop\Discord.lnk 2>NUL
ie4uinit -show
ECHO Remove the desktop shortcut
IF NOT "%1"=="yes" (
:: Restart Discord
PowerShell Start-Process "!discord_dir!\app-*\Discord.exe"
PAUSE
)
EXIT /B