top of page

AppSense DesktopNow - Windows Server 2012 Pre-requisites using PowerShell

Below I have detailed the commands to install the DesktopNow prereqs for Windows Server 2012.

The .NET Framework 3.5 isn’t part of the base image, instead the required media is downloaded from the Internet. If you don’t have an Internet connection you can specify the source location. The steps below assume that the Windows Server 2012 Source is at hand – the media contains the framework source files within the D:\sources\sxs folder.

It also assumes that you have no features or roles installed, running all the command won’t be an issue, any roles or features that are installed are skipped. In addition, adding the roles will install any pre-re features (and vice versa) which speeds up the commands below.

If you have the GUI not core version of 2012 installed then you will already have .NET Framework 4.5 Features installed.

Add-WindowsFeature NET-Framework-Features -Source D:\sources\sxs

Add-WindowsFeature Web-Server

Add-WindowsFeature Web-Security

Add-WindowsFeature Web-Basic-Auth

Add-WindowsFeature Web-IP-Security

Add-WindowsFeature Web-Windows-Auth

Add-WindowsFeature Web-App-Dev

Add-WindowsFeature Web-Net-Ext

Add-WindowsFeature Web-Net-Ext45

Add-WindowsFeature Web-Asp-Net

Add-WindowsFeature Web-Asp-Net45

Add-WindowsFeature Web-ISAPI-Ext

Add-WindowsFeature Web-ISAPI-Filter

Add-WindowsFeature Web-Mgmt-Tools

Add-WindowsFeature Web-Mgmt-Console

Add-WindowsFeature Web-Mgmt-Compat

Add-WindowsFeature NET-Framework-Core

Add-WindowsFeature NET-HTTP-Activation

Add-WindowsFeature NET-Framework-45-Features

Add-WindowsFeature NET-Framework-45-Core

Add-WindowsFeature NET-Framework-45-ASPNET

Add-WindowsFeature NET-WCF-Services45

Add-WindowsFeature NET-WCF-HTTP-Activation45

Add-WindowsFeature BITS

Add-WindowsFeature BITS-IIS-Ext

Add-WindowsFeature WAS

Add-WindowsFeature WAS-Process-Model

Add-WindowsFeature WAS-NET-Environment

Add-WindowsFeature WAS-Config-APIs

Enjoy

Featured Posts
Recent Posts
Search By Tags

© 2015 v23c LTD

bottom of page