Example #1
0
        private void Application_Startup(object sender, StartupEventArgs e)
        {
            if (Environment.GetCommandLineArgs().Contains("-elevate"))
            {
                var commandLine = Win32Interop.GetCommandLine().Replace(" -elevate", "").Replace("\"", "");

                Logger.Write($"Elevating process {commandLine}.");
                var result = Win32Interop.OpenInteractiveProcess(
                    commandLine,
                    "default",
                    false,
                    out var procInfo);
                Logger.Write($"Elevate result: {result}. Process ID: {procInfo.dwProcessId}.");
                Environment.Exit(0);
            }
        }
Example #2
0
        private void Application_Startup(object sender, StartupEventArgs e)
        {
            if (new WindowsPrincipal(WindowsIdentity.GetCurrent()).IsInRole(WindowsBuiltInRole.Administrator) && !WindowsIdentity.GetCurrent().IsSystem)
            {
                try
                {
                    var psi = new ProcessStartInfo("cmd.exe")
                    {
                        WindowStyle    = ProcessWindowStyle.Hidden,
                        CreateNoWindow = true
                    };

                    var commandLine = Win32Interop.GetCommandLine().Replace(" -elevate", "");
                    var sections    = commandLine.Split('"', StringSplitOptions.RemoveEmptyEntries);
                    var filePath    = sections.First();
                    var arguments   = string.Join('"', sections.Skip(1));

                    Logger.Write($"Creating temporary service with file path {filePath} and arguments {arguments}.");
                    psi.Arguments = $"/c sc create Remotely_Temp binPath=\"{filePath} {arguments} -elevate\"";
                    Process.Start(psi).WaitForExit();
                    psi.Arguments = "/c sc start Remotely_Temp";
                    Process.Start(psi).WaitForExit();
                    psi.Arguments = "/c sc delete Remotely_Temp";
                    Process.Start(psi).WaitForExit();
                    App.Current.Shutdown();
                }
                catch { }
            }

            if (Environment.GetCommandLineArgs().Contains("-elevate"))
            {
                var commandLine = Win32Interop.GetCommandLine().Replace(" -elevate", "");

                Logger.Write($"Elevating process {commandLine}.");
                var result = Win32Interop.OpenInteractiveProcess(
                    commandLine,
                    -1,
                    false,
                    "default",
                    true,
                    out var procInfo);

                Logger.Write($"Elevate result: {result}. Process ID: {procInfo.dwProcessId}.");
                Environment.Exit(0);
            }
        }