Como saber de qual pacote / atualização da Microsoft um arquivo .dll vem?

1

Há muitas solicitações X.dll específicas ausentes aqui. Eu gostaria de saber como chegar onde um arquivo .dll deve vir, especialmente um microsoft .dll.

Eu tenho um erro de assembly ausente no meu programa, e não tenho certeza sobre o download de um site .dll aleatório (eu não o encontrei de qualquer maneira).

Aqui está a classe que preciso usar
Arquivo ausente: Microsoft.UpdateServices.Administration.dll

Como saber qual atualização vem com este arquivo? Não encontrei nenhuma informação sobre isso.
Onde posso baixar com segurança os arquivos .dll ausentes?

Estou usando o .NET Framework 4.6.1 e o Powershell 4.0

    
por Svart 18.05.2016 / 10:15

1 resposta

1

Arquivo ausente: Microsoft.UpdateServices.Administration.dll

Você precisa instalar o Console de Administração do WSUS 3.0 SP2 .

You need to explicitly install the WSUS Admin Console on the development machine (to reference it), and you must install the WSUS Admin Console on any machine that is intended to use your project.

The DLL is not licensed for redistribution, but it must physically exist on the local machine. The only way to get it (legally) is to install the WSUS Admin Console. The console requires the .NET Framework v2.0 and an authenticated connection to the WSUS server (i.e. the console machine and the WSUS server must have a domain trust relationship).

Origem DLL de administração do Windows Update Services

Este arquivo Microsoft.UpdateServices.Administration.dll também é instalado como parte do Windows Server Update Services Service Pack 1:

enter image description here

Fonte Descrição do Windows Server Update Services Service Pack 1

    
por 18.05.2016 / 11:47