aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/quickinstall.bat
blob: f7f0c3c38708fd5ac0eef1432bed09ad59b1113b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@echo off
rem SPDX-License-Identifier: MIT
rem rem Copyright (C) 2019 WireGuard LLC. All Rights Reserved.

echo [+] Building wireguard.exe
call .\build.bat || exit /b 1
echo [+] Building installer
cd .\installer
call .\build.bat || exit /b 1
echo [+] Uninstalling old versions
for /f %%a in ('reg query HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall /s /d /c /e /f WireGuard ^| findstr CurrentVersion\Uninstall') do msiexec /qb /x %%~na
echo [+] Installing new version
for /f "tokens=3" %%a in ('findstr /r "WIREGUARD_WINDOWS_VERSION_STRING.*[0-9.]*" ..\version.h') do set WIREGUARD_VERSION=%%a
set WIREGUARD_VERSION=%WIREGUARD_VERSION:"=%
@echo on
cd .\dist
msiexec /qb /i wireguard-amd64-%WIREGUARD_VERSION%.msi
cd ..\..