diff --git a/download-resources/qcma.reg b/download-resources/qcma.reg
index c7bb676..e38a074 100644
Binary files a/download-resources/qcma.reg and b/download-resources/qcma.reg differ
diff --git a/h-encore-auto/App.xaml b/h-encore-auto/App.xaml
index 7fb5fd7..2f27785 100644
--- a/h-encore-auto/App.xaml
+++ b/h-encore-auto/App.xaml
@@ -2,7 +2,7 @@
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:h_encore_auto"
- StartupUri="MainWindow.xaml">
+ StartupUri="AutoMode.xaml">
diff --git a/h-encore-auto/AutoMode.xaml b/h-encore-auto/AutoMode.xaml
index 7ff5a96..b62362f 100644
--- a/h-encore-auto/AutoMode.xaml
+++ b/h-encore-auto/AutoMode.xaml
@@ -5,9 +5,16 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:h_encore_auto"
mc:Ignorable="d"
- Title="AutoMode" Height="512" Width="512" ResizeMode="CanMinimize" Closed="Window_Closed">
-
-
+ Title="ZUGABE" Height="175.807" Width="512" ResizeMode="CanMinimize" WindowStyle="None">
+
+
+
+
+
+
+
+
+
diff --git a/h-encore-auto/AutoMode.xaml.cs b/h-encore-auto/AutoMode.xaml.cs
index 88cd6ab..c6e71d4 100644
--- a/h-encore-auto/AutoMode.xaml.cs
+++ b/h-encore-auto/AutoMode.xaml.cs
@@ -13,6 +13,7 @@ using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Shapes;
+using System.Threading;
namespace h_encore_auto
{
@@ -24,177 +25,224 @@ namespace h_encore_auto
public AutoMode()
{
InitializeComponent();
- }
- string ProgramFilesx86 = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86);
- string ProgramFiles = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
- bool tempCreated = false;
- string longAID = null;
- string shortAID = null;
- string path7z = Ref.tempDir + "7za.exe";
- string pathPsvimg = Ref.tempDir + "psvimgtools.zip";
- string pathPkg = Ref.tempDir + "pkg2zip.zip";
- string pathEnc = Ref.tempDir + "h-encore.zip";
- string pathEntry = Ref.tempDir + "entryPoint.pkg";
- string pathQcma = Ref.tempDir + "qcma.zip";
- string pathQcmaExtracted = Ref.tempDir + "Qcma\\";
- string pathBackupReg = Ref.tempDir + "backup.reg";
- string pathImportReg = Ref.tempDir + "qcma.reg";
- string pathQcmaRes = Ref.tempDir + "QcmaRes\\";
-
- private void Window_Closed(object sender, EventArgs e)
- {
- var newForm = new MainWindow();
- newForm.Visibility = Visibility.Visible;
+ if (File.Exists(Ref.tempDir + "keepfile"))
+ {
+ Ref.areFilesKept = true;
+ }
+ else
+ {
+ Ref.areFilesKept = false;
+ if (Directory.Exists(Ref.tempDir))
+ Util.DeleteDirectory(Ref.tempDir);
+ Directory.CreateDirectory(Ref.tempDir);
+ }
}
private void buttonStart_Click(object sender, RoutedEventArgs e)
{
- Process[] pname = Process.GetProcessesByName("qcma");
- if (pname.Length != 0)
+ buttonStart.IsEnabled = false;
+ barWorking.Visibility = Visibility.Visible;
+
+ new Thread(() =>
{
- foreach (var proc in pname)
+ Thread.CurrentThread.IsBackground = true;
+ /* run your code here */
+
+ Process[] pname = Process.GetProcessesByName("qcma");
+ if (pname.Length != 0)
{
- proc.Kill();
+ foreach (var proc in pname)
+ {
+ proc.Kill();
+ }
+ MessageBox.Show("QCMA was closed, since this application has to interact with it.");
}
- MessageBox.Show("QCMA was closed, since this application has to interact with it.");
- }
- // 7ZIP Download and extraction
- Util.dlFile(Ref.url7zr, "7zr.exe");
- Util.dlFile(Ref.url7za, "7z-extra.7z");
+ // 7ZIP Download and extraction
+ Util.dlFile(Ref.url7zr, "7zr.exe");
+ Util.dlFile(Ref.url7za, "7z-extra.7z");
- Process process = new Process();
- ProcessStartInfo startInfo = new ProcessStartInfo();
- ProcessStartInfo startInfoOut = new ProcessStartInfo();
+ Process process = new Process();
+ ProcessStartInfo startInfo = new ProcessStartInfo();
+ ProcessStartInfo startInfoOut = new ProcessStartInfo();
- startInfo.WindowStyle = ProcessWindowStyle.Hidden;
- startInfo.FileName = "cmd.exe";
- startInfo.WorkingDirectory = Ref.tempDir;
+ startInfo.WindowStyle = ProcessWindowStyle.Hidden;
+ startInfo.FileName = "cmd.exe";
+ startInfo.WorkingDirectory = Ref.tempDir;
- startInfo.Arguments = "/C 7zr.exe x 7z-extra.7z";
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- //Rest of the tool downloads
- Util.dlFile(Ref.urlPsvimg, "psvimgtools.zip");
- Util.dlFile(Ref.urlPkg, "pkg2zip.zip");
- Util.dlFile(Ref.urlEnc, "h-encore.zip");
- Util.dlFile(Ref.urlEntry, "entryPoint.pkg");
- Util.dlFile(Ref.urlQcma, "qcma.zip");
- Util.dlFile(Ref.urlReg, "qcma.reg");
-
- string text = File.ReadAllText(pathImportReg);
- text = text.Replace("REPLACE", pathQcmaRes);
- File.WriteAllText(pathImportReg, text);
-
- startInfo.Arguments = "/C " + path7z + " x " + pathPsvimg;
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = "/C " + path7z + " x " + pathPkg;
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = "/C " + path7z + " x " + pathEnc;
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = "/C " + path7z + " x " + pathQcma;
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = "/C " + Ref.tempDir + "pkg2zip.exe -x " + pathEntry;
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = "/C xcopy /E /Y /I " + Ref.tempDir + @"app\PCSG90096\ " + Ref.tempDir + @"h-encore\app\ux0_temp_game_PCSG90096_app_PCSG90096\";
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = "/C xcopy /E /Y /I " + Ref.tempDir + @"app\PCSG90096\sce_sys\package\temp.bin " + Ref.tempDir + @"h-encore\license\ux0_temp_game_PCSG90096_license_app_PCSG90096\6488b73b912a753a492e2714e9b38bc7.rif*";
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- try
- {
- string path = Ref.tempDir + "app\\PCSG90096\\resource\\";
- foreach (string k in Ref.trims)
- {
- Util.DeleteDirectory(path + k);
- }
- }
- catch (Exception ex)
- {
- MessageBox.Show("Exception: " + ex.Message + "\nYou should tell the developer in a github issue. Include a screenshot if possible!");
- return;
- }
-
- bool qcmaConfigFound = false;
-
- startInfoOut.RedirectStandardOutput = true;
- startInfoOut.UseShellExecute = false;
- startInfoOut.Arguments = @"/C reg query HKEY_CURRENT_USER\Software\codestation\qcma & echo 0";
- process.StartInfo = startInfoOut;
- process.Start();
- string stdout = process.StandardOutput.ReadToEnd();
- process.WaitForExit();
-
- if (stdout == "0")
- {
- qcmaConfigFound = false;
-
- startInfo.Arguments = @"/C reg import " + pathImportReg;
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
- }
-
- else
- {
- qcmaConfigFound = true;
-
- startInfo.Arguments = @"/C reg export HKEY_CURRENT_USER\Software\codestation\qcma " + pathBackupReg;
+ startInfo.Arguments = "/C 7zr.exe x 7z-extra.7z";
process.StartInfo = startInfo;
process.Start();
process.WaitForExit();
- startInfo.Arguments = @" /C reg import " + pathImportReg;
+ //Rest of the tool downloads
+ Util.dlFile(Ref.urlPsvimg, "psvimgtools.zip");
+ Util.dlFile(Ref.urlPkg, "pkg2zip.zip");
+ Util.dlFile(Ref.urlEnc, "h-encore.zip");
+ Util.dlFile(Ref.urlEntry, "entryPoint.pkg");
+ Util.dlFile(Ref.urlQcma, "qcma.zip");
+ Util.dlFile(Ref.urlReg, "qcma.reg");
+
+ string text = File.ReadAllText(Ref.pathImportReg);
+ text = text.Replace("REPLACE", Ref.pathQcmaRes);
+ File.WriteAllText(Ref.pathImportReg, text);
+ text = text.Replace("\\", "/");
+ File.WriteAllText(Ref.pathImportReg, text);
+
+ startInfo.Arguments = "/C " + Ref.path7z + " x " + Ref.pathPsvimg;
process.StartInfo = startInfo;
process.Start();
process.WaitForExit();
- }
- startInfo.Arguments = @"/C " + pathQcmaExtracted + "qcma.exe";
- process.StartInfo = startInfo;
- process.Start();
+ startInfo.Arguments = "/C " + Ref.path7z + " x " + Ref.pathPkg;
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
- for (; ; )
- {
- var guide = new VitaGuide();
- guide.ShowDialog();
+ startInfo.Arguments = "/C " + Ref.path7z + " x " + Ref.pathEnc;
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
- if (Util.IsDirectoryEmpty(pathQcmaRes + "PSVita\\APP\\"))
+ startInfo.Arguments = "/C " + Ref.path7z + " x " + Ref.pathQcma;
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+
+ startInfo.Arguments = "/C " + Ref.tempDir + "pkg2zip.exe -x " + Ref.pathEntry;
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+
+ startInfo.Arguments = "/C xcopy /E /Y /I " + Ref.tempDir + @"app\PCSG90096\ " + Ref.tempDir + @"h-encore\app\ux0_temp_game_PCSG90096_app_PCSG90096\";
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+
+ startInfo.Arguments = "/C xcopy /E /Y /I " + Ref.tempDir + @"app\PCSG90096\sce_sys\package\temp.bin " + Ref.tempDir + @"h-encore\license\ux0_temp_game_PCSG90096_license_app_PCSG90096\6488b73b912a753a492e2714e9b38bc7.rif*";
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+
+ try
{
- MessageBox.Show("Required folder not found. \nMake sure you did everything correctly and follow the steps again.");
+ string path = Ref.tempDir + "app\\PCSG90096\\resource\\";
+ foreach (string k in Ref.trims)
+ {
+ Util.DeleteDirectory(path + k);
+ }
}
+ catch (Exception ex)
+ {
+ MessageBox.Show("Exception: " + ex.Message + "\nYou should tell the developer in a github issue. Include a screenshot if possible!");
+ return;
+ }
+
+ startInfoOut.RedirectStandardOutput = true;
+ startInfoOut.UseShellExecute = false;
+ startInfoOut.Arguments = @"/C reg query HKEY_CURRENT_USER\Software\codestation\qcma & echo 0";
+ process.StartInfo = startInfoOut;
+ process.Start();
+ string stdout = process.StandardOutput.ReadToEnd();
+ process.WaitForExit();
+
+ if (stdout == "0")
+ {
+ Ref.isQcmaConfigFound = false;
+
+ startInfo.Arguments = @"/C reg import " + Ref.pathImportReg;
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+ }
+
else
{
- break;
+ Ref.isQcmaConfigFound = true;
+
+ startInfo.Arguments = @"/C reg export HKEY_CURRENT_USER\Software\codestation\qcma " + Ref.pathBackupReg;
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+
+ startInfo.Arguments = @" /C reg import " + Ref.pathImportReg;
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
}
- }
- shortAID = Directory.GetDirectories(pathQcmaRes + "PSVita\\APP\\")[0];
+ Ref.isRegModified = true;
+ startInfo.Arguments = @"/C " + Ref.pathQcmaExtracted + "qcma.exe";
+ process.StartInfo = startInfo;
+ process.Start();
+ var guide = new VitaGuide();
+ for (; ; )
+ {
+ guide.ShowDialog();
+
+ if (Util.IsDirectoryEmpty(Ref.pathQcmaRes + "PSVita\\APP\\"))
+ {
+ MessageBox.Show("Required folder not found. \nMake sure you did everything correctly and follow the steps again.");
+ }
+ else
+ {
+ break;
+ }
+ }
+
+ Ref.shortAID = Directory.GetDirectories(Ref.pathQcmaRes + "PSVita\\APP\\")[0];
+
+ Ref.longAID = Util.GetEncKey(Ref.shortAID);
+
+ startInfo.WorkingDirectory = Ref.tempDir + "h-encore";
+
+ startInfo.Arguments = @"/C ..\psvimg-create -n app -K " + Ref.longAID + " PCSG90096/app";
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+
+ startInfo.Arguments = @"/C ..\psvimg-create -n appmeta -K " + Ref.longAID + " PCSG90096/appmeta";
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+
+ startInfo.Arguments = @"/C ..\psvimg-create -n license -K " + Ref.longAID + " PCSG90096/license";
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+
+ startInfo.Arguments = @"/C ..\psvimg-create -n savedata -K " + Ref.longAID + " PCSG90096/savedata";
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+
+ startInfo.Arguments = "/C xcopy /E /Y /I " + Ref.tempDir + @"h-encore\PCSG90096\ " + Ref.pathQcmaRes + "PSVita\\" + Ref.shortAID + "\\PCSG90096\\";
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+
+ Ref.isSecondGuide = true;
+ guide.ShowDialog();
+
+ MessageBox.Show("If not already done, wait until your Vita has copied over the exploit, then press OK.");
+
+ Util.Cleanup();
+
+ }).Start();
+ }
+
+ private void Grid_MouseDown(object sender, MouseButtonEventArgs e)
+ {
+ DragMove();
+ }
+
+ private void buttonClose_Click(object sender, RoutedEventArgs e)
+ {
+
+ Util.Cleanup();
}
}
}
diff --git a/h-encore-auto/MainWindow.xaml b/h-encore-auto/MainWindow.xaml
deleted file mode 100644
index 308b42b..0000000
--- a/h-encore-auto/MainWindow.xaml
+++ /dev/null
@@ -1,33 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/h-encore-auto/MainWindow.xaml.cs b/h-encore-auto/MainWindow.xaml.cs
deleted file mode 100644
index a2ee1e2..0000000
--- a/h-encore-auto/MainWindow.xaml.cs
+++ /dev/null
@@ -1,343 +0,0 @@
-using System.Windows;
-using System.Net;
-using System.IO;
-using System.Threading;
-using System.ComponentModel;
-using System;
-using System.Windows.Threading;
-using System.Diagnostics;
-using Essy.Tools.InputBox;
-using Microsoft.Win32;
-
-namespace h_encore_auto
-{
- ///
- /// Interaction logic for MainWindow.xaml
- ///
- public partial class MainWindow : Window
- {
- public MainWindow()
- {
- InitializeComponent();
-
- if (Directory.Exists(Ref.tempDir))
- {
- Util.DeleteDirectory(Ref.tempDir);
- }
-
- createTemp();
- }
-
- public void createTemp()
- {
- if (tempCreated == false)
- {
- Directory.CreateDirectory(Ref.tempDir);
- tempCreated = true;
- }
- }
-
- string ProgramFilesx86 = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86);
- string ProgramFiles = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
- bool tempCreated = false;
- string longAID = null;
- string shortAID = null;
-
- private void buttonGo_Click(object sender, RoutedEventArgs e)
- {
- if (boxPath7z.Text == "")
- {
- MessageBox.Show("A path missing!");
- }
- else if (boxPathEntry.Text == "")
- {
- MessageBox.Show("A path missing!");
- }
- else if (boxPathEnc.Text == "")
- {
- MessageBox.Show("A path missing!");
- }
- else if (boxPathPkg.Text == "")
- {
- MessageBox.Show("A path missing!");
- }
- else if (boxPathPsvimg.Text == "")
- {
- MessageBox.Show("A path missing!");
- }
- else
- {
- MessageBox.Show("This will probably take some time. Sit back and wait for further message boxes.");
-
- Process process = new Process();
- ProcessStartInfo startInfo = new ProcessStartInfo();
- startInfo.WindowStyle = ProcessWindowStyle.Hidden;
- startInfo.FileName = "cmd.exe";
- startInfo.WorkingDirectory = Ref.tempDir;
-
- startInfo.Arguments = "/C " + boxPath7z.Text + " x " + boxPathPsvimg.Text;
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = "/C " + boxPath7z.Text + " x " + boxPathPkg.Text;
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = "/C " + boxPath7z.Text + " x " + boxPathEnc.Text;
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = "/C " + Ref.tempDir + "pkg2zip.exe" + " -x " + boxPathEntry.Text;
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = "/C xcopy /E /Y /I " + Ref.tempDir + @"app\PCSG90096\ " + Ref.tempDir + @"h-encore\app\ux0_temp_game_PCSG90096_app_PCSG90096\";
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = "/C xcopy /E /Y /I " + Ref.tempDir + @"app\PCSG90096\sce_sys\package\temp.bin " + Ref.tempDir + @"h-encore\license\ux0_temp_game_PCSG90096_license_app_PCSG90096\6488b73b912a753a492e2714e9b38bc7.rif*";
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- try
- {
- string path = Ref.tempDir + "app\\PCSG90096\\resource\\";
- foreach (string k in Ref.trims)
- {
- Util.DeleteDirectory(path + k);
- }
- }
- catch (Exception ex)
- {
- MessageBox.Show("Unexpected Exception: " + ex.Message);
- return;
- }
-
- for (; ; )
- {
- Process[] pname = Process.GetProcessesByName("qcma");
- if (pname.Length == 0)
- {
- if (MessageBox.Show("QCMA not detected. Please start it now. Download it?", "QCMA error", MessageBoxButton.YesNo) == MessageBoxResult.Yes)
- {
- Process.Start("https://codestation.github.io/qcma/");
- MessageBox.Show("Retrying...");
- }
- else
- MessageBox.Show("Retrying...");
- }
- else
- {
- break;
- }
- }
- for (; ; )
- {
- MessageBox.Show("In the QCMA settings, set the option \"Use this version for updates\" to \"FW 0.00 (Always up-to-date)\".");
- MessageBox.Show("Launch Content Manager on your PS Vita and connect it to your computer, where you then need to select PC -> PS Vita System.\nAfter that you select Applications. If you see an error message about System Software, you should simply reboot your device to solve it\n(if this doesn't solve, then put your device into airplane mode and reboot).");
- if (Directory.Exists(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\PS Vita\"))
- {
- MessageBox.Show("A folder will open, which should now contain another folder named with 16 characters of jumbled letters and numbers.\nCopy this folder name and insert it in the next step.");
- Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\PS Vita\APP\");
- shortAID = InputBox.ShowInputBox("Enter the 16-character folder name.");
- }
- else
- {
- MessageBox.Show("A folder named after your Account ID was created inside your \"PS Vita\\APP\\\"\nUse the settings of QCMA to find it.\nCopy the folder name and insert it in the next step.");
- shortAID = InputBox.ShowInputBox("Enter the 16-character folder name.");
- }
- if (MessageBox.Show("Press yes to continue, no to redo the last step.", "Continue?", MessageBoxButton.YesNo) == MessageBoxResult.Yes)
- {
- break;
- }
- }
-
- longAID = Util.GetEncKey(shortAID);
-
- startInfo.WorkingDirectory = Ref.tempDir + "h-encore";
-
- startInfo.Arguments = @"/C ..\psvimg-create -n app -K " + longAID + " PCSG90096/app";
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = @"/C ..\psvimg-create -n appmeta -K " + longAID + " PCSG90096/appmeta";
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = @"/C ..\psvimg-create -n license -K " + longAID + " PCSG90096/license";
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- startInfo.Arguments = @"/C ..\psvimg-create -n savedata -K " + longAID + " PCSG90096/savedata";
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- if (Directory.Exists(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\PS Vita\"))
- {
- MessageBox.Show("Two folders will now open.\nCopy the contained folder called \"PCSG90096\" to the \"PS Vita/APP/xxxxxxxxxxxxxxxx/\" folder.\nThen refresh the databse of QCMA by right-clicking the icon and selecting it.");
- Process.Start(Environment.GetFolderPath(Environment.SpecialFolder.MyDocuments) + @"\PS Vita\APP\");
- Process.Start(Ref.tempDir + @"h-encore\");
- }
- else
- {
- MessageBox.Show("A folder will now open.\nCopy the contained folder called \"PCSG90096\" to your \"PS Vita/APP/xxxxxxxxxxxxxxxx/\" folder.\nThen refresh the databse of QCMA by right-clicking the icon and selecting it.");
- Process.Start(Ref.tempDir + @"h-encore\");
- }
- MessageBox.Show("Ready? Have you copied the folder and refreshed the database?");
- MessageBox.Show("Now copy h-encore to your Vita using the content manager.");
- MessageBox.Show("Launch h-encore to exploit your device (if a message about trophies appears, simply click yes). \nThe screen should first flash white, then purple, and finally\nopen a menu called h-encore bootstrap menu where you can download VitaShell and install HENkaku.");
- if (MessageBox.Show("For more info and how to remove the trophy warning please visit TheFlow's official page for the exploit.", "Info", MessageBoxButton.YesNo) == MessageBoxResult.Yes)
- {
- Process.Start("https://codestation.github.io/qcma/");
- }
-
- Util.cleanup();
- }
- }
-
- private void buttonZipDL_Click(object sender, RoutedEventArgs e)
- {
- Util.dlFile(Ref.url7zr, "7zr.exe");
- Util.dlFile(Ref.url7za, "7z-extra.7z");
-
- Process process = new Process();
- ProcessStartInfo startInfo = new ProcessStartInfo();
- startInfo.WindowStyle = ProcessWindowStyle.Hidden;
- startInfo.FileName = "cmd.exe";
- startInfo.WorkingDirectory = Ref.tempDir;
-
- startInfo.Arguments = "/C 7zr.exe x 7z-extra.7z";
- process.StartInfo = startInfo;
- process.Start();
- process.WaitForExit();
-
- boxPath7z.Text = Ref.tempDir + "7za.exe";
- }
-
- private void buttonPsvimgDL_Click(object sender, RoutedEventArgs e)
- {
- Util.dlFile(Ref.urlPsvimg, "psvimgtools.zip");
-
- boxPathPsvimg.Text = Ref.tempDir + "psvimgtools.zip";
- }
-
- private void buttonPkgDL_Click(object sender, RoutedEventArgs e)
- {
- Util.dlFile(Ref.urlPkg, "pkg2zip.zip");
-
- boxPathPkg.Text = Ref.tempDir + "pkg2zip.zip";
- }
-
- private void buttonEncDL_Click(object sender, RoutedEventArgs e)
- {
- Util.dlFile(Ref.urlEnc, "h-encore.zip");
-
- boxPathEnc.Text = Ref.tempDir + "h-encore.zip";
- }
-
- private void buttonEntryDL_Click(object sender, RoutedEventArgs e)
- {
- MessageBox.Show("This will take a while, please be patient.");
-
- Util.dlFile(Ref.urlEntry, "entryPoint.pkg");
-
- boxPathEntry.Text = Ref.tempDir + "entryPoint.pkg";
- }
-
- private void button7zFile_Click(object sender, RoutedEventArgs e)
- {
- OpenFileDialog dlg = new OpenFileDialog();
- dlg.DefaultExt = ".exe";
- dlg.Filter = "Executables (.exe)|*.exe";
-
- bool? result = dlg.ShowDialog();
-
- if (result == true)
- {
- string path = dlg.FileName;
- boxPath7z.Text = path;
- }
- }
-
- private void buttonPsvimgFile_Click(object sender, RoutedEventArgs e)
- {
- OpenFileDialog dlg = new OpenFileDialog();
- dlg.DefaultExt = ".zip";
- dlg.Filter = "ZIP Archives (.zip)|*.zip";
-
- bool? result = dlg.ShowDialog();
-
- if (result == true)
- {
- string path = dlg.FileName;
- boxPathPsvimg.Text = path;
- }
- }
-
- private void buttonPkgFile_Click(object sender, RoutedEventArgs e)
- {
- OpenFileDialog dlg = new OpenFileDialog();
- dlg.DefaultExt = ".zip";
- dlg.Filter = "ZIP Archives (.zip)|*.zip";
-
- bool? result = dlg.ShowDialog();
-
- if (result == true)
- {
- string path = dlg.FileName;
- boxPathPkg.Text = path;
- }
- }
-
- private void buttonEncFile_Click(object sender, RoutedEventArgs e)
- {
- OpenFileDialog dlg = new OpenFileDialog();
- dlg.DefaultExt = ".zip";
- dlg.Filter = "ZIP Archives (.zip)|*.zip";
-
- bool? result = dlg.ShowDialog();
-
- if (result == true)
- {
- string path = dlg.FileName;
- boxPathEnc.Text = path;
- }
- }
- private void buttonEntryFile_Click(object sender, RoutedEventArgs e)
- {
- OpenFileDialog dlg = new OpenFileDialog();
- dlg.DefaultExt = ".zip";
- dlg.Filter = "PSVita PKG Archives (.pkg)|*.pkg";
-
- bool? result = dlg.ShowDialog();
-
- if (result == true)
- {
- string path = dlg.FileName;
- boxPathEntry.Text = path;
- }
- }
-
- private void buttonAuto_Click(object sender, RoutedEventArgs e)
- {
- var newForm = new AutoMode();
- newForm.Show();
- this.Visibility = Visibility.Collapsed;
- }
-
- private void Window_Closed(object sender, EventArgs e)
- {
- Util.cleanup();
- }
- }
-}
diff --git a/h-encore-auto/Util.cs b/h-encore-auto/Util.cs
index b90c5c5..2dd7ae2 100644
--- a/h-encore-auto/Util.cs
+++ b/h-encore-auto/Util.cs
@@ -5,6 +5,8 @@ using System.IO;
using System.Windows.Markup;
using System.Windows;
using System.Collections.Generic;
+using System.Diagnostics;
+using System.Globalization;
namespace h_encore_auto
{
@@ -23,7 +25,7 @@ namespace h_encore_auto
}
catch (Exception)
{
- MessageBox.Show("Failed to get the CMA encryption key. Make sure your internet is connected and/or retry.");
+ MessageBox.Show("Failed to get the CMA encryption key. Make sure your internet is connected and retry.");
return "";
}
}
@@ -56,10 +58,49 @@ namespace h_encore_auto
client.DownloadFile(url, Ref.tempDir + filename);
}
}
- public static void cleanup()
+ public static void Cleanup()
{
- Util.DeleteDirectory(Ref.tempDir);
- System.Environment.Exit(0);
+ Process[] pname = Process.GetProcessesByName("qcma");
+ if (pname.Length != 0)
+ {
+ foreach (var proc in pname)
+ {
+ proc.Kill();
+ }
+ }
+
+ Process process = new Process();
+ ProcessStartInfo startInfo = new ProcessStartInfo();
+ ProcessStartInfo startInfoOut = new ProcessStartInfo();
+ startInfo.WindowStyle = ProcessWindowStyle.Hidden;
+ startInfo.FileName = "cmd.exe";
+ startInfo.WorkingDirectory = Ref.tempDir;
+
+ if (Ref.isRegModified == true)
+ {
+ startInfo.Arguments = @"/C reg delete HKEY_CURRENT_USER\Software\codestation\qcma /f";
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+ }
+
+ if (Ref.isQcmaConfigFound == true)
+ {
+ startInfo.Arguments = @"/C reg import " + Ref.pathBackupReg;
+ process.StartInfo = startInfo;
+ process.Start();
+ process.WaitForExit();
+ }
+
+ if (Directory.Exists(Ref.tempDir))
+ {
+ if (MessageBox.Show("Do you want to keep the downloaded files for future use?\nPressing no will wipe any leftover files of this application off your computer.", "Keep Files?", MessageBoxButton.YesNo) == MessageBoxResult.Yes)
+ File.Create(Ref.tempDir + "keepfile");
+ else
+ DeleteDirectory(Ref.tempDir);
+ }
+
+ Environment.Exit(0);
}
public static bool IsDirectoryEmpty(string path)
{
@@ -69,5 +110,12 @@ namespace h_encore_auto
return !en.MoveNext();
}
}
+
+ public static string GetLang()
+ {
+ CultureInfo ci = CultureInfo.InstalledUICulture;
+
+ return ci.TwoLetterISOLanguageName;
+ }
}
}
\ No newline at end of file
diff --git a/h-encore-auto/VitaGuide.xaml b/h-encore-auto/VitaGuide.xaml
index d0e2b4f..a2564d1 100644
--- a/h-encore-auto/VitaGuide.xaml
+++ b/h-encore-auto/VitaGuide.xaml
@@ -5,13 +5,13 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:h_encore_auto"
mc:Ignorable="d"
- Title="VitaGuide" Height="450" Width="920.633" ResizeMode="CanMinimize">
+ Title="VitaGuide" Height="477.108" Width="920.633" ResizeMode="CanMinimize">
-
-
-
-
+
+
+
+
diff --git a/h-encore-auto/VitaGuide.xaml.cs b/h-encore-auto/VitaGuide.xaml.cs
index 7648852..78f9614 100644
--- a/h-encore-auto/VitaGuide.xaml.cs
+++ b/h-encore-auto/VitaGuide.xaml.cs
@@ -21,11 +21,19 @@ namespace h_encore_auto
{
int currImg = 1;
+ string[] currText = lang.GuideText(Util.GetLang());
+
public VitaGuide()
{
InitializeComponent();
- imgFrame.Source = new BitmapImage(new Uri("/img/1.png", UriKind.Relative));
- currImg = 1;
+
+ if (Ref.isSecondGuide == true)
+ {
+ currImg = 101;
+ }
+
+ imgFrame.Source = new BitmapImage(new Uri("/img/" + currImg + ".png", UriKind.Relative));
+ textField.Text = currText[currImg];
buttonDone.Visibility = Visibility.Hidden;
}
@@ -33,9 +41,10 @@ namespace h_encore_auto
{
currImg++;
imgFrame.Source = new BitmapImage(new Uri("/img/" + currImg + ".png", UriKind.Relative));
+ textField.Text = currText[currImg];
buttonBck.IsEnabled = true;
- if (currImg == 14)
+ if (currImg == 14 || currImg == 25)
{
buttonFwd.IsEnabled = false;
buttonDone.Visibility = Visibility.Visible;
@@ -51,8 +60,9 @@ namespace h_encore_auto
currImg--;
imgFrame.Source = new BitmapImage(new Uri("/img/" + currImg + ".png", UriKind.Relative));
buttonFwd.IsEnabled = true;
+ textField.Text = currText[currImg];
- if (currImg == 1)
+ if (currImg == 1 || currImg == 15)
{
buttonBck.IsEnabled = false;
}
diff --git a/h-encore-auto/h-encore-auto.csproj b/h-encore-auto/h-encore-auto.csproj
index 0f3a4c2..6e8c970 100644
--- a/h-encore-auto/h-encore-auto.csproj
+++ b/h-encore-auto/h-encore-auto.csproj
@@ -82,6 +82,7 @@
AutoMode.xaml
+
@@ -91,18 +92,10 @@
Designer
MSBuild:Compile
-
- MSBuild:Compile
- Designer
-
App.xaml
Code
-
- MainWindow.xaml
- Code
-
Designer
MSBuild:Compile
@@ -145,7 +138,13 @@
false
-
+
+
+
+
+
+
+
@@ -162,6 +161,9 @@
+
+
+
diff --git a/h-encore-auto/img/15.png b/h-encore-auto/img/15.png
new file mode 100644
index 0000000..51dab39
Binary files /dev/null and b/h-encore-auto/img/15.png differ
diff --git a/h-encore-auto/img/16.png b/h-encore-auto/img/16.png
new file mode 100644
index 0000000..ec3357a
Binary files /dev/null and b/h-encore-auto/img/16.png differ
diff --git a/h-encore-auto/img/17.png b/h-encore-auto/img/17.png
new file mode 100644
index 0000000..62a374a
Binary files /dev/null and b/h-encore-auto/img/17.png differ
diff --git a/h-encore-auto/img/18.png b/h-encore-auto/img/18.png
new file mode 100644
index 0000000..c136ddd
Binary files /dev/null and b/h-encore-auto/img/18.png differ
diff --git a/h-encore-auto/img/19.png b/h-encore-auto/img/19.png
new file mode 100644
index 0000000..e3f7a35
Binary files /dev/null and b/h-encore-auto/img/19.png differ
diff --git a/h-encore-auto/img/9.PNG b/h-encore-auto/img/9.PNG
index ed0c256..a066530 100644
Binary files a/h-encore-auto/img/9.PNG and b/h-encore-auto/img/9.PNG differ
diff --git a/h-encore-auto/img/ajax-loader.gif b/h-encore-auto/img/ajax-loader.gif
new file mode 100644
index 0000000..3288d10
Binary files /dev/null and b/h-encore-auto/img/ajax-loader.gif differ
diff --git a/h-encore-auto/lang.cs b/h-encore-auto/lang.cs
new file mode 100644
index 0000000..a852402
--- /dev/null
+++ b/h-encore-auto/lang.cs
@@ -0,0 +1,47 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace h_encore_auto
+{
+ class lang
+ {
+ public static string[] GuideText(string lang)
+ {
+ if (lang == "en")
+ return guideEN;
+ else
+ return guideEN;
+ }
+
+ private static readonly string[] guideEN= new string[] {
+ "1. On your Vita, open the Content Manager. Make sure your Vita and PC are in the same Network!",
+ "2. Select \"Copy Content\"",
+ "3. If it tries to connect, cancel it.",
+ "4. Select \"PC\"",
+ "5. Select \"Wi-Fi\"",
+ "6. Select \"Register Device\"",
+ "7. Your Computer should show up. Select it.",
+ "8. Enter the code shown or your computer.",
+ "8. Enter the code shown or your computer.",
+ "8. Enter the code shown or your computer.",
+ "9. It should tell you that the device was registered successfully.",
+ "10. After clicking next, please wait.",
+ "11. Select \"PC -> PS Vita System\"",
+ "12. Select \"Applications\"",
+ "1. On your Vita, open the Content Manager. Make sure your Vita and PC are in the same Network!",
+ "2. Select \"Copy Content\"",
+ "3. Wait for it to connect.",
+ "4. Select \"PC -> PS Vita System\"",
+ "5. Select \"Applications\"",
+ "6",
+ "7",
+ "8",
+ "9",
+ "10",
+ "Done. Keep in mind that you have to launch h-encore every time you reboot the Vita. \nWhen launched, just press Exit again. This reapplies the exploit."
+ };
+ }
+}
diff --git a/h-encore-auto/ref.cs b/h-encore-auto/ref.cs
index e5f24ff..4c13db3 100644
--- a/h-encore-auto/ref.cs
+++ b/h-encore-auto/ref.cs
@@ -1,4 +1,5 @@
-using System.IO;
+using System;
+using System.IO;
namespace h_encore_auto
{
@@ -31,5 +32,27 @@ namespace h_encore_auto
"sound\\voice\\",
"text\\01\\"
};
+
+ public static bool isSecondGuide = false;
+
+ public static bool isQcmaConfigFound = false;
+
+ public static readonly string ProgramFilesx86 = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFilesX86);
+ public static readonly string ProgramFiles = Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles);
+ public static string longAID = null;
+ public static string shortAID = null;
+ public static readonly string path7z = tempDir + "7za.exe";
+ public static readonly string pathPsvimg = tempDir + "psvimgtools.zip";
+ public static readonly string pathPkg = tempDir + "pkg2zip.zip";
+ public static readonly string pathEnc = tempDir + "h-encore.zip";
+ public static readonly string pathEntry = tempDir + "entryPoint.pkg";
+ public static readonly string pathQcma = tempDir + "qcma.zip";
+ public static readonly string pathQcmaExtracted = tempDir + "Qcma\\";
+ public static readonly string pathBackupReg = tempDir + "backup.reg";
+ public static readonly string pathImportReg = tempDir + "qcma.reg";
+ public static readonly string pathQcmaRes = tempDir + "QcmaRes\\";
+ public static bool areFilesKept = false;
+
+ public static bool isRegModified = false;
}
}