We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a3224e commit 4ab6129Copy full SHA for 4ab6129
1 file changed
ReReShade/Program.cs
@@ -1,4 +1,5 @@
1
using IniParser;
2
+using System.ComponentModel;
3
using System.Diagnostics;
4
5
Console.Write("Enter the path to your FFXIV installation: ");
@@ -141,8 +142,16 @@
141
142
UseShellExecute = true
143
}
144
};
- process.Start();
145
- process.WaitForExit();
+ try
146
+ {
147
+ process.Start();
148
+ process.WaitForExit();
149
+ }
150
+ catch (Win32Exception)
151
152
+ Console.WriteLine("Elevation / execution of GShade uninstaller failed. Uninstall GShade manually, then hit Enter to continue.");
153
+ Console.ReadLine();
154
155
156
else
157
{
0 commit comments