Différences dans l'installation de base entre IIS 7.5 et IIS 8.0/8.5 / Differences in the default setup between IIS 7.5 and IIS 8.0 / 8.5

English version

Peut-être avez-vous remarqué les deux petites différences entre l'installation de base d'IIS entre IIS 7.5 (Windows 2008 R2) et IIS 8.0/8.5 (respectivement sous Windows 2012 et Windows 2012 R2). Si ce n'est pas le cas les voici dans cet article.

Sous Windows 2008 R2, lorsque vous lancez l'installation de base (illustrée ici via PowerShell en mode "simulation" : Add-WindowsFeature Web-Server -whatif) vous obtenez ceci :

iis75setup

alors que sous Windows 2012 R2 (et Windows 2012) vous obtenez ceci :

iis85setup

Et oui deux petits "Role Services" ont disparus : "Management Tools" (la console IIS) et "Request Monitoring" (fonctionnalité très pratique pour voir les requêtes en cours d'exécution via la console et/ou Powershell). Si vous désirez reproduire l'installation de base de Windows 2008 R2 / IIS 7.5, il faut dorénavant lancer la commande suivante : Add-WindowsFeature web-server,web-request-monitor -IncludeManagementTools iis85setup2

Laurent.


English Version Coming Soon ...


Version française

Perhaps you noticed the two small differences between the default setup of IIS between IIS 7.5 (Windows 2008 R2) and IIS 8.0 / 8.5 (respectively Windows 2012 and Windows 2012 R2). If this is not the case read this article.

In Windows 2008 R2, when you start the basic installation (shown here via PowerShell in "simulation" mode : Add-WindowsFeature Web-Server -whatif) you get this:

iis75setup

while Windows 2012 R2 (and Windows 2012), you get this:

iis85setup

Two "Role Services" disappeared : "Management Tools" (IIS console) and "Request Monitoring" (very useful feature to monitor running requests via the console and / or Powershell). If you want to replicate the default setup of Windows 2008 R2 / IIS 7.5, you have now to run the following command: Add-WindowsFeature Web-server, web-request-monitor -IncludeManagementTools iis85setup2

Laurent