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
» Metal Gear Solid V The Phantom Pain X Flashpoint Batman Gameplay unedited [Seth@WiiPlaza]
Extracting & Rebuilding ISOs Empty9/23/2024, 12:48 pm by Seth@WiiPlaza

» USB Gecko problems with some games
Extracting & Rebuilding ISOs Empty8/18/2024, 10:41 am by Mac11ngAround

» Dropped Out of College to Pursue Web Dev and Life Pursuits in General
Extracting & Rebuilding ISOs Empty8/9/2024, 7:09 am by SnB@BWH

» Lego Stars Wars: The Complete Saga [RLGE64]
Extracting & Rebuilding ISOs Empty8/1/2024, 2:04 am by Whatever_1240

» ASM <> Gecko Code Converter
Extracting & Rebuilding ISOs Empty7/29/2024, 11:15 am by Mac11ngAround

» German With a Jackhammer
Extracting & Rebuilding ISOs Empty7/28/2024, 3:42 pm by SnB@BWH

» Wii RAM Hacking: Pointers and ASM
Extracting & Rebuilding ISOs Empty7/23/2024, 1:54 pm by Mac11ngAround

» IBM AIX Assembler Programming Reference - Useful For PPC ASM
Extracting & Rebuilding ISOs Empty7/21/2024, 5:00 pm by Mac11ngAround

» Note to Inactive New Members
Extracting & Rebuilding ISOs Empty7/14/2024, 4:50 am by Mac11ngAround

» JMaster Duel Bot: A Yu-Gi-Oh! Master Duel Bot and Trainer for Steam
Extracting & Rebuilding ISOs Empty7/13/2024, 11:18 am by Bully@WiiPlaza

Search
 
 

Display results as :
 


Rechercher Advanced Search

October 2024
MonTueWedThuFriSatSun
 123456
78910111213
14151617181920
21222324252627
28293031   

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