You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: DeploymentScripts/Mac/JAMF_silentinstall.sh
+56-28Lines changed: 56 additions & 28 deletions
Original file line number
Diff line number
Diff line change
@@ -2,11 +2,12 @@
2
2
3
3
# The following parameters are pulled directly from the "Parameter Values" section of your Backblaze deployment policy.
4
4
# Please make sure they are filled out respectively prior to your push
5
+
computername="$2"
5
6
username="$3"
6
7
groupid="$4"
7
8
grouptoken="$5"
8
9
email="$6"#If email is entered in parameters, script will skip over using JAMF API, make sure related password is entered as well
9
-
password="$7"
10
+
region="$7"#Specify if account is to be deployed in specific region [us-west or eu-central]
10
11
JAMF_domain="$8"
11
12
12
13
# The script needs access to the JAMF Pro API to gather related the related email for a given user
@@ -15,41 +16,63 @@ JAMF_domain="$8"
15
16
JAMF_username="$9"
16
17
JAMF_password="${10}"
17
18
19
+
# BZERROR MEANINGS
20
+
# BZERROR:190 - The System Preferences process is running on the computer. Close System Preferences and retry the installation.
21
+
# BZERROR:1000 - This is a general error code. One possible reason is that the Backblaze installer doesn’t have root permissions and is failing. Please see the install log file for more details.
22
+
# BZERROR:1016/1003 - Login Error... Email account exists but is not a member of indicated Group, Group ID is incorrect, or Group token is incorrect,
0 commit comments