-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
-
×InformationNeed Windows 11 help?Check documents on compatibility, FAQs, upgrade information and available fixes.
Windows 11 Support Center. -
- HP Community
- Notebooks
- Notebook Hardware and Upgrade Questions
- Re: Drivers silent instalation

Create an account on the HP Community to personalize your profile and ask a question
12-11-2018 03:31 AM
Hello, on my laptop i want to siletnly install drivers from your official HP page. i downloaded drivers and got parameters for silent install with comand "path\driver.exe file /?". After that i got all the parameters, and created the .bat file.
In bat file i wrote a commands like this for example:
start /wait "" "Z:\driver\sp79254.exe" -s
the instalation has begun, but its still prompt me with "yes, i accept terms" etc.
I would like to know the exact command for running silent commands for driver.exe files in bat file.
I also looked on the internet but didnt get nothing, or didnt understand, i would be glad if someone explained that to me and find a solution.
Best regards.
Solved! Go to Solution.
Accepted Solutions
12-11-2018 08:10 AM
Open the CVA file for this deliverable and look at the Install Execution section.
ftp://ftp.hp.com/pub/softpaq/sp79001-79500/sp79254.cva
In this section you will see the commnd line needed to silently install.
"SetupME.exe" -s -overwrite -report %temp%
Before you execute this command you will need to unpack the deliverable to a network share or to a folder locally on the client.
Joel
If you like my post, click the thumbs up.
12-11-2018 08:10 AM
Open the CVA file for this deliverable and look at the Install Execution section.
ftp://ftp.hp.com/pub/softpaq/sp79001-79500/sp79254.cva
In this section you will see the commnd line needed to silently install.
"SetupME.exe" -s -overwrite -report %temp%
Before you execute this command you will need to unpack the deliverable to a network share or to a folder locally on the client.
Joel
If you like my post, click the thumbs up.
12-12-2018 12:19 AM - edited 12-12-2018 12:25 AM
Oh thats work, thanks a lot, so where can i find .CVA files for the other drivers?
First (not working) .bat file with all drivers i need to silently install:
@ECHO OFF
start /wait "" "Z:\driver\sp81234.exe" /s
start /wait "" "Z:\driver\sp82020.exe" -s
start /wait "" "Z:\driver\sp84411.exe" /S
start /wait "" "Z:\driver\sp84595.exe" /s
start /wait "" "Z:\driver\sp85675.exe" /SILENT /NORESTART
start /wait "" "Z:\driver\sp87257.exe" -s
start /wait "" "Z:\driver\sp87555.exe" -s
start /wait "" "Z:\driver\sp88771.exe" /S
start /wait "" "Z:\driver\sp88774.exe" /s
start /wait "" "Z:\driver\sp88982.exe" -s
start /wait "" "Z:\driver\sp90240.exe" /s
start /wait "" "Z:\driver\sp91562.exe" /S
Working .bat file looks like this now:
--------------------------------------------------------------------------------
@ECHO OFF
pushd %~dp0
start "" "C:\SWSetup\SP79254\SetupME.exe" -s -overwrite -report %temp%
pause
popd
--------------------------------------------------------------------------------
12-12-2018 03:50 PM
Glad it was helpful.
If you want to browse the FTP site where the SoftPaqs are located you can use this link and then move up and down the tree.
Move to the folder for the SoftPaq you are investigating and you should find the EXE, CVA and HTML file for each.
Joel
If you like my post, click the thumbs up.