Possible Duplicate:
Toggle Airport Cocoa

Is there a way to turn Airport on and off programmatically, without using private APIs?

I need to do this in a way that will be accepted by the Mac App Store.

link|improve this question

Is this for Lion only, or does it need to work for Leopard and Snow Leopard too ? – Paul R Dec 6 '11 at 15:57
feedback

closed as exact duplicate by Paul R, David Gelhar, Jacques Cousteau, Mark Adams, ChrisF Dec 6 '11 at 22:37

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

You can drive the networksetup command line tool directly from within your app (e.g. via system() or popen()).

$ networksetup -setairportpower Airport on

$ networksetup -setairportpower Airport off

This works in 10.6. For 10.7 you will probably need to change the port name from "Airport" to "Wi-Fi". You can check the names manually, e.g.

$ networksetup -listallnetworkservices

and of course you can do this from within your app using the same technique as above.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.