├── .gitattributes ├── .gitignore ├── Build Tools ├── Create macOS USB Installer Commands.txt ├── Download-macOS-Installer-DMGs.sh ├── Mac Test Boot Disk Image Commands.txt ├── MacLand Script Builder.applescript ├── create-mtb-dmg.sh └── update-mac-drives.sh ├── LICENSE ├── Other Scripts ├── apple-model.php ├── appledb-parsing-output │ ├── every_model_id_and_specs_id_with_marketing_model_name_from_appledb.txt │ └── every_model_id_with_marketing_model_name_from_appledb.txt ├── generate_csreq_hex_for_tcc_db.jxa ├── get_bluetooth_from_all_mac_specs_pages.sh ├── get_every_config_code_with_marketing_model_name_from_apple_api.sh ├── get_every_docs_and_specs_id_with_marketing_model_name_and_model_ids_from_support_pages.sh ├── get_every_model_id_with_marketing_model_name_from_appledb.sh ├── get_marketing_model_name.sh ├── get_power_adapters_from_all_mac_specs_pages.sh ├── get_specs_url_from_mac_model_id.sh ├── get_specs_url_from_serial.sh ├── get_truetone_from_all_mac_specs_pages.sh ├── get_wifi_network_name.sh ├── group_every_intel_mac_marketing_model_name_with_model_ids_and_serial_config_codes.sh ├── quit_apps_by_bundle_id.sh ├── scrape-support-pages-output │ ├── every_docs_and_specs_id_with_marketing_model_name_from_docs_pages.txt │ └── every_specs_id_with_marketing_model_name_and_model_ids_from_identification_pages.txt └── serial-config-codes-output │ ├── every_config_code_with_marketing_model_name.txt │ ├── every_config_code_with_marketing_model_name_and_docs_ids.txt │ ├── every_intel_mac_marketing_model_name_and_docs_url_with_grouped_model_ids_and_serial_config_codes.txt │ ├── every_intel_mac_marketing_model_name_with_grouped_model_ids_and_serial_config_codes.txt │ ├── every_mac_marketing_model_name_and_docs_url_with_grouped_serial_config_codes.txt │ ├── every_mac_marketing_model_name_with_grouped_serial_config_codes.txt │ ├── every_marketing_model_name_and_docs_ids_with_grouped_serial_config_codes.txt │ ├── every_marketing_model_name_and_docs_url_with_grouped_serial_config_codes.txt │ └── every_marketing_model_name_with_grouped_serial_config_codes.txt ├── Production Scripts ├── Cleanup After QA Complete │ └── Source │ │ └── Cleanup After QA Complete.applescript ├── Free Geek Demo Helper │ └── Source │ │ └── Free Geek Demo Helper.applescript ├── Free Geek Login Progress │ └── Source │ │ └── Free Geek Login Progress.applescript ├── Free Geek Reset │ └── Source │ │ └── Free Geek Reset.applescript ├── Free Geek Setup │ └── Source │ │ └── Free Geek Setup.applescript ├── Free Geek Snapshot Helper │ └── Source │ │ └── Free Geek Snapshot Helper.applescript └── Free Geek Task Runner │ └── Source │ └── Free Geek Task Runner.applescript ├── README.md ├── Testing Scripts ├── Audio Test │ └── Source │ │ └── Audio Test.applescript ├── CPU Stress Test │ └── Source │ │ └── CPU Stress Test.applescript ├── Camera Test │ └── Source │ │ └── Camera Test.applescript ├── Free Geek Updater │ └── Source │ │ └── Free Geek Updater.applescript ├── GPU Stress Test │ └── Source │ │ └── GPU Stress Test.applescript ├── Hard Drive Test │ └── Source │ │ └── Extract Info from DriveDx Report.applescript ├── Internet Test │ └── Source │ │ └── Internet Test.applescript ├── Keyboard Test │ └── Source │ │ ├── build_keyboard_test.sh │ │ ├── keyboard_test_modifications-mac.css │ │ ├── keyboard_test_modifications-mac.js │ │ ├── keyboard_test_modifications-windows-linux.css │ │ └── keyboard_test_modifications-windows-linux.js ├── Mac Scope │ └── Source │ │ └── Mac Scope.applescript ├── Microphone Test │ └── Source │ │ └── Microphone Test.applescript ├── Screen Test │ └── Source │ │ └── Screen Test.applescript ├── Startup Picker │ └── Source │ │ └── Startup Picker.applescript ├── Test Boot Setup │ └── Source │ │ └── Test Boot Setup.applescript ├── Test CD │ └── Source │ │ └── Test CD.applescript ├── Test DVD │ └── Source │ │ └── Test DVD.applescript ├── Trackpad Test │ └── Source │ │ └── Trackpad Test.applescript └── Volume Scripts for Breakaway │ ├── Set Volume for Headphones.applescript │ └── Set Volume for Speakers.applescript └── fgMIB Resources ├── Build Tools ├── build-fg-prepare-os-pkg.sh ├── copy-fgMIB-resources-to-drives.sh └── save-text-to-speech-phrases.sh ├── Install Packages Script └── fg-install-packages.sh ├── Prepare OS Package ├── Package Resources │ ├── fg-error-occurred │ │ └── fg-error-occurred.sh │ └── fg-snapshot-reset │ │ ├── fg-snapshot-preserver.sh │ │ └── fg-snapshot-reset.sh └── fg-prepare-os.sh └── fg-install-os.sh /.gitattributes: -------------------------------------------------------------------------------- 1 | *.jxa linguist-language=JavaScript 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/.gitignore -------------------------------------------------------------------------------- /Build Tools/Create macOS USB Installer Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Build Tools/Create macOS USB Installer Commands.txt -------------------------------------------------------------------------------- /Build Tools/Download-macOS-Installer-DMGs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Build Tools/Download-macOS-Installer-DMGs.sh -------------------------------------------------------------------------------- /Build Tools/Mac Test Boot Disk Image Commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Build Tools/Mac Test Boot Disk Image Commands.txt -------------------------------------------------------------------------------- /Build Tools/MacLand Script Builder.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Build Tools/MacLand Script Builder.applescript -------------------------------------------------------------------------------- /Build Tools/create-mtb-dmg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Build Tools/create-mtb-dmg.sh -------------------------------------------------------------------------------- /Build Tools/update-mac-drives.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Build Tools/update-mac-drives.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /Other Scripts/apple-model.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/apple-model.php -------------------------------------------------------------------------------- /Other Scripts/appledb-parsing-output/every_model_id_and_specs_id_with_marketing_model_name_from_appledb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/appledb-parsing-output/every_model_id_and_specs_id_with_marketing_model_name_from_appledb.txt -------------------------------------------------------------------------------- /Other Scripts/appledb-parsing-output/every_model_id_with_marketing_model_name_from_appledb.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/appledb-parsing-output/every_model_id_with_marketing_model_name_from_appledb.txt -------------------------------------------------------------------------------- /Other Scripts/generate_csreq_hex_for_tcc_db.jxa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/generate_csreq_hex_for_tcc_db.jxa -------------------------------------------------------------------------------- /Other Scripts/get_bluetooth_from_all_mac_specs_pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/get_bluetooth_from_all_mac_specs_pages.sh -------------------------------------------------------------------------------- /Other Scripts/get_every_config_code_with_marketing_model_name_from_apple_api.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/get_every_config_code_with_marketing_model_name_from_apple_api.sh -------------------------------------------------------------------------------- /Other Scripts/get_every_docs_and_specs_id_with_marketing_model_name_and_model_ids_from_support_pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/get_every_docs_and_specs_id_with_marketing_model_name_and_model_ids_from_support_pages.sh -------------------------------------------------------------------------------- /Other Scripts/get_every_model_id_with_marketing_model_name_from_appledb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/get_every_model_id_with_marketing_model_name_from_appledb.sh -------------------------------------------------------------------------------- /Other Scripts/get_marketing_model_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/get_marketing_model_name.sh -------------------------------------------------------------------------------- /Other Scripts/get_power_adapters_from_all_mac_specs_pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/get_power_adapters_from_all_mac_specs_pages.sh -------------------------------------------------------------------------------- /Other Scripts/get_specs_url_from_mac_model_id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/get_specs_url_from_mac_model_id.sh -------------------------------------------------------------------------------- /Other Scripts/get_specs_url_from_serial.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/get_specs_url_from_serial.sh -------------------------------------------------------------------------------- /Other Scripts/get_truetone_from_all_mac_specs_pages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/get_truetone_from_all_mac_specs_pages.sh -------------------------------------------------------------------------------- /Other Scripts/get_wifi_network_name.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/get_wifi_network_name.sh -------------------------------------------------------------------------------- /Other Scripts/group_every_intel_mac_marketing_model_name_with_model_ids_and_serial_config_codes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/group_every_intel_mac_marketing_model_name_with_model_ids_and_serial_config_codes.sh -------------------------------------------------------------------------------- /Other Scripts/quit_apps_by_bundle_id.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/quit_apps_by_bundle_id.sh -------------------------------------------------------------------------------- /Other Scripts/scrape-support-pages-output/every_docs_and_specs_id_with_marketing_model_name_from_docs_pages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/scrape-support-pages-output/every_docs_and_specs_id_with_marketing_model_name_from_docs_pages.txt -------------------------------------------------------------------------------- /Other Scripts/scrape-support-pages-output/every_specs_id_with_marketing_model_name_and_model_ids_from_identification_pages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/scrape-support-pages-output/every_specs_id_with_marketing_model_name_and_model_ids_from_identification_pages.txt -------------------------------------------------------------------------------- /Other Scripts/serial-config-codes-output/every_config_code_with_marketing_model_name.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/serial-config-codes-output/every_config_code_with_marketing_model_name.txt -------------------------------------------------------------------------------- /Other Scripts/serial-config-codes-output/every_config_code_with_marketing_model_name_and_docs_ids.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/serial-config-codes-output/every_config_code_with_marketing_model_name_and_docs_ids.txt -------------------------------------------------------------------------------- /Other Scripts/serial-config-codes-output/every_intel_mac_marketing_model_name_and_docs_url_with_grouped_model_ids_and_serial_config_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/serial-config-codes-output/every_intel_mac_marketing_model_name_and_docs_url_with_grouped_model_ids_and_serial_config_codes.txt -------------------------------------------------------------------------------- /Other Scripts/serial-config-codes-output/every_intel_mac_marketing_model_name_with_grouped_model_ids_and_serial_config_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/serial-config-codes-output/every_intel_mac_marketing_model_name_with_grouped_model_ids_and_serial_config_codes.txt -------------------------------------------------------------------------------- /Other Scripts/serial-config-codes-output/every_mac_marketing_model_name_and_docs_url_with_grouped_serial_config_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/serial-config-codes-output/every_mac_marketing_model_name_and_docs_url_with_grouped_serial_config_codes.txt -------------------------------------------------------------------------------- /Other Scripts/serial-config-codes-output/every_mac_marketing_model_name_with_grouped_serial_config_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/serial-config-codes-output/every_mac_marketing_model_name_with_grouped_serial_config_codes.txt -------------------------------------------------------------------------------- /Other Scripts/serial-config-codes-output/every_marketing_model_name_and_docs_ids_with_grouped_serial_config_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/serial-config-codes-output/every_marketing_model_name_and_docs_ids_with_grouped_serial_config_codes.txt -------------------------------------------------------------------------------- /Other Scripts/serial-config-codes-output/every_marketing_model_name_and_docs_url_with_grouped_serial_config_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/serial-config-codes-output/every_marketing_model_name_and_docs_url_with_grouped_serial_config_codes.txt -------------------------------------------------------------------------------- /Other Scripts/serial-config-codes-output/every_marketing_model_name_with_grouped_serial_config_codes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Other Scripts/serial-config-codes-output/every_marketing_model_name_with_grouped_serial_config_codes.txt -------------------------------------------------------------------------------- /Production Scripts/Cleanup After QA Complete/Source/Cleanup After QA Complete.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Production Scripts/Cleanup After QA Complete/Source/Cleanup After QA Complete.applescript -------------------------------------------------------------------------------- /Production Scripts/Free Geek Demo Helper/Source/Free Geek Demo Helper.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Production Scripts/Free Geek Demo Helper/Source/Free Geek Demo Helper.applescript -------------------------------------------------------------------------------- /Production Scripts/Free Geek Login Progress/Source/Free Geek Login Progress.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Production Scripts/Free Geek Login Progress/Source/Free Geek Login Progress.applescript -------------------------------------------------------------------------------- /Production Scripts/Free Geek Reset/Source/Free Geek Reset.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Production Scripts/Free Geek Reset/Source/Free Geek Reset.applescript -------------------------------------------------------------------------------- /Production Scripts/Free Geek Setup/Source/Free Geek Setup.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Production Scripts/Free Geek Setup/Source/Free Geek Setup.applescript -------------------------------------------------------------------------------- /Production Scripts/Free Geek Snapshot Helper/Source/Free Geek Snapshot Helper.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Production Scripts/Free Geek Snapshot Helper/Source/Free Geek Snapshot Helper.applescript -------------------------------------------------------------------------------- /Production Scripts/Free Geek Task Runner/Source/Free Geek Task Runner.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Production Scripts/Free Geek Task Runner/Source/Free Geek Task Runner.applescript -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/README.md -------------------------------------------------------------------------------- /Testing Scripts/Audio Test/Source/Audio Test.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Audio Test/Source/Audio Test.applescript -------------------------------------------------------------------------------- /Testing Scripts/CPU Stress Test/Source/CPU Stress Test.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/CPU Stress Test/Source/CPU Stress Test.applescript -------------------------------------------------------------------------------- /Testing Scripts/Camera Test/Source/Camera Test.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Camera Test/Source/Camera Test.applescript -------------------------------------------------------------------------------- /Testing Scripts/Free Geek Updater/Source/Free Geek Updater.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Free Geek Updater/Source/Free Geek Updater.applescript -------------------------------------------------------------------------------- /Testing Scripts/GPU Stress Test/Source/GPU Stress Test.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/GPU Stress Test/Source/GPU Stress Test.applescript -------------------------------------------------------------------------------- /Testing Scripts/Hard Drive Test/Source/Extract Info from DriveDx Report.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Hard Drive Test/Source/Extract Info from DriveDx Report.applescript -------------------------------------------------------------------------------- /Testing Scripts/Internet Test/Source/Internet Test.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Internet Test/Source/Internet Test.applescript -------------------------------------------------------------------------------- /Testing Scripts/Keyboard Test/Source/build_keyboard_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Keyboard Test/Source/build_keyboard_test.sh -------------------------------------------------------------------------------- /Testing Scripts/Keyboard Test/Source/keyboard_test_modifications-mac.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Keyboard Test/Source/keyboard_test_modifications-mac.css -------------------------------------------------------------------------------- /Testing Scripts/Keyboard Test/Source/keyboard_test_modifications-mac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Keyboard Test/Source/keyboard_test_modifications-mac.js -------------------------------------------------------------------------------- /Testing Scripts/Keyboard Test/Source/keyboard_test_modifications-windows-linux.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Keyboard Test/Source/keyboard_test_modifications-windows-linux.css -------------------------------------------------------------------------------- /Testing Scripts/Keyboard Test/Source/keyboard_test_modifications-windows-linux.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Keyboard Test/Source/keyboard_test_modifications-windows-linux.js -------------------------------------------------------------------------------- /Testing Scripts/Mac Scope/Source/Mac Scope.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Mac Scope/Source/Mac Scope.applescript -------------------------------------------------------------------------------- /Testing Scripts/Microphone Test/Source/Microphone Test.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Microphone Test/Source/Microphone Test.applescript -------------------------------------------------------------------------------- /Testing Scripts/Screen Test/Source/Screen Test.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Screen Test/Source/Screen Test.applescript -------------------------------------------------------------------------------- /Testing Scripts/Startup Picker/Source/Startup Picker.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Startup Picker/Source/Startup Picker.applescript -------------------------------------------------------------------------------- /Testing Scripts/Test Boot Setup/Source/Test Boot Setup.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Test Boot Setup/Source/Test Boot Setup.applescript -------------------------------------------------------------------------------- /Testing Scripts/Test CD/Source/Test CD.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Test CD/Source/Test CD.applescript -------------------------------------------------------------------------------- /Testing Scripts/Test DVD/Source/Test DVD.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Test DVD/Source/Test DVD.applescript -------------------------------------------------------------------------------- /Testing Scripts/Trackpad Test/Source/Trackpad Test.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Trackpad Test/Source/Trackpad Test.applescript -------------------------------------------------------------------------------- /Testing Scripts/Volume Scripts for Breakaway/Set Volume for Headphones.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Volume Scripts for Breakaway/Set Volume for Headphones.applescript -------------------------------------------------------------------------------- /Testing Scripts/Volume Scripts for Breakaway/Set Volume for Speakers.applescript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/Testing Scripts/Volume Scripts for Breakaway/Set Volume for Speakers.applescript -------------------------------------------------------------------------------- /fgMIB Resources/Build Tools/build-fg-prepare-os-pkg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/fgMIB Resources/Build Tools/build-fg-prepare-os-pkg.sh -------------------------------------------------------------------------------- /fgMIB Resources/Build Tools/copy-fgMIB-resources-to-drives.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/fgMIB Resources/Build Tools/copy-fgMIB-resources-to-drives.sh -------------------------------------------------------------------------------- /fgMIB Resources/Build Tools/save-text-to-speech-phrases.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/fgMIB Resources/Build Tools/save-text-to-speech-phrases.sh -------------------------------------------------------------------------------- /fgMIB Resources/Install Packages Script/fg-install-packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/fgMIB Resources/Install Packages Script/fg-install-packages.sh -------------------------------------------------------------------------------- /fgMIB Resources/Prepare OS Package/Package Resources/fg-error-occurred/fg-error-occurred.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/fgMIB Resources/Prepare OS Package/Package Resources/fg-error-occurred/fg-error-occurred.sh -------------------------------------------------------------------------------- /fgMIB Resources/Prepare OS Package/Package Resources/fg-snapshot-reset/fg-snapshot-preserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/fgMIB Resources/Prepare OS Package/Package Resources/fg-snapshot-reset/fg-snapshot-preserver.sh -------------------------------------------------------------------------------- /fgMIB Resources/Prepare OS Package/Package Resources/fg-snapshot-reset/fg-snapshot-reset.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/fgMIB Resources/Prepare OS Package/Package Resources/fg-snapshot-reset/fg-snapshot-reset.sh -------------------------------------------------------------------------------- /fgMIB Resources/Prepare OS Package/fg-prepare-os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/fgMIB Resources/Prepare OS Package/fg-prepare-os.sh -------------------------------------------------------------------------------- /fgMIB Resources/fg-install-os.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/freegeek-pdx/macOS-Testing-and-Deployment-Scripts/HEAD/fgMIB Resources/fg-install-os.sh --------------------------------------------------------------------------------