mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix argument sequence issue
This commit is contained in:
parent
f9b2be1fc7
commit
30deb6da99
1 changed files with 1 additions and 1 deletions
|
|
@ -808,7 +808,7 @@ namespace Flow.Launcher.Infrastructure
|
||||||
/// Inspired by <see href="https://github.com/jay/RunAsDesktopUser">
|
/// Inspired by <see href="https://github.com/jay/RunAsDesktopUser">
|
||||||
/// Document: <see href="https://learn.microsoft.com/en-us/archive/blogs/aaron_margosis/faq-how-do-i-start-a-program-as-the-desktop-user-from-an-elevated-app">
|
/// Document: <see href="https://learn.microsoft.com/en-us/archive/blogs/aaron_margosis/faq-how-do-i-start-a-program-as-the-desktop-user-from-an-elevated-app">
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public static unsafe bool RunAsDesktopUser(string app, string cmdLine, string currentDir, out string errorInfo)
|
public static unsafe bool RunAsDesktopUser(string app, string currentDir, string cmdLine, out string errorInfo)
|
||||||
{
|
{
|
||||||
STARTUPINFOW si = new();
|
STARTUPINFOW si = new();
|
||||||
PROCESS_INFORMATION pi = new();
|
PROCESS_INFORMATION pi = new();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue