1
0
Fork 0

Add this so I won't forget

This commit is contained in:
Luca Beltrame 2021-10-31 09:21:20 +01:00
parent 34e8c11627
commit 439db6a1d0
Signed by: einar
GPG key ID: 4707F46E9EC72DEC

24
misc/pia.bat Normal file
View file

@ -0,0 +1,24 @@
@echo off
:: run this batch file THEN the Windows PIA app!
:: obtains PIA WireGuard config from *.conf file written to disk
:: opens up the *.conf file in notepad with config info
:: NOTE: the default PIA app installation directory
set DIRECTORY=C:\Program Files\Private Internet Access
set PC="a.conf"
set PIA="%DIRECTORY%\data\w*.conf"
start "PIA" "%DIRECTORY%\pia-client.exe"
timeout /t 2 /nobreak
"%DIRECTORY%\piactl.exe" disconnect
"%DIRECTORY%\piactl.exe" connect
if exist %PC% del %PC% > nul
:START
echo .
if exist %PIA% copy %PIA% %PC% > nul
if exist %PC% notepad %PC%
if exist %PC% goto END
goto START
:END
if exist %PC% del %PC% > nul