🐛 Fix Permission Problems when installing the Printer as user without admin privileges.

This commit is contained in:
Gerrit 2023-08-03 11:27:26 +02:00
parent 49ee9b1079
commit 1dd12c02a5

View file

@ -63,7 +63,14 @@ namespace AmagnoVirtualPrinter.SetupDriver
try
{
Console.WriteLine(exe + " " + args);
using(var proc = Process.Start(exe, args))
var processStartInfo = new ProcessStartInfo(exe, args)
{
Verb = "runas",
UseShellExecute = true
};
using(var proc = Process.Start(processStartInfo))
{
proc?.WaitForExit();
}