Skip to content

Commit 9e8cc66

Browse files
committed
AC Uninstaller download link
1 parent 84e1d40 commit 9e8cc66

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

app/Helpers/AsusService.cs

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -50,21 +50,7 @@ public static bool IsArmouryRunning()
5050

5151
public static void RunArmouryUninstaller()
5252
{
53-
var startInfo = new ProcessStartInfo
54-
{
55-
FileName = @"C:\Program Files\ASUS\Armoury Crate Service\UninstallTool\Armoury Crate Uninstall Tool.exe",
56-
UseShellExecute = true,
57-
Verb = "runas"
58-
};
59-
60-
try
61-
{
62-
Process.Start(startInfo);
63-
}
64-
catch (System.ComponentModel.Win32Exception)
65-
{
66-
Logger.WriteLine("Failed to launch Armoury Crate uninstaller.");
67-
}
53+
Process.Start(new ProcessStartInfo("https://dlcdnets.asus.com/pub/ASUS/mb/14Utilities/Armoury_Crate_Uninstall_Tool.zip") { UseShellExecute = true });
6854
}
6955

7056
public static bool IsOSDRunning()

app/Settings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ public SettingsForm()
301301

302302
private void ButtonArmoury_Click(object? sender, EventArgs e)
303303
{
304-
var dialogResult = MessageBox.Show(this, "Armoury Crate is active, launch official uninstaller app?", "Armoury Crate", MessageBoxButtons.YesNo);
304+
var dialogResult = MessageBox.Show(this, "Armoury Crate is active, download official uninstaller app?", "Armoury Crate", MessageBoxButtons.YesNo);
305305
if (dialogResult == DialogResult.Yes) AsusService.RunArmouryUninstaller();
306306
}
307307

0 commit comments

Comments
 (0)