He implementado una VPN auto opción de conexión mediante Applescript [ver código]. Funciona como un encanto solo hay un problema. Cada vez que abro mi MacBook me sale esto [ver impr pant] notificación. Unos segundos más tarde vuelve a conectar, como debe ser. ¿Cómo puedo dejar que la notificación a la que se muestre? Es muy molesto.
on idle
tell application "System Events"
tell current location of network preferences
set myConnection to the service "my vpn name"
if myConnection is not null then
if current configuration of myConnection is not connected then
connect myConnection
end if
end if
end tell
return 120
end tell end idle