Forked from garry-jeromson/install_hp_printer_drivers.sh
Last active
September 24, 2023 19:16
-
-
Save mirez/f5efd3508952ebd49ab58703dbe7f77b to your computer and use it in GitHub Desktop.
Install HP printer drivers on macOS 13.4 Ventura
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
curl -o ~/Downloads/hpdrivers.dmg https://updates.cdn-apple.com/2020/macos/001-41745-20201210-DBC9B46B-88B2-4032-87D9-449AF1D20804/HewlettPackardPrinterDrivers.dmg | |
hdiutil attach ~/Downloads/hpdrivers.dmg | |
pkgutil --expand /Volumes/HP_PrinterSupportManual/HewlettPackardPrinterDrivers.pkg ~/Downloads/hp-expand | |
hdiutil eject /Volumes/HP_PrinterSupportManual | |
sed -i '' 's/12.0/14.0/' ~/Downloads/hp-expand/Distribution | |
pkgutil --flatten ~/Downloads/hp-expand ~/Downloads/HP_Drivers_12.pkg | |
rm -R ~/Downloads/hp-expand | |
# run the pkg folder, install rosetta if necessary | |
# add new printer, should see specific hp driver preloaded |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment