DISM und Abhängigkeiten

2033
Surgical Coder

Gibt es eine Möglichkeit, Abhängigkeiten für jede Funktion aufzulisten, die Sie über DISM installieren möchten?

Wenn ich beispielsweise IIS-ASPNET installieren wollte, muss ich IIS-BasicAuthentication und IIS-Core (oder was auch immer ihre Abhängigkeiten sind) installieren.

Das Letzte, was ich tun möchte, ist, dies alles von Hand zu erledigen!

4

1 Antwort auf die Frage

8
Darth Android

Welche Windows-Version? Hier sind die in Windows 7 verfügbaren Pakete / Funktionen, die sich auf IIS beziehen, als umgekehrter Abhängigkeitsbaum dargestellt (für Kinder ist es erforderlich, dass ihr übergeordnetes Element installiert wird. Die Quelle stellte es so dar, und ich habe keine Zeit, es richtig umzukehren jetzt):

IIS-HostableWebCore IIS-WebServerRole +-IIS-FTPServer | +-IIS-FTPExtensibility | +-IIS-FTPSvc | `-IIS-FTPExtensibility +-IIS-WebServer | +-IIS-ApplicationDevelopment | | +-IIS-ASP | | +-IIS-ASPNET | | +-IIS-CGI | | +-IIS-ISAPIExtensions | | | +-IIS-ASP | | | +-IIS-ASPNET | | | `-MSMQ-HTTP | | +-IIS-ISAPIFilter | | | `-IIS-ASPNET | | +-IIS-NetFxExtensibility | | | +-IIS-ASPNET | | | +-MSMQ-HTTP | | | `-WCF-HTTP-Activation | | `-IIS-ServerSideIncludes | +-IIS-CommonHttpFeatures | | +-IIS-DefaultDocument | | | +-IIS-ASPNET | | | `-MSMQ-HTTP | | +-IIS-DirectoryBrowsing | | | `-MSMQ-HTTP | | +-IIS-HttpErrors | | | `-MSMQ-HTTP | | +-IIS-HttpRedirect | | | `-MSMQ-HTTP | | +-IIS-StaticContent | | | +-IIS-WebDAV | | | `-MSMQ-HTTP | | `-IIS-WebDAV | +-IIS-HealthAndDiagnostics | | +-IIS-CustomLogging | | +-IIS-HttpLogging | | | `-MSMQ-HTTP | | +-IIS-HttpTracing | | | `-MSMQ-HTTP | | +-IIS-LoggingLibraries | | | `-MSMQ-HTTP | | +-IIS-ODBCLogging | | `-IIS-RequestMonitor | | `-MSMQ-HTTP | +-IIS-Performance | | +-IIS-HttpCompressionDynamic | | `-IIS-HttpCompressionStatic | | `-MSMQ-HTTP | `-IIS-Security | +-IIS-BasicAuthentication | +-IIS-ClientCertificateMappingAuthentication | +-IIS-DigestAuthentication | +-IIS-IISCertificateMappingAuthentication | +-IIS-IPSecurity | +-IIS-RequestFiltering | | +-IIS-ASP | | `-IIS-NetFxExtensibility | | +-IIS-ASPNET | | `-WCF-HTTP-Activation | +-IIS-URLAuthorization | `-IIS-WindowsAuthentication `-IIS-WebServerManagementTools +-IIS-IIS6ManagementCompatibility | +-IIS-LegacyScripts | +-IIS-LegacySnapIn | +-IIS-Metabase | | +-IIS-LegacyScripts | | +-IIS-LegacySnapIn | | `-MSMQ-HTTP | `-IIS-WMICompatibility | `-IIS-LegacyScripts +-IIS-ManagementConsole | `-MSMQ-HTTP +-IIS-ManagementScriptingTools `-IIS-ManagementService 

Quelle

Es waren hauptsächlich alle Fenster, die DISM verwendeten (7 und 8 bei der Arbeit), danke! Surgical Coder vor 10 Jahren 0
Wie haben Sie diesen Baum entwickelt? nebffa vor 7 Jahren 0
@nebffa Überprüfen Sie den Quelllink unter dem Baum. Paketpfade haben den Namen "A \ B \ C \ PackageName", wobei für "PackageName" die Pakete "C", "B" und "A" ebenfalls installiert werden müssen. Darth Android vor 7 Jahren 1