A simple method
Imports Microsoft.Win32 ... Dim regKey As Microsoft.Win32.RegistryKey regKey = Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\Run",True) regKey.SetValue(Application.ProductName, Application.ExecutablePath) regKey.Close() HopHope it helps