driver deployment or automation scripts:
Create a folder to store drivers.
Download the required driver installer from HP’s site.
Run another installer silently to set up drivers/software.
mkdir C:\Drivers\
Invoke-WebRequest -Uri "https://ftp.hp.com/pub/softpaq/sp161501-162000/sp161563.exe" -OutFile "C:\Drivers\sp161563.exe"
cmd "C:\Drivers\sp155208.exe /S"
Copy file from Network Share and install Silently (You can create a Batch | Powershell script file with all commands and run with by running the batch | PS Script file.)
mkdir "C:\AppDrivers\"
Copy-Item -Path "\\HOST-IPAddress\Shares\AppName.msi" -Destination "C:\AppDrivers\"
msiexec /i "C:\AppDrivers\AppName.msi" allusers=1 /qn