mirror of
https://github.com/amnezia-vpn/amnezia-client.git
synced 2026-05-08 14:33:23 +00:00
* Stop AWG service after uninstall * Close Amnezia-service executable after install * Close Amnezia application with service
13 lines
313 B
Batchfile
13 lines
313 B
Batchfile
set AmneziaPath=%~dp0
|
|
echo %AmneziaPath%
|
|
|
|
"%AmneziaPath%\AmneziaVPN.exe" -c
|
|
timeout /t 1
|
|
sc stop AmneziaVPN-service
|
|
sc delete AmneziaVPN-service
|
|
sc stop WireGuardTunnel$AmneziaVPN
|
|
sc delete WireGuardTunnel$AmneziaVPN
|
|
taskkill /IM "AmneziaVPN-service.exe" /F
|
|
taskkill /IM "AmneziaVPN.exe" /F
|
|
exit /b 0
|