Determining Hardware Type: Laptops or Desktops
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 policy -trigger LaptopSetup else /usr/local/bin/jamf policy -trigger DesktopSetup fi exit…