Para iniciar o Gerenciador de Credenciais, escreva isto na janela do prompt de comando:
net start VaultSvc
Observação: você não pode iniciar um serviço se o tipo de inicialização estiver desativado.
Para parar o gerenciador de credenciais:
net stop VaultSvc
Para alterar o tipo de inicialização:
Automático:
REG adicionar "HKLM \ SYSTEM \ CurrentControlSet \ serviços \ VaultSvc" / v Iniciar / t REG_DWORD / d 2 / f
Manual:
REG adicionar "HKLM \ SYSTEM \ CurrentControlSet \ serviços \ VaultSvc" / v Iniciar / t REG_DWORD / d 3 / f
Desabilitado:
REG adicionar "HKLM \ SYSTEM \ CurrentControlSet \ serviços \ VaultSvc" / v Iniciar / t REG_DWORD / d 4 / f
Automático (início atrasado):
REG adicionar "HKLM \ SYSTEM \ CurrentControlSet \ serviços \ VaultSvc" / v Iniciar / t REG_DWORD / d 2 / f
Nota: Quando você muda para Automático (Início Atrasado), uma nova chave DelayedAutostart é criada com o valor 1.
REG adicionar "HKLM \ SYSTEM \ CurrentControlSet \ serviços \ VaultSvc" / v DelayedAutostart / t REG_DWORD / d 1 / f
Quando você muda para Automático de Automático (Início Atrasado), DelayedAutostart altera o valor para 0.
REG adicionar "HKLM \ SYSTEM \ CurrentControlSet \ serviços \ VaultSvc" / v DelayedAutostart / t REG_DWORD / d 0 / f