C# Program with Admin permission is not starting at windows

190 Views Asked by At

How to make autostart programmatically with admin permission? I tried

using (var registryKey = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@"SOFTWARE\Microsoft\Windows NT\CurrentVersion\AppCompatFlags\Layers", true))
+            {
+                registryKey.SetValue(System.Windows.Forms.Application.ExecutablePath, "RUNASADMIN");
+                registryKey.Flush();
+                registryKey.Close();
+            } 

But even UAC window does not appear.

0

There are 0 best solutions below