7zip ISO extraction
Asked Answered
I

3

9

I have been trying to extract an ISO image through 7zip and WinRar.

Here is the command line that I used:

7z x -y "%Isocontents%\ISO.iso" -o%Newfolder%

WinRar.exe x -y -ow "%Isocontents%\ISO.iso" "%Newfolder%"

Entire project uses generic batch / 4NT scripting commands. The above commandline works perfectly when used locally but when run on the actual machine extraction is pretty partial.

This is really strange and I have no clue on what the reason could be.

While extracting it just says like there are only 2 files

readme.txt
bootable_noemulation.img

I am totally frustrated as this is totally not going per the logic.

Indignity answered 23/7, 2013 at 18:1 Comment(2)
Did you ever solve this? I'm having the same issue and it's driving me nuts!Janinajanine
Hey, yes, I did. Please try using the latest version of 7z. That helped resolved my issue.Hope it helps.Indignity
M
6

If you're trying to extract the files from an ISO to a directory then 7zip can do this:

7z x -y -oC:\OutputDirectory X:\VRMPVOL_EN.iso
Megagamete answered 13/5, 2016 at 15:5 Comment(0)
H
5

If you're not using the same ISO file, it's possible that the other file is in UDF format. Check the readme.txt file which might have a note indicating such.

For 7z use the -t switch like this 7z x -tudf -y "%Isocontents%\ISO.iso" -o%Newfolder%

Herta answered 16/9, 2013 at 15:19 Comment(0)
S
0

Everyone using MacOS with this question, you can run this command to extract ISO's:

7zz x -tiso -y alpine-standard-3.15.0-aarch64.iso -oNewfolder

(used an Alpine ISO)

Sliest answered 7/1, 2022 at 14:32 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.