J'ai implémenté une option de connexion automatique au VPN via Applescript [voir code]. Ça marche très bien, il n'y a qu'un seul problème. À chaque fois que j'ouvre mon MacBook, je reçois cette notification [voir capture d'écran]. Quelques secondes plus tard, la reconnexion se fait comme il se doit. Comment puis-je empêcher cette notification de s'afficher ? C'est très ennuyeux.
sur idle
tell application "System Events"
tell current location of network preferences
set myConnection to the service "le nom de mon vpn"
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