When setting up a Microsoft Application Virtualization (AppV) management server you need to prepare your OS with couple of prerequisites (mainly for IIS and SQL server database engine).
I am running the AppV manament server on a Windows Server 2008 R2 release. There are several ways to install the IIS features but I am using the dism.exe command.
Dism.exe has also the online feature which allows you to modify running system. With following Dism.exe command line I am adding the required IIS components for AppV server. I don’t need to run the Server Manager on Windows Server 2008 R2 and I can achieve this from command line and script.
dism /online /Enable-Feature /featurename:IIS-ApplicationDevelopment /featurename:IIS-ASPNET /featurename:IIS-CommonHttpFeatures /featurename:IIS-DefaultDocument /featurename:IIS-DirectoryBrowsing /featurename:IIS-HealthAndDiagnostics /featurename:IIS-HttpCompressionStatic /featurename:IIS-HttpErrors /featurename:IIS-HttpLogging /featurename:IIS-IIS6ManagementCompatibility /featurename:IIS-ISAPIExtensions /featurename:IIS-ISAPIFilter /featurename:IIS-LegacyScripts /featurename:IIS-LegacySnapIn /featurename:IIS-ManagementConsole /featurename:IIS-ManagementScriptingTools /featurename:IIS-ManagementService /featurename:IIS-Metabase /featurename:IIS-NetFxExtensibility /featurename:IIS-Performance /featurename:IIS-RequestFiltering /featurename:IIS-RequestMonitor /featurename:IIS-Security /featurename:IIS-StaticContent /featurename:IIS-WebServer /featurename:IIS-WebServerManagementTools /featurename:IIS-WebServerRole /featurename:IIS-WindowsAuthentication /featurename:IIS-WMICompatibility
Leave a comment