wsg
‎07-13-2021
New Contributor III

Joined: December 2017

User Statistics

  • 19 Posts
  • 0 Solutions
  • 3 Kudos given
  • 7 Kudos received

User Activity

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=...
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...
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 ######...
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 ...
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...