Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I created a simple dock in VB.NET. Now I want to make it so when the user installs it, the application automatically adds itself to the startup items so that it will start after every system login or restart.

I want the solution to applicable for all OS'es (Windows 7 to Windows 10).

Thanks

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
203 views
Welcome To Ask or Share your Answers For Others

1 Answer

You can do this by using the registry:

This code below adds the application to the startup, in the registry:

'variables
Dim name As String = Application.ProductName
Dim location As String = Application.ExecutablePath
'registry key
Dim regestry As Microsoft.Win32.RegistryKey
'adds key to registry
regestry = Microsoft.Win32.Registry.CurrentUser.OpenSubKey("SOFTWAREMicrosoftWindowsCurrentVersionRun", True)
regestry.SetValue(name, """" & location & """")
regestry.Close()

This requires admin privileges, here is a good tutorial on that: http://www.downloadinformer.com/2014/01/how-to-make-vbnet-application-always.html


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...