# HP LaserJet P1102 Drivers for macOS Sequoia This instructions provides a solution for installing HP LaserJet P1102 drivers on macOS Sequoia (15.0+). The official HP drivers don't install on the latest macOS versions, but with a simple modification to bypass the operating system version check, you can get your printer working again. ## Supported Printer Models - HP LaserJet P1102 - HP LaserJet Pro P1102 - HP LaserJet Pro P1102w ## Manual Installation Steps 1. Download the official [HP Mac Printer Driver](https://support.hp.com/us-en/drivers/closure/hp-laserjet-pro-p1102-drucker/model/4110303) 2. Extract the `HewlettPackardPrinterDrivers.pkg` file from the `HewlettPackardPrinterDrivers.dmg` file 3. From a terminal, navigate to the folder where you extracted the `.pkg` file and run: ``` pkgutil --expand HewlettPackardPrinterDrivers.pkg drivers ``` 4. Open the `drivers/Distribution` file with any text editor 5. Change the fragment that says `system.version.ProductVersion, '15.0'` to `system.version.ProductVersion, '16.0'` 6. Save the changes 7. From the terminal, run: ``` pkgutil --flatten drivers HewlettPackardPrinterDrivers-sequoia.pkg ``` 8. Delete the `drivers` folder, and the `HewlettPackardPrinterDrivers.dmg` & `HewlettPackardPrinterDrivers.pkg` files 9. The file `HewlettPackardPrinterDrivers-sequoia.pkg` is your new installer that works with macOS Sequoia ## Automated Installation For an automated installation, place the `install-driver.sh` script in the same directory as your `HewlettPackardPrinterDrivers.pkg` file and run: ``` chmod +x install-driver.sh ./install-driver.sh ``` The script will perform all the necessary modifications and create the compatible installer package. ## Notes - This solution should work with other HP printer models and installers that have similar version check limitations - It may also work with future macOS releases by adjusting the version number accordingly - No changes are made to the actual driver files, only to the installer's version check ## Disclaimer This is an unofficial workaround and not officially supported by HP. Use at your own risk. ## Credits This solution is based on the information provided in [this blog post](https://blog.kartones.net/post/macos-sequoia-hp-laserjet-p1102-drivers/) by Kartones.