lpadmin

Add a network printer with command line lpadmin -p Test_Printer_Name -L "Printer Location" -E -v lpd://10.1.20.26 -P "/System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks /PrintCore.framework/Versions/A/Resources/Generic.ppd" Remove Printer from command line /usr/sbin/lpadmin -x printernamehere

Jamf Pro API

#!/bin/bash # Get safari status Safari=$(sudo curl -s "https://user:password@jamfserver.com:8443/JSSResource/computerapplications/application/*Safari.app*/inventory/Asset%20Tag%2CPlatform" -H "accept: application/json" | grep -e versions | sed 's/\,"unique_computers.*//' | awk '{print $0}' | tr -s '\n' ' ' |…

Reset macOS Catalina Printing System

macOS Catalina introduced a new option in their printtool command line tool to reset the printing system. Type the following in Terminal: /System/Library/Frameworks/ApplicationServices.framework/Frameworks/PrintCore.framework/Versions/A/printtool --reset -f Link: https://babodee.wordpress.com/2019/11/17/reset-the-macos-printing-system-through-the-command-line/

pwpolicy

Find when the user’s password was last changed #!/bin/bash # Get last password change echo; echo Password Last Changed:; u=$(dscl . list /Users | egrep -v '^_|daemon|nobody'); for i in…