Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save bwagner/4009285 to your computer and use it in GitHub Desktop.
Save bwagner/4009285 to your computer and use it in GitHub Desktop.
-- Adapted from http://www.macosxhints.com/article.php?story=20031018154841400
tell application "System Preferences"
activate
end tell
tell application "System Events"
tell process "System Preferences"
click menu item "Sharing" of menu "View" of menu bar 1
delay 2
tell window "Sharing"
click checkbox 1 of row 11 of table 1 of scroll area 1 of group 1
delay 1
if (exists sheet 1) then
if (exists button "Turn Wi-Fi On" of sheet 1) then
click button "Turn Wi-Fi On" of sheet 1
delay 1
end if
click button "Start" of sheet 1
else
do shell script "/usr/sbin/networksetup -setairportpower en1 off"
delay 1
end if
end tell
end tell
end tell
ignoring application responses
tell application "System Preferences" to quit
end ignoring
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment