HomeVb.Net

VB.NET How to Add My Application to Windows Startup

VB.NET for beginners : How to create Startup Event Program and add My Application to Windows Startup?

Belajar Vb.Net : Menampilkan Multiple Columns ComboBox Database MySQL
VB.NET Pemula : Membuat Internet Download Manager + BackgroundWorker + ProgressBar
Programming VB.NET : Aplikasi Chat Sederhana Network Programming Client/Server
VB.NET Tutorials : Make your program Run at windows startup, today i will show you how to create simple application using vb.net that make our application Run automatically at windows is startup. The application will automatically by writing a value entry (a complete name/value pair) to any of the following registry keys.

Please read :
  1. VB.NET - Create simple Internet Download Manager
  2. VB.Net - Setup Wizard using Install Shield

Make your application run at Startup

Just create a new project or one of your existing project and write all source code below
Add My Application to Windows Startup

Run at Windows Startup with writing a value entry to Registry Keys :


'the code will Write to the register
Dim registryKey As Microsoft.Win32.RegistryKeyregKey
registryKey = Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\Run", True)
registryKey.SetValue("AppName", "InstallationPath")
registryKey.Close()

To delete from Registry just write this code :


'the code will Write to the register
Dim registryKey As Microsoft.Win32.RegistryKeyregKey
registryKey = Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows\CurrentVersion\Run", True)
registryKey.DeleteValue("AppName", False)
registryKey.Close()

Add your Application to Startup with Copying files to Startup Folder :


Dim Myfile As New FileInfo(application.startuppath)
' codpy it to the startup folder
Myfile.CopyTo(My.Computer.FileSystem.SpecialDirectories.Programs + "\startup\myapp.exe")

See you next lessons

Feel free to code it up and send us a pull request.

Hi everyone, let's me know how much this lesson can help your work. Please Subscribe and Follow Our Social Media 'kodeajaib[dot]com' to get Latest tutorials and will be send to your email everyday for free!, Just hit a comment if you have confused. Nice to meet you and Happy coding :) all ^^



Follow by E-Mail


COMMENTS

DISQUS
Name

ADO.NET,3,Ajax,6,Android,9,AngularJS,4,ASP.NET,4,Blogger Tutorials,7,Bootstrap,7,C++,1,Codeigniter,2,Cplusplus,6,Crystal Report,6,CSharp,25,Ebook Java,2,FlyExam,1,FSharp,3,Game Development,2,Java,35,JDBC,2,Laravel,89,Lumen,2,MariaDB,2,Ms Access,3,MySQL,31,ODBC,6,OleDB,1,PHP,14,PHP Framework,6,PHP MYSQLI,9,PHP OOP,5,Python,8,Python 3,4,SQL Server,4,SQLite,4,Uncategorized,5,Vb 6,2,Vb.Net,89,Video,48,Vue Js,4,WPF,2,Yii,3,
ltr
item
KODE AJAIB: VB.NET How to Add My Application to Windows Startup
VB.NET How to Add My Application to Windows Startup
VB.NET for beginners : How to create Startup Event Program and add My Application to Windows Startup?
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbE5EVO89iiRUfpT59wieuuVhb16h85h0cg33lC6JxXpxlf88Iw3wXbKv5YQA6D85XxWniJ8AYd1usrxbViW7jIFVhftzit6a-bHzfNQrpL5_7OEJ-xKzFaPWlmQ9AuBpxDMAWjeEIVxk/s320/add-to-Startup.jpg
https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjbE5EVO89iiRUfpT59wieuuVhb16h85h0cg33lC6JxXpxlf88Iw3wXbKv5YQA6D85XxWniJ8AYd1usrxbViW7jIFVhftzit6a-bHzfNQrpL5_7OEJ-xKzFaPWlmQ9AuBpxDMAWjeEIVxk/s72-c/add-to-Startup.jpg
KODE AJAIB
https://scqq.blogspot.com/2016/07/how-to-add-my-application-to-startup.html
https://scqq.blogspot.com/
https://scqq.blogspot.com/
https://scqq.blogspot.com/2016/07/how-to-add-my-application-to-startup.html
true
3214704946184383982
UTF-8
Loaded All Posts Not found any posts VIEW ALL Readmore Reply Cancel reply Delete By Home PAGES POSTS View All RECOMMENDED FOR YOU LABEL ARCHIVE SEARCH ALL POSTS Not found any post match with your request Back Home Sunday Monday Tuesday Wednesday Thursday Friday Saturday Sun Mon Tue Wed Thu Fri Sat January February March April May June July August September October November December Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec just now 1 minute ago $$1$$ minutes ago 1 hour ago $$1$$ hours ago Yesterday $$1$$ days ago $$1$$ weeks ago more than 5 weeks ago Followers Follow THIS CONTENT IS PREMIUM Please share to unlock Copy All Code Select All Code All codes were copied to your clipboard Can not copy the codes / texts, please press [CTRL]+[C] (or CMD+C with Mac) to copy