Commit e97a5266 authored by tunip3's avatar tunip3
Browse files

Added converting dumps to isos and vice versa

parent 5d1bfc42
Loading
Loading
Loading
Loading
+25 −25
Original line number Diff line number Diff line
@@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28010.2048
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Telnet enabler", "Telnet enabler\Telnet enabler.csproj", "{8652BB3B-A0DF-410C-875F-B88252AFFB2E}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Game Dump Toolkit", "Telnet enabler\Game Dump Toolkit.csproj", "{8652BB3B-A0DF-410C-875F-B88252AFFB2E}"
EndProject
Global
	GlobalSection(SolutionConfigurationPlatforms) = preSolution

README.md

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
# xbox-game-disc-dumper
A pc tool to dump xbox one game discs to usb
+185 −185
Original line number Diff line number Diff line
@@ -164,7 +164,7 @@
            this.Controls.Add(this.vspaircode);
            this.Controls.Add(this.IP);
            this.Name = "Form1";
            this.Text = "Xbox Game Dumper";
            this.Text = "Game Dumper";
            this.Load += new System.EventHandler(this.Form1_Load);
            this.ResumeLayout(false);
            this.PerformLayout();
+87 −87
Original line number Diff line number Diff line
@@ -61,7 +61,7 @@ namespace Materialform
            client.Connect();
            //create a tost to say that the game is being dumped
            client.RunCommand("J:\\unattendedsetuphelper.exe toast game%20being%20dumped");
            MessageBox.Show("game being dumped");
            MessageBox.Show("game being dumped\n(press ok to continue)");
            //dump game then create a toast to say that the game has been dumped
            client.RunCommand("J:\\tools\\xcopy.exe o:\\ e:\\diskdumps\\" + gamename.Text + " /I /E /H && J:\\unattendedsetuphelper.exe toast finished%20dumping%20game");
            //disconnect
+119 −119

File changed and moved.

Contains only whitespace changes.

Loading