Skip to content

Instantly share code, notes, and snippets.

@Hoernchen
Created October 26, 2020 21:14
Show Gist options
  • Save Hoernchen/27527c2475fbc9348bdb53dc324b2d95 to your computer and use it in GitHub Desktop.
Save Hoernchen/27527c2475fbc9348bdb53dc324b2d95 to your computer and use it in GitHub Desktop.
extract qt installer without account
i.e. qt-creator-opensource-windows-x86_64-4.13.2.exe
as per https://sourceforge.net/p/sevenzip/bugs/1617/#dbcc
Tres Finocchiaro - 2017-03-24
Ok... I'm able to get everything... Here's how I did it:
# Extract the [0] file from exe
7z x qt-installer.exe -t* -i![0] -y
# Extract only embedded 7z files from [0]
7z x [0] -t# -i!*.7z -y
# Extract content from all 7z files
7z x 2.7z -ai!*.7z -y
And of course, delete the files left behind ([0], *.7z)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment