You can use Apple Script to connect to your VPN accounts. See the example below for a typical script.
tell application "Shimo"
set p to account "vpn.rwth-aachen.de"
if p is connected then
disconnect account p
else
connect account p
end if
end tell
Modified on: Tue, 21 Aug, 2018 at 12:56 PM
You can use Apple Script to connect to your VPN accounts. See the example below for a typical script.
tell application "Shimo"
set p to account "vpn.rwth-aachen.de"
if p is connected then
disconnect account p
else
connect account p
end if
end tell
Did you find it helpful? Yes No
Send feedback