Change C # launch order

Possible duplicate:
Open the form before entering Windows C #

Hey, how do I change the startup list? Basically, I have a program that is a system to lock my computer, and when I enter it into the registry to start when I log in, it seems like the last thing to open, Thanks.

+3
source share
1 answer

What startup list do you use to launch the application?

(. ). (, , ), , , (, , ).

, , All Users-Run , .

(REG_SZ) HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run .

( : Windows)

WINDOWS 9X/ME

  • config.sys
  • autoexec.bat
  • Wininit.ini
  • Winstart.bat
  • system.ini
  • win.ini
  • -RunOnce (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServicesOnce)
  • -RunServices (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunServices)
  • -RunOnce (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce)
  • -Run (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run)
  • -RunOnceEx (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnceEx)
  • -RunEx (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunEx)
  • -RunOnce (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce)
  • (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run)
  • -RunOnceEx (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnceEx)
  • RunEx (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunEx)

WINDOWS NT4/2000/XP

  • BootExecute (`HKLM\SYSTEM\CurrentControlSet\Control\Session Manager\BootExecute
  • UserInit (HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\UserInit)
  • Shell (HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon\Shell)
  • -RunOnce (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnce)
  • -Run (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Run)
  • -RunOnceEx (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunOnceEx)
  • -RunEx (HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\RunEx)
  • -RunOnce (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnce)
  • (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Run)
  • -RunOnceEx (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunOnceEx)
  • RunEx (HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\RunEx)

()

+9

Source: https://habr.com/ru/post/1723537/


All Articles