
:max_bytes(150000):strip_icc()/startup2-7e001e6d069844f3b86e10b76af4629a.jpg)
How can i see that winform after login to windows?(I need GUI) I can see that app is running in task manager. The problem is that file is executed on startup, but after login to windows i can not see it's form is running.

LblInfo.Content = "The application will run at startup" RkApp.SetValue("StartupWithWindows", ().Location) Private void btnConfirm_Click(object sender, RoutedEventArgs e) rkApp.DeleteValue("StartupWithWindows", false) rkApp.SetValue("StartupWithWindows",().Location) LblInfo.Content = "The application runs at startup" LblInfo.Content = "The application doesn't run at startup" The value doesn't exist, the application is not set to run at startup, Check box If (rkApp.GetValue("StartupWithWindows") = null) This.Topmost is just to keep my app on the top of other windows, you will also need to add a using statement " using Microsoft.Win32 ", StartupWithWindows is my application's name public partial class MainWindow : Window IsAdmin = principal.IsInRole(WindowsBuiltInRole.Administrator) įor WPF: (where lblInfo is a label, chkRun is a checkBox) WindowsPrincipal principal = new WindowsPrincipal(user) WindowsIdentity user = WindowsIdentity.GetCurrent() Public static void RemoveApplicationFromAllUserStartup() Key.DeleteValue("My ApplicationStartUpDemo", false) Public static void RemoveApplicationFromCurrentUserStartup() Using (RegistryKey key = ("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true)) Public static void AddApplicationToAllUserStartup() Key.SetValue("My ApplicationStartUpDemo", "\"" + ().Location + "\"") Public static void AddApplicationToCurrentUserStartup() Remove the value from the registry so that the application doesn't start RkApp.SetValue("MyApp", Application.ExecutablePath) Add the value in the registry so that the application runs at startup Private void btnOk_Click(object sender, EventArgs e) The value exists, the application is set to run at startup The value doesn't exist, the application is not set to run at startup Check to see the current state (running at startup or not) RegistryKey rkApp = ("SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Run", true) The path to the key where Windows looks for startup applications Code is here (Win form app): using System
