From 439db6a1d010154029fa1780880e2cad85e4d125 Mon Sep 17 00:00:00 2001 From: Luca Beltrame Date: Sun, 31 Oct 2021 09:21:20 +0100 Subject: [PATCH] Add this so I won't forget --- misc/pia.bat | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 misc/pia.bat diff --git a/misc/pia.bat b/misc/pia.bat new file mode 100644 index 0000000..361f31e --- /dev/null +++ b/misc/pia.bat @@ -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 \ No newline at end of file