User Activity
11-05-2018
I wrote a quick and dirty script to detect if SIP is disabled, and then
notify the user. #!/bin/bash # Paths to binaries
JAMFHELPER="/Library/Application
Support/JAMF/bin/jamfHelper.app/Contents/MacOS/jamfHelper" # Prompt GUI
Config GUI_WINDOW_TITLE=...
05-01-2018
I implemented better-jamf-policy-deferral by haircut because our
customers needed a way to defer. The good news is that it works on most
computers, the bad news is that Jamfhelper is spewing a bunch of errors
about the keyboard layout, which subseque...
02-16-2018
I have a smart group that looks for invalid FV keys to determine if the
key needs to be redirected to JSS: Based on that, it'll run the
following script
(https://github.com/JAMFSupport/FileVault2_Scripts/blob/master/reissueKey.sh):
#!/bin/bash
######...
02-14-2018
I wrote a script to rewrite the computer name. We're using Enterprise
Connect, and I have a bash script that's deployed (pkg) to
/Library/Scripts/ec, and then gets executed to write the computer name
to /tmp/ecUser: #!/bin/bash echo $1 > /tmp/ecUser ...
02-08-2018
I'm trying to authenticate against the JSS API URL with a valid login
credentials and it seems to constantly fail, e.g.
../JSSResource/accounts with error 401, not authorized. The user has
full admin privileges, but continue to fail on the basic auth...