confOS/windows/vencord_installer.bat

25 lines
675 B
Batchfile
Raw Normal View History

2023-08-11 14:27:37 +02:00
@ECHO OFF
ECHO Ferme Discord
TASKKILL /im Discord.exe /F
2023-11-05 17:30:04 +01:00
ECHO MaJ Discord
ECHO Y | winget install -he Discord.Discord
2023-08-11 14:27:37 +02:00
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;" ^
2024-01-23 14:42:50 +01:00
"Start-Process -Wait -NoNewWindow $outfile '-install', '-location %LOCALAPPDATA%\Discord';" ^
"Remove-Item -Force $outfile"
2023-08-11 14:27:37 +02:00
2023-08-11 14:28:22 +02:00
IF NOT "%1"=="yes" (
2023-08-11 14:27:37 +02:00
:: Restart Discord
2023-09-13 12:01:12 +02:00
PowerShell Start-Process "%LOCALAPPDATA%\Discord\app-*\Discord.exe"
2023-08-11 14:27:37 +02:00
PAUSE
)
EXIT /B