mirror of
https://github.com/ReneLergner/WPinternals.git
synced 2026-06-19 22:00:12 +10:00
Enhancements
- Improved error messages - Added shutdown functionality from mass stoage - Fixed an issue where 9006 would incorrectly be used for rebooting from mass storage - Added support for gathering security information from older flash apps - Added a new indicator in the empty view when a phone in bootloader mode is detected - Fixed an issue where interrupting the bootloader may fail - Added more checks to some functions - Started to work on a bootloader view - Fixed an issue where x50 phones in label mode would not get detected once being disconnected - Added logging for Qualcomm Emergency Charging mode - General bug fixes
This commit is contained in:
+11
-7
@@ -52,17 +52,21 @@ namespace WPinternals
|
||||
if (Environment.GetCommandLineArgs().Count() > 1)
|
||||
CommandLine.OpenConsole();
|
||||
|
||||
if (!mutex.WaitOne(0, false))
|
||||
try
|
||||
{
|
||||
if (Environment.GetCommandLineArgs().Count() > 1)
|
||||
if (!mutex.WaitOne(0, false))
|
||||
{
|
||||
Console.WriteLine("Windows Phone Internals is already running");
|
||||
CommandLine.CloseConsole();
|
||||
if (Environment.GetCommandLineArgs().Count() > 1)
|
||||
{
|
||||
Console.WriteLine("Windows Phone Internals is already running");
|
||||
CommandLine.CloseConsole();
|
||||
}
|
||||
else
|
||||
MessageBox.Show("Windows Phone Internals is already running.", "Windows Phone Internals", MessageBoxButton.OK, MessageBoxImage.Exclamation);
|
||||
Environment.Exit(0);
|
||||
}
|
||||
else
|
||||
MessageBox.Show("Windows Phone Internals is already running.", "Windows Phone Internals", MessageBoxButton.OK, MessageBoxImage.Exclamation);
|
||||
Environment.Exit(0);
|
||||
}
|
||||
catch (AbandonedMutexException) { };
|
||||
|
||||
Registration.CheckExpiration();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user