How to autofill a column with multiple values
How to autofill a column with multiple values 1) Select the range B2:B5000 (or whatever your exact range may be) […]
How to autofill a column with multiple values Read More - click »
How to autofill a column with multiple values 1) Select the range B2:B5000 (or whatever your exact range may be) […]
How to autofill a column with multiple values Read More - click »
#!/bin/bash osVersion=$( sw_vers -productVersion ) if [ $osVersion = “10.14.5” ]; then echo “No upgraded needed.” else jamf policy -event
Simple If Statement in Bash script Read More - click »
#!/bin/sh ########## variable-ing ########## kextList=$(/usr/sbin/kextstat -l | /usr/bin/grep -v ‘com.apple’ | /usr/bin/awk ‘{print $6}’ | /usr/bin/sort) ########## main process ##########
3rd Party Kernel Extension – Jamf Extension Attribute Read More - click »
On a test machine: 1. Install the Jamf Pro Tools 2. Run this command in terminal mkdir -p /tmp/folderlocation 2.
Copying files (scripts) locally off server for install Read More - click »
Determining Hardware Type: 1) Laptop (Macbook) 2) Desktop Script: #!/bin/sh HWModel=”$(/usr/sbin/sysctl hw.model)” if [[ $HWModel =~ .*MacBook*. ]] then /usr/local/bin/jamf
Determining Hardware Type: Laptops or Desktops Read More - click »
vpn_install_choices.xml https://www.cisco.com/c/en/us/support/docs/security/anyconnect-secure-mobility-client/215876-customize-anyconnect-module-installation.html
Customize Anyconnect Module Installation on MAC Endpoints Read More - click »
Search for 0 Loaded System Extensions #!/bin/bash result=$( systemextensionsctl list | grep ‘0 extension(s)’ ) echo “<result>$result</result>” exit 0
systemextensionsctl Read More - click »