0

I'm trying to extract Fresco Logic USB3.0 Host Driver ( https://support.frescologic.com/portal/home ) from installer.

This is how it looks after extraction. enter image description here

I've downloaded Advanced Installer but I do not see any option regarding file export. (drag and drop function does not work either)

enter image description here

Does anybody know how to get those files? My goal is to slipstream them into windows 7 image via DISM.

Stein Åsmul
  • 39,960
  • 25
  • 91
  • 164
Atak_Snajpera
  • 619
  • 9
  • 24

1 Answers1

1

Did you just run the exe file directly? You should be able to extract like this from a command prompt:

  • FLUSB3.0-3.8.33709.0.exe /extract

Make sure the folder you are in is writeable for you, and you should get an output folder 6187973 with all the files you refer to (the actual driver files). Not sure which ones you need.


Tip: This site is for programmers, the site dedicated to system administration is serverfault.com. And there is superuser.com for advanced users.


As you know, you can also use these MSI packages to deploy the drivers to a machine that has been set up based on your base Windows image. I guess this could be better if newer drivers are likely to be provided down the line?


Some links for safekeeping:

Stein Åsmul
  • 39,960
  • 25
  • 91
  • 164
  • Thank you! /extract switch works like a charm! – Atak_Snajpera Apr 22 '18 at 16:52
  • Great, maybe also mark the answer as accepted? (stats thing for you as well). For the record: you can extract files from MSI files like that by running this command line: `msiexec.exe /a FLUSB3.0.msi TRANSFORMS=FLUSB3.0.mst` and then specifying a path in the setup dialog that shows up where the extracted files will go. This is [a generic extraction mechanism for all, standard MSI files](https://stackoverflow.com/questions/1547809/extract-msi-from-exe/24987512#24987512). – Stein Åsmul Apr 22 '18 at 18:17