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 02de9d6 commit dd0899fCopy full SHA for dd0899f
Flow.Launcher/App.xaml.cs
@@ -71,6 +71,13 @@ public App()
71
return;
72
}
73
74
+ // Check if the application is running as administrator
75
+ if (_settings.AlwaysRunAsAdministrator && !Win32Helper.IsAdministrator())
76
+ {
77
+ RestartApp(true);
78
+ return;
79
+ }
80
+
81
// Configure the dependency injection container
82
try
83
{
0 commit comments