We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6d2ff8 commit 79355d5Copy full SHA for 79355d5
src/XIVLauncher.Common/Game/Patch/PatchInstaller.cs
@@ -57,6 +57,12 @@ public void StartIfNeeded(bool external = true)
57
if (!EnvironmentSettings.IsNoRunas && Environment.OSVersion.Version.Major >= 6)
58
startInfo.Verb = "runas";
59
60
+ if (!Debugger.IsAttached)
61
+ {
62
+ startInfo.CreateNoWindow = true;
63
+ startInfo.WindowStyle = ProcessWindowStyle.Hidden;
64
+ }
65
+
66
startInfo.Arguments = $"rpc {rpcName}";
67
68
State = InstallerState.NotReady;
0 commit comments