Go Back   FileForums > Game Backup > PC Games > PC Games - CD/DVD Conversions > Conversion Tutorials
Register FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Search this Thread Display Modes
  #1  
Old 01-09-2013, 13:12
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
not with 7zip. try it yourself.
Reply With Quote
Sponsored Links
  #2  
Old 01-09-2013, 13:15
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
What app can split files then and support extraction with ISDone? i have some repacks i want to make that way.
Reply With Quote
  #3  
Old 01-09-2013, 13:28
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Hmm, I think there isnt.
Reply With Quote
  #4  
Old 01-09-2013, 13:31
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Thank you razor.
Reply With Quote
  #5  
Old 04-09-2013, 16:36
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
How to use ISExec to unpack 7z file?

Last edited by danswano; 04-09-2013 at 17:07.
Reply With Quote
  #6  
Old 08-09-2013, 00:36
inovateqsa inovateqsa is offline
Registered User
 
Join Date: Oct 2011
Location: South Africa
Posts: 30
Thanks: 8
Thanked 1 Time in 1 Post
inovateqsa is on a distinguished road
Having a rather irritating problem with external compression at the moment:

Every time I try to install using external compression I get an "Unsupported compression method" error.

Full Details:

Using this .Bat for compression:

"echo Compressing files, please wait...
arc a -ep1 -w.\ .\Compressed\Data1.cab -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "C:\Program Files (x86)\Electronic Arts\Red Alert 3 Uprising"
echo.All done.
pause
Exit"

This is my Setup.ini Extract settings:
"FreeArcFile1={src}\Data1.cab;DestDir:{app};Disk:1 ;PrecSrep:1"

The Exact Error I get:
"An Error ocurred Wile Unpacking: Unknown compression Method!
Unarc.dll returned an error code: -2
ERROR: Unsupported compression method
srep+lzma:177mb:normal:bt4:128:mc1000:lc8"

I have tried recompiling, and recompressing at least 3 times and every time it's the same error.

I am using CI 8.5.7.4

Any ideas on how I can get it to work?
I'm Desperate.
Reply With Quote
  #7  
Old 08-09-2013, 06:45
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Codejock Quick Style Inno Setup Viewer

Place .cjstyle named as Theme next to program then launch theme.exe it.
Attached Files
File Type: 7z Theme.7z (654.4 KB, 100 views)
Reply With Quote
The Following 2 Users Say Thank You to Razor12911 For This Useful Post:
danswano (08-09-2013), mausschieber (08-09-2013)
  #8  
Old 08-09-2013, 06:54
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Hello razor, how do i call 7z to unpack a file using ISExcec or even call arc to unpack an arc file using it as well.
I need to know how to use ISExcec cause it's not working for me.
for example:
Quote:
if not ISExec ( 0, 0, 0, ExpandConstant('{tmp}\arc.exe'), ExpandConstant('x "{src}\data.arc" "{app}\"'), ExpandConstant('{tmp}'), '...',false) then break;
This one is not unpacking anything.
Reply With Quote
  #9  
Old 08-09-2013, 07:17
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Try this.

if not ISExec ( 0, 0, 0, ExpandConstant('{tmp}\7z.exe'), '-o"' + ExpandConstant('{app}') + '" x -y "' + ExpandConstant('{src}\data.7z') + '" ', ExpandConstant('{tmp}'), '...',false) then break;
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
danswano (08-09-2013)
  #10  
Old 08-09-2013, 10:46
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
Quote:
Originally Posted by inovateqsa View Post
Having a rather irritating problem with external compression at the moment:

Every time I try to install using external compression I get an "Unsupported compression method" error.

Full Details:

Using this .Bat for compression:

"echo Compressing files, please wait...
arc a -ep1 -w.\ .\Compressed\Data1.cab -msrep+lzma:a1:mfbt4:d256m:fb128:mc1000:lc8 "C:\Program Files (x86)\Electronic Arts\Red Alert 3 Uprising"
echo.All done.
pause
Exit"

This is my Setup.ini Extract settings:
"FreeArcFile1={src}\Data1.cab;DestDir:{app};Disk:1 ;PrecSrep:1"

The Exact Error I get:
"An Error ocurred Wile Unpacking: Unknown compression Method!
Unarc.dll returned an error code: -2
ERROR: Unsupported compression method
srep+lzma:177mb:normal:bt4:128:mc1000:lc8"

I have tried recompiling, and recompressing at least 3 times and every time it's the same error.

I am using CI 8.5.7.4

Any ideas on how I can get it to work?
I'm Desperate.
remove precsrep:1 from freearcfile1 line & add PrecompVer=inside to top section in setup.ini
Reply With Quote
  #11  
Old 08-09-2013, 12:37
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
You are awesome Razor, i've been googling since days to find a solution and only you did it.
Thank you

Last edited by danswano; 08-09-2013 at 16:34.
Reply With Quote
  #12  
Old 08-09-2013, 16:35
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Dear razor, is it possible to unpack a passworded 7z file?
Reply With Quote
  #13  
Old 08-09-2013, 19:24
pakrat2k2's Avatar
pakrat2k2 pakrat2k2 is offline
Moderator
 
Join Date: Apr 2005
Location: Canada
Posts: 7,209
Thanks: 3,040
Thanked 9,043 Times in 3,086 Posts
pakrat2k2 is on a distinguished road
only if password is known
Reply With Quote
  #14  
Old 08-09-2013, 20:18
danswano danswano is offline
Registered User
 
Join Date: Feb 2013
Location: Luxm
Posts: 314
Thanks: 218
Thanked 27 Times in 22 Posts
danswano is on a distinguished road
Quote:
Originally Posted by pakrat2k2 View Post
only if password is known
Dude the file is mine but i want to tell IS the password.
Reply With Quote
  #15  
Old 08-09-2013, 20:59
Razor12911's Avatar
Razor12911 Razor12911 is offline
Noob
 
Join Date: Jul 2012
Location: South Africa
Posts: 3,751
Thanks: 2,181
Thanked 11,211 Times in 2,309 Posts
Razor12911 is on a distinguished road
Code:
if not ISExec ( 0, 0, 0, ExpandConstant('{tmp}\7z.exe'), '-o"' + ExpandConstant('{app}') + '" x -y -pPASSWORD "' + ExpandConstant('{src}\data.7z') + '" ', ExpandConstant('{tmp}'), '...',false) then break;
Reply With Quote
The Following User Says Thank You to Razor12911 For This Useful Post:
danswano (08-09-2013)
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
INNO TROUBLESHOOT - Tutorials and Answers about INNO Setup REV0 Conversion Tutorials 129 21-05-2021 05:51
INNO TUTORIAL - Using Unicode and ANSI Versions of INNO Setup REV0 Conversion Tutorials 51 26-03-2015 06:57
Frequently Asked Questions Joe Forster/STA PC Games - Frequently Asked Questions 0 29-11-2005 09:48



All times are GMT -7. The time now is 09:36.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
FileForums @ https://fileforums.com