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
| <html> | |
| <head> | |
| <style> | |
| * { | |
| font-family: "Helvetica Neue", Helvetica, sans-serif; | |
| font-size: 9pt; | |
| line-height: 1.2em; | |
| } | |
| a { |
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
| #!/bin/bash | |
| "/System/Library/CoreServices/Software Update.app/Contents/Resources/SoftwareUpdateLauncher.app/Contents/MacOS/SoftwareUpdateLauncher" -RootInstallMode YES -SkipConfirm YES |
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
| 10.3 (Panther): | |
| https://swscan.apple.com/scanningpoints/scanningpointX.xml | |
| 10.4 (Tiger): | |
| https://swscan.apple.com/content/catalogs/index.sucatalog | |
| https://swscan.apple.com/content/catalogs/index-1.sucatalog | |
| 10.5 (Leopard): | |
| https://swscan.apple.com/content/catalogs/others/index-leopard.merged-1.sucatalog |
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
| #!/bin/bash | |
| ### | |
| # | |
| # Name: shard.sh | |
| # Description: This Jamf Pro extension attribute takes a Mac serial | |
| # number as input and uses that serial number to output a | |
| # number from 0 to 9. This can be useful in scoping Jamf | |
| # policies to a specific percentage of the fleet. | |
| # Author: Elliot Jordan <elliot@elliotjordan.com> |
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
| #!/usr/local/autopkg/python | |
| # HTTPS Spotter | |
| # Copyright 2016-2025 Elliot Jordan | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # | |
| # http://www.apache.org/licenses/LICENSE-2.0 |
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
| #!/usr/local/autopkg/python | |
| # encoding: utf-8 | |
| # PkgCreator to AppPkgCreator | |
| # Copyright 2019-2025 Elliot Jordan | |
| # | |
| # Licensed under the Apache License, Version 2.0 (the "License"); | |
| # you may not use this file except in compliance with the License. | |
| # You may obtain a copy of the License at | |
| # |
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
| #!/usr/local/bin/managed_python3 | |
| """docklib_example.py | |
| This example script demonstrates how Mac admins can use the docklib module to | |
| manage the default state of Mac users' Docks. The script is meant to run at | |
| login in user context using a tool like Outset or a custom LaunchAgent. | |
| For details, see: https://www.elliotjordan.com/posts/resilient-docklib/ | |
| """ |
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
| #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| """This script leverages the jamf-pro-sdk module to remove policies left over | |
| from usage of the deprecated Jamf Remote app. | |
| """ | |
| import re | |
| from jamf_pro_sdk import JamfProClient, PromptForCredentials |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>RestartAction</key> | |
| <string>RequireLogout</string> | |
| <key>catalogs</key> | |
| <array> | |
| <string>testing</string> | |
| </array> |
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
| #!/bin/bash | |
| ### | |
| # | |
| # Name: ModifyAuthDBLoginMechs.sh | |
| # Description: This script provides functions that can help Mac IT | |
| # administrators modify and maintain the list of | |
| # login mechanisms in the macOS authorization database. | |
| # For details see: | |
| # https://www.elliotjordan.com/posts/macos-authdb-mechs |
NewerOlder