افزودن برنامه به استارت آپ ویندوز

using Microsoft.Win32;



public static void AddToStartUpKey(string AppName, string AppPath)
{
RegistryKey key = Registry.LocalMachine.OpenSubKey(@"Software\Micros oft\Windows\CurrentVersion\Run",
true);
key.SetValue(AppName, AppPath);
}

public static void RemoveFromStartUpKey(string AppName)
{
RegistryKey key = Registry.LocalMachine.OpenSubKey(@"Software\Micros oft\Windows\CurrentVersion\Run",
true);
key.DeleteValue(AppName, false);
}