Last active
May 22, 2016 17:13
-
-
Save talkingmoose/3dd59e80a551f2d36acfb6c552afea3b to your computer and use it in GitHub Desktop.
Opens the Users & Groups pane in System Preferences and clicks the Change Password button
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tell application "Finder" to open file "Accounts.prefpane" of (path to system preferences) | |
| tell application "System Events" | |
| tell application process "System Preferences" | |
| delay 1 | |
| click button "Change Password…" of tab group 1 of window "Users & Groups" | |
| end tell | |
| end tell |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment