How can I enable Mountain Lion Airplay mirroring through command line?

7,774

You can do this with AppleScript. First create "EnableAirplay.scpt" and paste following content in it:

tell application "System Preferences"
    set current pane to pane "com.apple.preference.displays"
    activate
end tell

tell application "System Events"
    tell process "System Preferences"
        click pop up button 1 of window 1
        click menu item 2 of menu 1 of pop up button 1 of window 1
    end tell
end tell

tell application "System Preferences"
    quit
end tell

Then you can run this script with following command:

osascript EnableAirPlay.scpt

This will automate enabling AirPlay. For more detail you can refer to following references:

Share:
7,774

Related videos on Youtube

rubdottocom
Author by

rubdottocom

Updated on September 18, 2022

Comments

  • rubdottocom
    rubdottocom almost 2 years

    I want to enable/disable airplay mirroring with an script and I don't know how to find what commands are executed when Airplay is activated.

    Any idea about how to do it or where to search?

    Thank you!

  • Oliver Salzburg
    Oliver Salzburg almost 12 years
    Welcome to Super User! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference.