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
| <key>EnabledSystemIdentifiers</key> | |
| <array> | |
| <string>MacBook11,1</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
| <key>DisabledSystemIdentifiers</key> | |
| <array> | |
| <string>iMac10,1</string> | |
| <string>iMac11,1</string> | |
| <string>iMac11,2</string> | |
| <string>iMac11,3</string> | |
| <string>iMac12,1</string> | |
| <string>iMac12,2</string> | |
| <string>iMac13,1</string> | |
| <string>iMac13,2</string> |
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
| -- Copy the boot.efi to the booter shell | |
| on copyBootEfi_(sender) | |
| try | |
| -- Update Build Process Window's Text Field | |
| set my buildProcessTextField to "Copying boot.efi" | |
| delay 0.1 | |
| -- Update build Process ProgressBar | |
| set my buildProcessProgressBar to buildProcessProgressBar + 1 | |
| --Log Action | |
| set logMe to "Copying " & quoted form of netBootDmgMountPath & "/System/Library/CoreServices/boot.efi to " & quoted form of netBootDirectory & "/i386/booter" |
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 | |
| #################################################################################################### | |
| # | |
| # License: https://macmule.com/license/ | |
| # | |
| #################################################################################################### | |
| # | |
| # DEFINE VARIABLES & READ IN PARAMETERS | |
| # | |
| #################################################################################################### |
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
| <key>NSToolbar Configuration BrowserToolbarIdentifier</key> | |
| <dict> | |
| <key>TB Default Item Identifiers</key> | |
| <array> | |
| <string>BackForwardToolbarIdentifier</string> | |
| <string>com.mycomany.extension-myDeveloperID identifier</string> | |
| <string>CloudTabsToolbarIdentifier</string> | |
| <string>ShareToolbarIdentifier</string> | |
| <string>InputFieldsToolbarIdentifier</string> | |
| <string>ShowDownloadsToolbarIdentifier</string> |
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 python | |
| ''' | |
| License: https://macmule.com/license/ | |
| ''' | |
| import logging | |
| import os | |
| import shutil |
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
| <config> | |
| <panel> | |
| <name>AppsPanel</name> | |
| <visible>true</visible> | |
| </panel> | |
| <feature> | |
| <name>SelfServeInstalls</name> | |
| <enabled>false</enabled> | |
| </feature> | |
| </config> |
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/sh | |
| #################################################################################################### | |
| # | |
| # License: https://macmule.com/license/ | |
| # | |
| #################################################################################################### | |
| ### | |
| # Get the Active Directory Node Name | |
| ### |
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 | |
| #################################################################################################### | |
| # | |
| # License: https://macmule.com/license/ | |
| # | |
| ################################################################################################### | |
| # | |
| # DEFINE VARIABLES & READ IN PARAMETERS | |
| # | |
| #################################################################################################### |
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
| -- Get the name Volume Name of the Macs CoreStorage volume. | |
| set csVolume to do shell script "diskutil cs list | awk '/Volume Name:/{out=$3; for(i=4;i<=NF;i++){out=out\" \"$i}; print out}'" | |
| -- If the above command come back with a Volume Name. | |
| if csVolume is not "" then | |
| -- Set this app to the front | |
| tell application "System Events" to set frontmost of process "CoreStorage Revert" to true | |
| -- Advise that volume needs to be reverted, offering option to skip if wanted |