开发者

Change startup order c#

开发者 https://www.devze.com 2022-12-12 06:43 出处:网络
How do I change the startup list? Basically I have a program that is a computer locking system and when I enter it into the registry to s开发者_如何学Ctart up when login, it is like the last thing to

How do I change the startup list? Basically I have a program that is a computer locking system and when I enter it into the registry to s开发者_如何学Ctart up when login, it is like the last thing to open.


Which startup list are you using to launch your application?

There are actually quite a few startup lists (see below). The order of application launch within a given list is not configurable (e.g. there is no way to choose which application in the Startup Folder launch first) but, the order in which the startup lists are iterated is fixed (e.g. Applications in the Common Startup Folder will always launch first, before applications in the Startup Folder).

It sounds like you want to launch your application on user login, so listing your application path in the All Users-Run registry key should ensure that it launches fairly soon after logon.

Add a string (REG_SZ) value to the HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run registry key with the path to your application as the data.

(Aside: Background reading on the arcane terminology of the Windows registry)

STARTUP ORDER FOR WINDOWS 9X/ME

  1. config.sys
  2. autoexec.bat
  3. wininit.ini
  4. winstart.bat
  5. system.ini
  6. win.ini
  7. All Users-RunOnce (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce)
  8. All Users-RunServices (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServices)
  9. All Users-RunOnce (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce)
  10. All Users-Run (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run)
  11. All Users-RunOnceEx (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnceEx)
  12. All Users-RunEx (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunEx)
  13. Current User-RunOnce (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce)
  14. Current User-Run (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run)
  15. Current User-RunOnceEx (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnceEx)
  16. Current User-RunEx (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunEx)
  17. Common Startup Folder
  18. Startup Folder

STARTUP ORDER FOR WINDOWS NT4/2000/XP

  1. BootExecute (`HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\BootExecute
  2. Services
  3. User enters a password and logon to the system
  4. UserInit (HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\UserInit)
  5. Shell (HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Shell)
  6. All Users-RunOnce (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce)
  7. All Users-Run (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run)
  8. All Users-RunOnceEx (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnceEx)
  9. All Users-RunEx (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunEx)
  10. Current User-RunOnce (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce)
  11. Current User-Run (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run)
  12. Current User-RunOnceEx (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnceEx)
  13. Current User-RunEx (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunEx)
  14. Common Startup Folder
  15. Startup Folder

(Source)

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号