-
×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 Software and How To Questions
- extract files fom softpaq

Create an account on the HP Community to personalize your profile and ask a question
11-06-2024 06:49 AM
Well I finally found what works on my system, it is a combination of switch control:
This did not work:
sp133004.exe -pdf -fD:\SWSetup\sp133004 -s
This works perfectly:
sp133004.exe /e -fD:\SWSetup\sp133004 /s
Thanks for the help
11-08-2024 07:47 AM
I finally got it to work here is my solution to automatically extract multiple softpaqs to a folder:
Rem ===================================
chdir /d D:\SoftpaqFiles
setlocal enableDelayedExpansion
set /a ID=1
for /f "delims=" %%G in ('dir *.exe /b') do (
set filename[!ID!]=%%~G
rem set temp=%%~nG
rem echo %temp%
%%~G -e -fD:\SWSetup\%%~nG -s
set /a ID+=1
echo %ID%
)
set filename
endlocal
Rem ======================================
Thanks for all the replies