Talk:Microsoft Xbox and Xbox 360 Dumping Guide

From Redump Wiki

(Difference between revisions)
Jump to: navigation, search
(Created page with "==Sarami's Xbox dumping bat=== <pre> @echo off set drive=g: set appdir=D:\MyApp\rippingTools\Xbox Backup Creator 2.9.0.425 set creator="%appdir%\Xbox Backup Creator.exe" set rang...")
Line 1: Line 1:
-
==Sarami's Xbox dumping bat===
+
==Sarami's Xbox dumping bat==
<pre>
<pre>
@echo off
@echo off

Revision as of 04:47, 8 June 2018

Sarami's Xbox dumping bat

@echo off
set drive=g:
set appdir=D:\MyApp\rippingTools\Xbox Backup Creator 2.9.0.425
set creator="%appdir%\Xbox Backup Creator.exe"
set range="%appdir%\ss_sector_range.exe"
set freecell="%appdir%\FreeCell-0.2-RC1.exe"

if not exist %creator% (
  echo "%creator% doesn't exist"
  pause
  exit /b 1
)
if not exist %range% (
  echo "%range% doesn't exist"
  pause
  exit /b 1
)
if not exist %freecell% (
  echo "%freecell% doesn't exist"
  pause
  exit /b 1
)

%creator%

%range% SS.bin >sectors.txt

%freecell% %drive% -o "%appdir%\Track 01.iso"

pause

Personal tools