0120.html 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. <!DOCTYPE html>
  2. <html lang="en" xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <title>Compressing GameCube .iso with GCIT</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
  6. <meta charset="UTF-8">
  7. <meta name="keywords" content="GameCube,iso,compression,storage,gcit,i12bretro,tutorial,windows">
  8. <meta name="author" content="i12bretro">
  9. <meta name="description" content="Compressing GameCube .iso with GCIT">
  10. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  11. <link rel="icon" type="image/x-icon" href="includes/favicon.ico">
  12. <script type="text/javascript" src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
  13. <script type="text/javascript" src="includes/js/steps.js"></script>
  14. <link href="css/steps.css" rel="stylesheet" type="text/css" />
  15. </head>
  16. <body>
  17. <div id="gridContainer">
  18. <div class="topMargin"></div>
  19. <div id="listName" class="topMargin">
  20. <h1>Compressing GameCube .iso with GCIT</h1>
  21. </div>
  22. <div></div>
  23. <div id="content">
  24. <ol>
  25. <li>Download GameCube ISO Tool <a href="https://gbatemp.net/download/gamecube-iso-tool.33956/" target="_blank">Download</a></li>
  26. <li>Extract GameCube ISO Tool and copy gcit.exe to the same directory as the GameCube .iso files</li>
  27. <li>Open a text editor (ie Notepad) and paste the following command
  28. <div class="codeBlock">for %%f in (*.iso) do gcit.exe &quot;%%f&quot; -q -b -d &quot;.\%%f.trimmed.iso&quot;</div>
  29. </li>
  30. <li>Save the above Notepad document as gc.bat in the same directory as the GameCube .iso files</li>
  31. <li>Double click gc.bat</li>
  32. <li>Watch and wait</li>
  33. </ol>
  34. </div>
  35. </div>
  36. </body>
  37. </html>