BullyWiiHacks
Welcome dear guest! Very Happy

To start posting and being part of the BWH community, you simply need to register an account or log into an existing one.

If you do not wish to register at all, that's fine but there will be more advertisements. :/

You can probably see and download most content provided for regular members even without an account.

Your contributions will be greatly appreciated though, give it a shot and register today! thumbsup

Join the forum, it's quick and easy

BullyWiiHacks
Welcome dear guest! Very Happy

To start posting and being part of the BWH community, you simply need to register an account or log into an existing one.

If you do not wish to register at all, that's fine but there will be more advertisements. :/

You can probably see and download most content provided for regular members even without an account.

Your contributions will be greatly appreciated though, give it a shot and register today! thumbsup
BullyWiiHacks
Would you like to react to this message? Create an account in a few clicks or log in to continue.
BullyWiiHacks

Gaming, Modding & Programming

Important reminders:

- Click *HERE* for advanced forum search or check out the text field below on the front page for Google before posting
- NO support via private message (use the forum)
- Write meaningful topic titles
Site Translation
Latest topics
» Dropped Out of College to Pursue Web Dev and Life Pursuits in General
Extracting & Rebuilding ISOs Empty4/7/2024, 2:34 pm by SnB@BWH

» Bully Made It Into a BIG Video 400K Views
Extracting & Rebuilding ISOs Empty4/7/2024, 6:58 am by Bully@WiiPlaza

» Wii Play Tanks
Extracting & Rebuilding ISOs Empty3/24/2024, 2:46 pm by helpmeout

» [Bypass Paywalls] (Global) @magnolia1234 - GitLab
Extracting & Rebuilding ISOs Empty3/18/2024, 3:55 am by Seth@WiiPlaza

» [Download] Mary Shelley's Frankenhole
Extracting & Rebuilding ISOs Empty3/16/2024, 8:29 am by Seth@WiiPlaza

» Completely Custom Modded Controllers (Undetectable)
Extracting & Rebuilding ISOs Empty3/5/2024, 1:55 pm by Shadow@BWH

» (Zombies) Drink perks code?
Extracting & Rebuilding ISOs Empty3/5/2024, 1:24 pm by Shadow@BWH

» Die Rückkehr zu STEAM und WARFACE
Extracting & Rebuilding ISOs Empty3/2/2024, 3:54 am by Seth@WiiPlaza

» First person hand model change?
Extracting & Rebuilding ISOs Empty2/28/2024, 4:53 am by Ad3lamac611

» {RELEASE} Field Raider Firefox v1.72 by Seth@WiiPlaza
Extracting & Rebuilding ISOs Empty2/21/2024, 8:52 am by naxil

Search
 
 

Display results as :
 


Rechercher Advanced Search

April 2024
MonTueWedThuFriSatSun
1234567
891011121314
15161718192021
22232425262728
2930     

Calendar Calendar

Country Statistics
Free counters!

You are not connected. Please login or register

Extracting & Rebuilding ISOs

Go down  Message [Page 1 of 1]

1Extracting & Rebuilding ISOs Empty Extracting & Rebuilding ISOs 10/3/2014, 2:08 am

Bully@WiiPlaza

Bully@WiiPlaza
 
 

Let's make sure that "wit" is properly installed first. From the download package, run the "windows-install.exe" file. It adds the path environment variable for "wit" to make it available anywhere in the console. Now open "cmd" and type "wit". If this works, proceed with the next step.

In your current working directory, create a new file called "runCmd.bat" while ".bat" is the file extension. Right-click it and choose "edit". Type "@cmd", save and exit. If you double-click the file it'll open up "cmd" in the current folder. This is useful because we can now use relative paths in our commands.

In order to extract an ISO, we need the "wit extract" command. Here's the documentation about it:
http://wit.wiimm.de/wit/cmd-extract.html

Let's assume the ISO is called "MWR.iso" and is in the same directory as our "runCmd.bat" file. We want to extract to a new folder in this directory called "Extracted". The command for this will look like this:
Code:
wit extract "MWR.iso" "Extracted"
Always surround the source and destination in parentheses to avoid issues with spaces.

Once this is done, we can proceed to copy a modified file over to replace a source file. In order to do this using the command line, we need "xcopy". The following command copies the file "common_level_temp_mp.ff" from the current directory to the folder "english" in "files" and finally in "Extracted".
Code:
xcopy "common_level_temp_mp.ff" "Extracted\files\english\common_level_temp_mp.ff" /Y
The /Y command line flag tells the command to "overwrite without asking".

To rebuild our modified ISO, we'll use the wit copy command. Again, here's some documentation about it: http://wit.wiimm.de/wit/cmd-copy.html

In our example we've got the source "Extracted" and the target "MWR.iso". To allow overwriting, we need the "--overwrite" flag. According to Wiimm, to speed it up a bit we'll force hard links using the flag "--links".
Code:
wit copy "Extracted" "MWR.iso" --overwrite --links


_________________
Extracting & Rebuilding ISOs YBjg74I

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum