-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[macOS] Add parallels to macOS 15 images. (#11749)
--------- Co-authored-by: sureshe456 <[email protected]> Co-authored-by: Erik Bershel <[email protected]>
- Loading branch information
1 parent
ea2cbb4
commit ab54edd
Showing
6 changed files
with
49 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
34 changes: 34 additions & 0 deletions
34
images/macos/scripts/helpers/confirm-identified-developers-macos15.scpt
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# This AppleScript clicks "Allow" for "System Software from developer "Parallels International GmbH" | ||
# Steps: | ||
# - Open System Settings -> Privacy & Security | ||
# - Click 'Allow' for 'System Software from developer "Parallels International GmbH' | ||
# - Enter password for runner | ||
|
||
on run argv | ||
set userpassword to item 1 of argv | ||
|
||
tell application "System Settings" | ||
activate | ||
delay 5 | ||
end tell | ||
|
||
tell application "System Events" | ||
tell process "System Settings" | ||
set frontmost to true | ||
repeat until exists window 1 | ||
delay 2 | ||
end repeat | ||
|
||
tell splitter group 1 of group 1 of window 1 | ||
select row 27 of outline 1 of scroll area 1 of group 1 | ||
delay 5 | ||
click UI element 1 of row 27 of outline 1 of scroll area 1 of group 1 | ||
delay 5 | ||
keystroke userpassword | ||
delay 5 | ||
keystroke return | ||
delay 5 | ||
end tell | ||
end tell | ||
end tell | ||
end run |
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -85,7 +85,7 @@ | |
"xcodes" | ||
], | ||
"cask_packages": [ | ||
"" | ||
"parallels" | ||
] | ||
}, | ||
"gcc": { | ||
|