He estado usando un AppleScript para conectarme a la VPN de mi oficina. Después de actualizar mi macbook a 10.9.3, no se ejecuta y lanza una excepción
Unable to get network preferences
(honestamente, es una traducción floja, si alguien sabe cómo hacer que el editor AppleScript muestre los errores en inglés, me alegraría).
Todo el código:
tell application "System Events"
tell current location of network preferences
set VPNservice to service "VPN (L2TP)" -- name of the VPN service
if exists VPNservice then connect VPNservice
repeat until (connected of current configuration of VPNservice)
delay 1
end repeat
do shell script "route add 192.168.11.0/24 10.64.64.64" with administrator privileges
end tell
end tell
¿Alguien sabe qué pudo haber causado el problema?