Advertisement
fatman01923

Basic Batch Script for GCIT (Gamecube ISO Tool)

Jan 31st, 2015
1,024
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 14.07 KB | None | 0 0
  1. WARNING: READ ME PLEASE BEFORE YOU START OR ELSE!!!!!!
  2. This batch script by default will delete your .7z files after it copies the extracted iso to the usb drive.
  3. So either delete those lines in the batch script first or you will LOSE your 7zipped ISOS!
  4. This script assumes that you are have REDUMP GAMECUBE GAMES IN 7z.
  5.  
  6. YOU NEED TO CHANGE THE CD PATH, DRIVE Letter, & USB PATH IT EXTRACTS THE GAME.
  7. MY BATCH FILE THAT YOU DOWNLOAD should make this easier for you change!
  8. This script also assumes no responsibility for the damage it may cause you (if any).
  9.  
  10. Download it pre-made batch file with 7z and Gamecube ISO TOOL :https://www.mediafire.com/?6qmp47bc42u3oqk
  11.  
  12. =========================================================================================================
  13. Template
  14. =========================================================================================================
  15. 7z e ".7z"
  16. gcit.exe ".iso" -f gcreex -d DRIVE_LETTER_OF_USB:\games\ -Quit
  17. del ".iso"
  18. del ".7z" *Remember Delete this line if you want to keep your .7zip files*
  19. =========================================================================================================
  20. EXAMPLE OF MY SCRIPT WITH DELETTION OF .7z GAME
  21. =========================================================================================================
  22. cd D:\Nintendo\Wii\gcit
  23. D:
  24.  
  25. 7z e "18 Wheeler - American Pro Trucker (USA).7z"
  26. gcit.exe "18 Wheeler - American Pro Trucker (USA).iso" -f gcreex -d k:\games\ -Quit
  27. del "18 Wheeler - American Pro Trucker (USA).iso"
  28. del "18 Wheeler - American Pro Trucker (USA).7z"
  29.  
  30. =========================================================================================================
  31. EXAMPLE OF MY SCRIPT WITHOUT DELETION OF .7z GAME
  32. =========================================================================================================
  33. cd D:\Nintendo\Wii\gcit
  34. D:
  35.  
  36. 7z e "Aggressive Inline (USA).7z"
  37. gcit.exe "Aggressive Inline (USA).iso" -f gcreex -d k:\games\ -Quit
  38. del "Aggressive Inline (USA).iso"
  39.  
  40. =========================================================================================================
  41. EXAMPLE OF MY SCRIPT FOR ALL THE GAMES I DID (easier for you to copy paste games into YOUR batch file)
  42. =========================================================================================================
  43. cd D:\Nintendo\Wii\gcit
  44. D:
  45.  
  46.  
  47. 7z e "18 Wheeler - American Pro Trucker (USA).7z"
  48. gcit.exe "18 Wheeler - American Pro Trucker (USA).iso" -f gcreex -d k:\games\ -Quit
  49. del "18 Wheeler - American Pro Trucker (USA).iso"
  50. del "18 Wheeler - American Pro Trucker (USA).7z"
  51.  
  52.  
  53. 7z e "Aggressive Inline (USA).7z"
  54. gcit.exe "Aggressive Inline (USA).iso" -f gcreex -d k:\games\ -Quit
  55. del "Aggressive Inline (USA).iso"
  56. del "Aggressive Inline (USA).7z"
  57.  
  58.  
  59. 7z e "Beach Spikers - Virtua Beach Volleyball (USA).7z"
  60. gcit.exe "Beach Spikers - Virtua Beach Volleyball (USA).iso" -f gcreex -d k:\games\ -Quit
  61. del "Beach Spikers - Virtua Beach Volleyball (USA).iso"
  62. del "Beach Spikers - Virtua Beach Volleyball (USA).7z"
  63.  
  64.  
  65. 7z e "Billy Hatcher and the Giant Egg (USA).7z"
  66. gcit.exe "Billy Hatcher and the Giant Egg (USA).iso" -f gcreex -d k:\games\ -Quit
  67. del "Billy Hatcher and the Giant Egg (USA).iso"
  68. del "Billy Hatcher and the Giant Egg (USA).7z"
  69.  
  70.  
  71. 7z e "Bloody Roar - Primal Fury (USA).7z"
  72. gcit.exe "Bloody Roar - Primal Fury (USA).iso" -f gcreex -d k:\games\ -Quit
  73. del "Bloody Roar - Primal Fury (USA).iso"
  74. del "Bloody Roar - Primal Fury (USA).7z"
  75.  
  76.  
  77. 7z e "BMX XXX (USA).7z"
  78. gcit.exe "BMX XXX (USA).iso" -f gcreex -d k:\games\ -Quit
  79. del "BMX XXX (USA).iso"
  80. del "BMX XXX (USA).7z"
  81.  
  82.  
  83. 7z e "Bomberman Jetters (USA).7z"
  84. gcit.exe "Bomberman Jetters (USA).iso" -f gcreex -d k:\games\ -Quit
  85. del "Bomberman Jetters (USA).iso"
  86. del "Bomberman Jetters (USA).7z"
  87.  
  88.  
  89. 7z e "Bust-A-Move 3000 (USA).7z"
  90. gcit.exe "Bust-A-Move 3000 (USA).iso" -f gcreex -d k:\games\ -Quit
  91. del "Bust-A-Move 3000 (USA).iso"
  92. del "Bust-A-Move 3000 (USA).7z"
  93.  
  94.  
  95. 7z e "Capcom vs. SNK 2 EO - Millionaire Fighting 2001 (USA).7z"
  96. gcit.exe "Capcom vs. SNK 2 EO - Millionaire Fighting 2001 (USA).iso" -f gcreex -d k:\games\ -Quit
  97. del "Capcom vs. SNK 2 EO - Millionaire Fighting 2001 (USA).iso"
  98. del "Capcom vs. SNK 2 EO - Millionaire Fighting 2001 (USA).7z"
  99.  
  100.  
  101. 7z e "Chaos Field (USA).7z"
  102. gcit.exe "Chaos Field (USA).iso" -f gcreex -d k:\games\ -Quit
  103. del "Chaos Field (USA).iso"
  104. del "Chaos Field (USA).7z"
  105.  
  106.  
  107. 7z e "Crash Bandicoot - The Wrath of Cortex (USA).7z"
  108. gcit.exe "Crash Bandicoot - The Wrath of Cortex (USA).iso" -f gcreex -d k:\games\ -Quit
  109. del "Crash Bandicoot - The Wrath of Cortex (USA).iso"
  110. del "Crash Bandicoot - The Wrath of Cortex (USA).7z"
  111.  
  112.  
  113. 7z e "Crash Nitro Kart (USA).7z"
  114. gcit.exe "Crash Nitro Kart (USA).iso" -f gcreex -d k:\games\ -Quit
  115. del "Crash Nitro Kart (USA).iso"
  116. del "Crash Nitro Kart (USA).7z"
  117.  
  118.  
  119. 7z e "Def Jam - Fight for NY (USA).7z"
  120. gcit.exe "Def Jam - Fight for NY (USA).iso" -f gcreex -d k:\games\ -Quit
  121. del "Def Jam - Fight for NY (USA).iso"
  122. del "Def Jam - Fight for NY (USA).7z"
  123.  
  124.  
  125. 7z e "Dr. Muto (USA).7z"
  126. gcit.exe "Dr. Muto (USA).iso" -f gcreex -d k:\games\ -Quit
  127. del "Dr. Muto (USA).iso"
  128. del "Dr. Muto (USA).7z"
  129.  
  130.  
  131. 7z e "DragonBall Z - Budokai 2 (USA).7z"
  132. gcit.exe "DragonBall Z - Budokai 2 (USA).iso" -f gcreex -d k:\games\ -Quit
  133. del "DragonBall Z - Budokai 2 (USA).iso"
  134. del "DragonBall Z - Budokai 2 (USA).7z"
  135.  
  136.  
  137. 7z e "Gauntlet - Dark Legacy (USA).7z"
  138. gcit.exe "Gauntlet - Dark Legacy (USA).iso" -f gcreex -d k:\games\ -Quit
  139. del "Gauntlet - Dark Legacy (USA).iso"
  140. del "Gauntlet - Dark Legacy (USA).7z"
  141.  
  142.  
  143. 7z e "Godzilla - Destroy All Monsters Melee (USA).7z"
  144. gcit.exe "Godzilla - Destroy All Monsters Melee (USA).iso" -f gcreex -d k:\games\ -Quit
  145. del "Godzilla - Destroy All Monsters Melee (USA).iso"
  146. del "Godzilla - Destroy All Monsters Melee (USA).7z"
  147.  
  148.  
  149. 7z e "Hulk (USA).7z"
  150. gcit.exe "Hulk (USA).iso" -f gcreex -d k:\games\ -Quit
  151. del "Hulk (USA).iso"
  152. del "Hulk (USA).7z"
  153.  
  154.  
  155. 7z e "Ikaruga (USA).7z"
  156. gcit.exe "Ikaruga (USA).iso" -f gcreex -d k:\games\ -Quit
  157. del "Ikaruga (USA).iso"
  158. del "Ikaruga (USA).7z"
  159.  
  160.  
  161. 7z e "Kao the Kangaroo - Round 2 (USA).7z"
  162. gcit.exe "Kao the Kangaroo - Round 2 (USA).iso" -f gcreex -d k:\games\ -Quit
  163. del "Kao the Kangaroo - Round 2 (USA).iso"
  164. del "Kao the Kangaroo - Round 2 (USA).7z"
  165.  
  166.  
  167. 7z e "Killer 7 (USA) (Disc 1).7z"
  168. gcit.exe "Killer 7 (USA) (Disc 1).iso" -f gcreex -d k:\games\ -Quit
  169. del "Killer 7 (USA) (Disc 1).iso"
  170. del "Killer 7 (USA) (Disc 1).7z"
  171.  
  172.  
  173. 7z e "Killer 7 (USA) (Disc 2).7z"
  174. gcit.exe "Killer 7 (USA) (Disc 2).iso" -f gcreex -d k:\games\ -Quit
  175. del "Killer 7 (USA) (Disc 2).iso"
  176. del "Killer 7 (USA) (Disc 2).7z"
  177.  
  178.  
  179. 7z e "Legend of Spyro, The - A New Beginning (USA).7z"
  180. gcit.exe "Legend of Spyro, The - A New Beginning (USA).iso" -f gcreex -d k:\games\ -Quit
  181. del "Legend of Spyro, The - A New Beginning (USA).iso"
  182. del "Legend of Spyro, The - A New Beginning (USA).7z"
  183.  
  184.  
  185. 7z e "Mario Golf - Toadstool Tour (USA).7z"
  186. gcit.exe "Mario Golf - Toadstool Tour (USA).iso" -f gcreex -d k:\games\ -Quit
  187. del "Mario Golf - Toadstool Tour (USA).iso"
  188. del "Mario Golf - Toadstool Tour (USA).7z"
  189.  
  190.  
  191. 7z e "Mario Kart - Double Dash!! (USA).7z"
  192. gcit.exe "Mario Kart - Double Dash!! (USA).iso" -f gcreex -d k:\games\ -Quit
  193. del "Mario Kart - Double Dash!! (USA).iso"
  194. del "Mario Kart - Double Dash!! (USA).7z"
  195.  
  196.  
  197. 7z e "Mario Party 5 (USA).7z"
  198. gcit.exe "Mario Party 5 (USA).iso" -f gcreex -d k:\games\ -Quit
  199. del "Mario Party 5 (USA).iso"
  200. del "Mario Party 5 (USA).7z"
  201.  
  202.  
  203. 7z e "Mario Party 6 (USA).7z"
  204. gcit.exe "Mario Party 6 (USA).iso" -f gcreex -d k:\games\ -Quit
  205. del "Mario Party 6 (USA).iso"
  206. del "Mario Party 6 (USA).7z"
  207.  
  208.  
  209. 7z e "Mario Party 7 (USA).7z"
  210. gcit.exe "Mario Party 7 (USA).iso" -f gcreex -d k:\games\ -Quit
  211. del "Mario Party 7 (USA).iso"
  212. del "Mario Party 7 (USA).7z"
  213.  
  214.  
  215. 7z e "Mario Power Tennis (USA) (v1.01).7z"
  216. gcit.exe "Mario Power Tennis (USA) (v1.01).iso" -f gcreex -d k:\games\ -Quit
  217. del "Mario Power Tennis (USA) (v1.01).iso"
  218. del "Mario Power Tennis (USA) (v1.01).7z"
  219.  
  220.  
  221. 7z e "Mario Superstar Baseball (USA).7z"
  222. gcit.exe "Mario Superstar Baseball (USA).iso" -f gcreex -d k:\games\ -Quit
  223. del "Mario Superstar Baseball (USA).iso"
  224. del "Mario Superstar Baseball (USA).7z"
  225.  
  226.  
  227. 7z e "Midway Arcade Treasures (USA).7z"
  228. gcit.exe "Midway Arcade Treasures (USA).iso" -f gcreex -d k:\games\ -Quit
  229. del "Midway Arcade Treasures (USA).iso"
  230. del "Midway Arcade Treasures (USA).7z"
  231.  
  232.  
  233. 7z e "Midway Arcade Treasures 2 (USA).7z"
  234. gcit.exe "Midway Arcade Treasures 2 (USA).iso" -f gcreex -d k:\games\ -Quit
  235. del "Midway Arcade Treasures 2 (USA).iso"
  236. del "Midway Arcade Treasures 2 (USA).7z"
  237.  
  238.  
  239. 7z e "Midway Arcade Treasures 3 (USA).7z"
  240. gcit.exe "Midway Arcade Treasures 3 (USA).iso" -f gcreex -d k:\games\ -Quit
  241. del "Midway Arcade Treasures 3 (USA).iso"
  242. del "Midway Arcade Treasures 3 (USA).7z"
  243.  
  244.  
  245. 7z e "Mortal Kombat - Deception (USA).7z"
  246. gcit.exe "Mortal Kombat - Deception (USA).iso" -f gcreex -d k:\games\ -Quit
  247. del "Mortal Kombat - Deception (USA).iso"
  248. del "Mortal Kombat - Deception (USA).7z"
  249.  
  250.  
  251. 7z e "NBA Street Vol. 2 (USA).7z"
  252. gcit.exe "NBA Street Vol. 2 (USA).iso" -f gcreex -d k:\games\ -Quit
  253. del "NBA Street Vol. 2 (USA).iso"
  254. del "NBA Street Vol. 2 (USA).7z"
  255.  
  256.  
  257. 7z e "Pac-Man World 2 (USA).7z"
  258. gcit.exe "Pac-Man World 2 (USA).iso" -f gcreex -d k:\games\ -Quit
  259. del "Pac-Man World 2 (USA).iso"
  260. del "Pac-Man World 2 (USA).7z"
  261.  
  262.  
  263. 7z e "Pitfall - The Lost Expedition (USA).7z"
  264. gcit.exe "Pitfall - The Lost Expedition (USA).iso" -f gcreex -d k:\games\ -Quit
  265. del "Pitfall - The Lost Expedition (USA).iso"
  266. del "Pitfall - The Lost Expedition (USA).7z"
  267.  
  268.  
  269. 7z e "Rampage - Total Destruction (USA).7z"
  270. gcit.exe "Rampage - Total Destruction (USA).iso" -f gcreex -d k:\games\ -Quit
  271. del "Rampage - Total Destruction (USA).iso"
  272. del "Rampage - Total Destruction (USA).7z"
  273.  
  274.  
  275. 7z e "Rayman 3 - Hoodlum Havoc (USA) (En,Fr,De,Es,It).7z"
  276. gcit.exe "Rayman 3 - Hoodlum Havoc (USA) (En,Fr,De,Es,It).iso" -f gcreex -d k:\games\ -Quit
  277. del "Rayman 3 - Hoodlum Havoc (USA) (En,Fr,De,Es,It).iso"
  278. del "Rayman 3 - Hoodlum Havoc (USA) (En,Fr,De,Es,It).7z"
  279.  
  280.  
  281. 7z e "Red Faction II (USA).7z"
  282. gcit.exe "Red Faction II (USA).iso" -f gcreex -d k:\games\ -Quit
  283. del "Red Faction II (USA).iso"
  284. del "Red Faction II (USA).7z"
  285.  
  286.  
  287. 7z e "Samurai Jack - The Shadow of Aku (USA).7z"
  288. gcit.exe "Samurai Jack - The Shadow of Aku (USA).iso" -f gcreex -d k:\games\ -Quit
  289. del "Samurai Jack - The Shadow of Aku (USA).iso"
  290. del "Samurai Jack - The Shadow of Aku (USA).7z"
  291.  
  292.  
  293. 7z e "Simpsons, The - Road Rage (USA).7z"
  294. gcit.exe "Simpsons, The - Road Rage (USA).iso" -f gcreex -d k:\games\ -Quit
  295. del "Simpsons, The - Road Rage (USA).iso"
  296. del "Simpsons, The - Road Rage (USA).7z"
  297.  
  298.  
  299. 7z e "Soulcalibur II (USA).7z"
  300. gcit.exe "Soulcalibur II (USA).iso" -f gcreex -d k:\games\ -Quit
  301. del "Soulcalibur II (USA).iso"
  302. del "Soulcalibur II (USA).7z"
  303.  
  304.  
  305. 7z e "Sphinx and the Cursed Mummy (USA).7z"
  306. gcit.exe "Sphinx and the Cursed Mummy (USA).iso" -f gcreex -d k:\games\ -Quit
  307. del "Sphinx and the Cursed Mummy (USA).iso"
  308. del "Sphinx and the Cursed Mummy (USA).7z"
  309.  
  310.  
  311. 7z e "Spyro - A Hero's Tail (USA).7z"
  312. gcit.exe "Spyro - A Hero's Tail (USA).iso" -f gcreex -d k:\games\ -Quit
  313. del "Spyro - A Hero's Tail (USA).iso"
  314. del "Spyro - A Hero's Tail (USA).7z"
  315.  
  316.  
  317. 7z e "Spyro - Enter the Dragonfly (USA).7z"
  318. gcit.exe "Spyro - Enter the Dragonfly (USA).iso" -f gcreex -d k:\games\ -Quit
  319. del "Spyro - Enter the Dragonfly (USA).iso"
  320. del "Spyro - Enter the Dragonfly (USA).7z"
  321.  
  322.  
  323. 7z e "Super Mario Sunshine (USA).7z"
  324. gcit.exe "Super Mario Sunshine (USA).iso" -f gcreex -d k:\games\ -Quit
  325. del "Super Mario Sunshine (USA).iso"
  326. del "Super Mario Sunshine (USA).7z"
  327.  
  328.  
  329. 7z e "Tales of Symphonia (USA) (Disc 1).7z"
  330. gcit.exe "Tales of Symphonia (USA) (Disc 1).iso" -f gcreex -d k:\games\ -Quit
  331. del "Tales of Symphonia (USA) (Disc 1).iso"
  332. del "Tales of Symphonia (USA) (Disc 1).7z"
  333.  
  334.  
  335. 7z e "Tales of Symphonia (USA) (Disc 2).7z"
  336. gcit.exe "Tales of Symphonia (USA) (Disc 2).iso" -f gcreex -d k:\games\ -Quit
  337. del "Tales of Symphonia (USA) (Disc 2).iso"
  338. del "Tales of Symphonia (USA) (Disc 2).7z"
  339.  
  340.  
  341. 7z e "Tetris Worlds (USA).7z"
  342. gcit.exe "Tetris Worlds (USA).iso" -f gcreex -d k:\games\ -Quit
  343. del "Tetris Worlds (USA).iso"
  344. del "Tetris Worlds (USA).7z"
  345.  
  346.  
  347. 7z e "TimeSplitters - Future Perfect (USA).7z"
  348. gcit.exe "TimeSplitters - Future Perfect (USA).iso" -f gcreex -d k:\games\ -Quit
  349. del "TimeSplitters - Future Perfect (USA).iso"
  350. del "TimeSplitters - Future Perfect (USA).7z"
  351.  
  352.  
  353. 7z e "Tony Hawk's Pro Skater 3 (USA).7z"
  354. gcit.exe "Tony Hawk's Pro Skater 3 (USA).iso" -f gcreex -d k:\games\ -Quit
  355. del "Tony Hawk's Pro Skater 3 (USA).iso"
  356. del "Tony Hawk's Pro Skater 3 (USA).7z"
  357.  
  358.  
  359. 7z e "Ultimate Muscle - Legends vs. New Generation (USA).7z"
  360. gcit.exe "Ultimate Muscle - Legends vs. New Generation (USA).iso" -f gcreex -d k:\games\ -Quit
  361. del "Ultimate Muscle - Legends vs. New Generation (USA).iso"
  362. del "Ultimate Muscle - Legends vs. New Generation (USA).7z"
  363.  
  364.  
  365. 7z e "Ultimate Spider-Man (USA).7z"
  366. gcit.exe "Ultimate Spider-Man (USA).iso" -f gcreex -d k:\games\ -Quit
  367. del "Ultimate Spider-Man (USA).iso"
  368. del "Ultimate Spider-Man (USA).7z"
  369.  
  370.  
  371. 7z e "Wario World (USA).7z"
  372. gcit.exe "Wario World (USA).iso" -f gcreex -d k:\games\ -Quit
  373. del "Wario World (USA).iso"
  374. del "Wario World (USA).7z"
  375.  
  376.  
  377. 7z e "WarioWare, Inc. - Mega Party Game$! (USA).7z"
  378. gcit.exe "WarioWare, Inc. - Mega Party Game$! (USA).iso" -f gcreex -d k:\games\ -Quit
  379. del "WarioWare, Inc. - Mega Party Game$! (USA).iso"
  380. del "WarioWare, Inc. - Mega Party Game$! (USA).7z"
  381.  
  382.  
  383. 7z e "Wave Race - Blue Storm (USA).7z"
  384. gcit.exe "Wave Race - Blue Storm (USA).iso" -f gcreex -d k:\games\ -Quit
  385. del "Wave Race - Blue Storm (USA).iso"
  386. del "Wave Race - Blue Storm (USA).7z"
  387.  
  388.  
  389. 7z e "XGIII (USA).7z"
  390. gcit.exe "XGIII (USA).iso" -f gcreex -d k:\games\ -Quit
  391. del "XGIII (USA).iso"
  392. del "XGIII (USA).7z"
  393.  
  394.  
  395. 7z e "XIII (USA) (En,Fr,Es).7z"
  396. gcit.exe "XIII (USA) (En,Fr,Es).iso" -f gcreex -d k:\games\ -Quit
  397. del "XIII (USA) (En,Fr,Es).iso"
  398. del "XIII (USA) (En,Fr,Es).7z"
  399.  
  400.  
  401. 7z e "Yu-Gi-Oh! The Falsebound Kingdom (USA).7z"
  402. gcit.exe "Yu-Gi-Oh! The Falsebound Kingdom (USA).iso" -f gcreex -d k:\games\ -Quit
  403. del "Yu-Gi-Oh! The Falsebound Kingdom (USA).iso"
  404. del "Yu-Gi-Oh! The Falsebound Kingdom (USA).7z"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement