Windows – How to find out why Windows Server feature installation failed

windowswindows-server-2012-r2

I am trying to install SMTP Server feature in Windows Server 2012 R2. I am using "Add Roles and Features Wizard". After clicking the install button, it shows red circle with white "x".

Wizard

I assume that it means that installation failed. However, I cannot find any reason why it failed. I've also checked Application, Setup and System logs in Event Viewer. But there is no record regarding the SMTP Server installation.

Best Answer

Try install it via powershell:

Add-WindowsFeature [name_of_feature]

This case: Add-WindowsFeature SMTP-Server

https://technet.microsoft.com/en-us/library/cc732263.aspx

List of available you can get by Get-WindowsFeature