Where the OS store the status of startup items in Task Manager

Discussion in 'Windows 8' started by ciwei100000, Oct 30, 2013.

  1. ciwei100000

    ciwei100000 MDL Novice

    Nov 12, 2012
    16
    0
    0
    #1 ciwei100000, Oct 30, 2013
    Last edited: Oct 30, 2013
    I can use windows task manager to enable or disable the startup items. But when I uninstall and reinstall the program, the related startup item re-appears with the same status of enable or disable as that before uninstalling. So, I wonder where does the system store the status information. I try to search the regedit but no results.

    Untitled.png

    I mean the status (show in the pic) of the startup items rather than the items themselves. Please do not tell me about the "startup" folders or "HKLM\****\RUN" key.
     
  2. coleoptere2007

    coleoptere2007 MDL Guru

    Apr 8, 2008
    3,311
    1,938
    120
    Don't know really what you mean but perhaps try run and type msconfig or in control panel/ administration tool / services if it's a service
     
  3. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,681
    18,589
    340
    #3 Tito, Oct 30, 2013
    Last edited by a moderator: Apr 20, 2017
    Code:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
    – These programs automatically start when any user is logged in. It is used for all users on this computer
     
    [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Run]
    – The programs here automatically start when the current user logs in. It is used only for current logoned user.
     
  4. ciwei100000

    ciwei100000 MDL Novice

    Nov 12, 2012
    16
    0
    0
    Not the services. I post a pic. Can I modify the status through regedit (to enable or disable but not delete it)?
     
  5. ciwei100000

    ciwei100000 MDL Novice

    Nov 12, 2012
    16
    0
    0
    #6 ciwei100000, Oct 30, 2013
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Thank you but do you know how to change their status manually?(not to delete them)

    Here I can find the startup items but no status information.
     
  6. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,219
    84,888
    340
    #7 abbodi1406, Oct 31, 2013
    Last edited by a moderator: Apr 20, 2017
    Enabled:
    Code:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run]
    "LManager"=hex:02,00,00,00,00,00,00,00,00,00,00,00
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run]
    "IDMan"=hex:02,00,00,00,00,00,00,00,00,00,00,00
    
    Disabled:
    Code:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run]
    "LManager"=hex:03,00,00,00,C8,7D,55,06,D2,D5,CE,01
    
    [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StartupApproved\Run]
    "IDMan"=hex:03,00,00,00,88,94,B8,85,D2,D5,CE,01
    
     
  7. ciwei100000

    ciwei100000 MDL Novice

    Nov 12, 2012
    16
    0
    0
    #8 ciwei100000, Oct 31, 2013
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Great! Thank you very much!