O que é a árvore de dependências de serviço do Windows 7?

7

Existe um gráfico ou uma lista dos serviços incorporados do Windows 7 Profesional e suas dependências? Eu fiz isso manualmente no passado com o Windows XP quando eu tinha tempo, mas parece haver mais de uma dúzia de serviços no Windows 7 e o tempo não está do meu lado. Uma busca rápida no google não resultou em nada.

Eu estou tentando descobrir por que o meu log de eventos está mostrando tantos serviços são iniciados e parando relacionados a este pergunta .

EDITAR: Alguma atualização?

    
por Chad Harrison 13.07.2012 / 20:12

2 respostas

2

Um bom começo seria os grupos de serviços . Os serviços do Windows estão dispostos dentro dos grupos para serem carregados de acordo com as dependências:

A Service Group is a collection of similar services that are loaded together at startup. Most services that appear in the HKEY_LOCAL_MACHINE\CurrentControlSet\Services subkey are part of a Service Group. Windows NT loads one Service Group at a time. Services that are not in a group are loaded after all Service Groups are loaded.

The HKEY_LOCAL_MACHINE\CurrentControlSet\Control\ServiceGroupOrder subkey determines the order in which Service Groups are loaded. The List value is a REG_MULT_SZ entry that specifies the Service Group order.

The HKEY_LOCAL_MACHINE\CurrentControlSet\Control\GroupOrderList subkey determines the order in which services within a Service Group are loaded. Services in a Service Group are assigned a tag, a unique numeric value within a Service Group which determines the service load order. Each value entry in GroupOrderList represents a Service Group. The value of the entry is a series of tags in a specified order. The first entry in this REG_BINARY value is the number of services in the group, followed by the tags in load sequence. If you look at PointerPort you can see that there are 3 services in the group and that the service with tag 02 is loaded first, followed by the service with tag 01 and then tag 03.

At a service level, the HKEY_LOCAL_MACHINE\CurrentControlSet\Services\ServiceName subkeys contain:

Group - this REG_SZ specifies the Service Group name that a service belongs to.

tag - this REG_DWORD specifies the service load sequence.

DependOnGroup - this REG_MULTI_SZ entry defines the Service Groups which must be loaded succesfully before this service loads.

DependOnService - this REG_MULTI_SZ entry defines services that must be loaded successfully before this service loads.

    
por 13.07.2012 / 20:32
1

Era uma vez que eu encontrei uma ferramenta que fazia exatamente o que você está pedindo (quando o Windows XP era novo), mas eu não tenho mais uma cópia e não consigo encontrá-la. Ele não lidou com grupos de serviços, por isso seria de utilidade limitada.

A coisa mais próxima que posso encontrar agora é o Windows Service Dependency Viewer . Não é ideal embora.

    
por 13.07.2012 / 21:00