Installing SophosInstaller on Macbook
- 18 Jun 2024
- 1 読む分
- 印刷する
- PDF
Installing SophosInstaller on Macbook
- 更新日 18 Jun 2024
- 1 読む分
- 印刷する
- PDF
The content is currently unavailable in Ja - 日本語. You are viewing the default English version.
記事の要約
この要約は役に立ちましたか?
ご意見ありがとうございます
The following Shell Script helps the IT Admins install the SophosInstaller on their Scalefusion-managed Mac devices.
- Create a file on your desktop, for example, SophosInstaller.sh and open it in a text editor like Notepad++
- Copy the contents below to the file or click here to download the file.Shell
#!/bin/bash # Add the download link to the SophosInstall.zip DOWNLOAD_URL="DOWNLOAD_LINK" ##### DO NOT EDIT BELOW CODE ##### SOPHOS_DIR="/tmp/SophosInstaller" mkdir $SOPHOS_DIR cd $SOPHOS_DIR # Installing Sophos curl -s -O "$DOWNLOAD_URL" unzip $SOPHOS_DIR/SophosInstall.zip chmod a+x $SOPHOS_DIR/Sophos\ Installer.app/Contents/MacOS/Sophos\ Installer chmod a+x $SOPHOS_DIR/Sophos\ Installer.app/Contents/MacOS/tools/com.sophos.bootstrap.helper sudo $SOPHOS_DIR/Sophos\ Installer.app/Contents/MacOS/Sophos\ Installer --quiet rm -rf $SOPHOS_DIR exit 0
- In the above script, enter the link from where the Sophos zip file will be downloaded. For example,Please make sure that the link that you will be entering is a Public URL with direct access to the zip file.
- Follow our guide to upload & publish the Shell script using Scalefusion Dashboard.
- Please make sure that you keep the option for "Run script as signed-in user" as "No", while uploading the script.
Please note that to use the Shell scripts, the Scalefusion MDM Client Application must be installed on the device(s). Please follow our guide to publish and install the Scalefusion MDM Agent Application.
Notes:
1. The scripts and their contents are sourced from various albeit authenticated Apple Developer communities and forums.
2. Please validate the scripts on a test machine before deploying them on all your managed devices.
3. Scalefusion has tested these scripts, however, Scalefusion will not be responsible for any loss of data or system malfunction that may arise due to the incorrect usage of these scripts.
この記事は役に立ちましたか?