Is it possible that C # autorun will automatically add the application to the startup folder. Now I can download and install the C # application using autorun, but the application does not load automatically when windows are reloaded. How to do it?
You can use it:
RegistryKey rkey = Registry.CurrentUser.CreateSubKey(@"Software\Microsoft\Windows\CurrentVersion\Run"); rkey.SetValue("YourApplicationName", Application.ExecutablePath);
If you want to run some applications <I suggest you switch to Windows Services :)
Active Setup, , HKLM
Active Setup is a Microsoft installation technology used to download and install versions 4-6 for Internet Explorer. It was designed to selectively download and install signed Internet Explorer components over the Internet. This significantly reduced the amount of data downloaded, as well as the time required to update. Active Setup can also resume partially completed downloads from where they were interrupted.
Source: https://habr.com/ru/post/1776253/More articles:Design for cross-platform classes in C # - designProtecting data in a specific domain in Rails - ruby-on-railsКаков наилучший способ хранения значений node (i).x и node (i).y в С++? - c++How to get a C # Windows control to automatically update if the database table is updated / inserted? - c #pause / start AVAudioPlayer without glitchy pops - iosHow to set up your own remote debugging? - c ++Adding an Application to Run Vista or Win7 - vb.netIs there a multi-valued keystore? - databaseA few questions about the Qt file - c ++Are mysql column data types important to maintain efficiency? - performanceAll Articles