20 lines
591 B
Batchfile
20 lines
591 B
Batchfile
@ECHO OFF
|
|
|
|
ECHO Ferme Discord
|
|
TASKKILL /im Discord.exe /F
|
|
|
|
ECHO Installe Vencord
|
|
PowerShell -Command "$link = 'https://github.com/Vencord/Installer/releases/latest/download/VencordInstallerCli.exe';" ^
|
|
"$file = 'vencord.exe';" ^
|
|
"$outfile = Join-Path -Path $env:TEMP -ChildPath $file;" ^
|
|
"Invoke-WebRequest -Uri $link -OutFile $outfile;" ^
|
|
"cd $env:TEMP;" ^
|
|
"ECHO 1| & $outfile -install"
|
|
|
|
IF NOT "%1"=="noskip" (
|
|
:: Restart Discord
|
|
"%LOCALAPPDATA%\Discord\Update.exe"
|
|
|
|
PAUSE
|
|
)
|
|
EXIT /B
|