mirror of
https://github.com/PurpleComputing/mdmscripts.git
synced 2026-02-03 06:03:26 +00:00
27 lines
1.4 KiB
Bash
Executable File
27 lines
1.4 KiB
Bash
Executable File
#!/bin/sh
|
|
# echo "*** PURPLE SWDA DEPLOY SCRIPT ***"
|
|
################################################################################################
|
|
#
|
|
# ******
|
|
# *...../ / ******
|
|
# ************** *****/ *****/*****/***/*************/ ****** /**********
|
|
# ******/..*****/ *****/ *****/********//******/ ,*****/******,***** ,*****/
|
|
# *****/ ***** *****/ *****/*****/ *****/ /**************************
|
|
# *******//*****/ *************/*****/ *********************/*******./*/* ())
|
|
# ************* ******/*****/*****/ *****/******/. ****** ********** (()))
|
|
# *****/ *****/ ())
|
|
# *****/ *****/
|
|
#
|
|
################################################################################################
|
|
# SWIFT DEFAULT APPS DEPLOYMENT SCRIPT
|
|
################################################################################################
|
|
|
|
|
|
cd /Library/Application\ Support/Purple/
|
|
curl -s -o /Library/Application\ Support/Purple/swda.zip https://raw.githubusercontent.com/PurpleComputing/mdmscripts/main/Helpers/swda.zip
|
|
unzip swda.zip
|
|
sleep 3
|
|
rm swda.zip
|
|
xattr -r -d com.apple.quarantine /Library/Application\ Support/Purple/swda
|
|
ln -s /Library/Application\ Support/Purple/swda /usr/local/bin/swda
|