This commit is contained in:
seraphima
2024-05-21 17:45:07 +02:00
parent c157e64f28
commit ce19c4e5ff
4 changed files with 18 additions and 8 deletions

View File

@@ -348,7 +348,7 @@ namespace ProjectsEditor.ViewModels
p.StartInfo = new ProcessStartInfo(launchParam);
p.StartInfo.Arguments = app.CommandLineArguments;
p.StartInfo.UseShellExecute = true;
p.StartInfo.Verb = "runas"; // administrator privilages, some apps start only that way
p.StartInfo.Verb = "runas"; // administrator privileges, some apps start only that way
p.Start();
});
newlyStartedApps.Add(app);