Download a PDF of my slides and notes
Example code from my MacAdmins Conference at Penn State 2024 presentation.
Download a PDF of my slides and notes
Example code from my MacAdmins Conference at Penn State 2024 presentation.
https://www.apple.com/ios/ios-18-preview/ | |
https://www.apple.com/ipados/ipados-18-preview/ | |
https://www.apple.com/watchos/watchos-preview/ | |
Published Date: June 10, 2024 | |
Updated June 19, 2024 | |
Verification: https://regex101.com/r/0UDJHk/6 |
#!/bin/zsh | |
:<<ABOUT_THIS_SCRIPT | |
------------------------------------------------------------------------------- | |
Written by:William Smith | |
Professional Services Engineer | |
Jamf | |
bill@talkingmoose.net | |
https://gist.github.com/b99a43948c4784631e9ad60eb714c776 |
#!/bin/zsh | |
:<<ABOUT_THIS_SCRIPT | |
------------------------------------------------------------------------------- | |
Written by:William Smith | |
Professional Services Engineer | |
Jamf | |
bill@talkingmoose.net | |
https://gist.github.com/84cbe002aca35c73032bccd230d8988a |
#!/bin/zsh | |
# set -x # show command | |
:<<ABOUT_THIS_SCRIPT | |
Written by:William Smith | |
Technical Enablement Manager | |
Jamf | |
bill@talkingmoose.net | |
https://gist.github.com/talkingmoose/4a950a715ad07ae3baecce2f46b0a7e5 |
#!/bin/zsh | |
:<<ABOUT_THIS_SCRIPT | |
------------------------------------------------------------------------------- | |
Written by:William Smith | |
Technical Enablement Manager | |
Jamf | |
bill@talkingmoose.net | |
https://gist.github.com/talkingmoose/9f4638932df28c4bebde5dd47be1812a |
#!/bin/bash | |
<<ABOUT_THIS_SCRIPT | |
------------------------------------------------------------------------------- | |
Written by:William Smith | |
Professional Services Engineer | |
Jamf | |
bill@talkingmoose.net | |
https://gist.github.com/2cf20236e665fcd7ec41311d50c89c0e |
#!/bin/bash | |
# server connection information | |
URL="https://talkingmoose.jamfcloud.com" | |
username="API-Editor" | |
password="P@55w0rd" | |
# provide the Jamf Pro ID of the PreStage Enrollment; look in the URL when viewing the PreStage Enrollment | |
prestageID="1" |
https://www.apple.com/macos/macos-sequoia-preview/ | |
Published Date: June 10, 2024 | |
Updated June 28, 2024 | |
Verification: https://regex101.com/r/bNOMXz/4 | |
1) Exact regex — Matches major model identifier numbers based on Apple's knowledge base article (more accurate): | |
^(Mac(1[345]|BookPro1[5-8]|BookAir(9|10)|Pro7)|iMac(Pro1|(19|2[01]))|Macmini[89]),\d+$ |
#!/bin/zsh | |
:<<'ABOUT_THIS_SCRIPT' | |
----------------------------------------------------------------------- | |
Written by:William Smith | |
Partner Program Manager | |
Jamf | |
bill@talkingmoose.net | |
https://gist.github.com/b6637160b65b751824943ede022daa17 |