When you start to play with Windows Server 2016 and IIS 10, you’ll get an error when you try to install the IIS URL Rewrite Module in IIS. The error occurs because the URL Rewrite Module installer contains an invalid version check for the IIS being used. Here is how to install IIS URL Rewrite Module in IIS 10…
IIS URL Rewrite Module installation error
If IIS URL Rewrite is not installed on Windows Server 2016 IIS 10, and you try to install this module, the IIS URL Rewrite module installation exits (quits) with the following error message:
IIS version 7.0 or greater is required to install IIS URL Rewrite Module 2.
The solution to successfully install URL Rewrite Module in IIS is quite easy: change IIS’ version number in the registry. Whut? Yes, change IIS’ version number in the registry.
Change IIS’ version number in the registry and install URL Rewrite Module successfully
You can use the following PowerShell snippet to change IIS’ version number in the Windows Server registry, allowing you to successfully install the IIS URL Rewrite Module:
# Install URL Rewrite module in Windows Server 2016 for IIS
if ( $osversion -ge "10.0" ) {
Write-Host "[!] urlrewrite.msi installation checks the Windows Server IIS version `
in the registry. This fails on Server 2016. `
So temporarily change IIS version in the registry."
$registryPath = "HKLM:\Software\Microsoft\InetStp"
$Name = "MajorVersion"
$currentValue = (Get-ItemProperty "hklm:Software\Microsoft\InetStp").MajorVersion
$newvalue = "7"
New-ItemProperty -Path $registryPath -Name $name -Value $newvalue -PropertyType DWORD -Force | Out-Null
}
Code language: PHP (php)
Here you save the current IIS version in the variable $currentValue
, so you can easily set the version number back to this original version.
Before fiddling with the registry and IIS, make sure to make proper IIS backups first.
Reset IIS’ version number:
After the URL Rewrite Module’s installation, you need to reset the IIS’ version number back to its original value:
if ( $osversion -ge "10.0" ) {
Write-Host "[!] Reset IIS version in the registry"
$registryPath = "HKLM:\Software\Microsoft\InetStp"
$Name = "MajorVersion"
New-ItemProperty -Path $registryPath -Name $name -Value $currentvalue -PropertyType DWORD -Force | Out-Null
}
Code language: PHP (php)
An updated version of IIS URL Rewrite is available for download: https://www.iis.net/downloads/microsoft/url-rewrite#additionalDownloads. Therefore, the above steps are no longer necessary in Windows Server 2016 RTM.
How to determine the Windows Server version using PowerShell?
If you want to find out the version of Windows Server you’re running in PowerShell. You can use this PowerShell snippet to easily and quickly look up the Windows Server version, and store it in variables:
$osversion = [System.Environment]::OSVersion.Version
$major = $osversion.Major
$minor = $osversion.Minor
Set-Variable -name windowsversion -value "$major.$minor" -scope script
# $windowsversion now contains: 10.0
Code language: PHP (php)
A shorter variant is:
$osversion = [System.Environment]::OSVersion.Version
if ($osversion -ge (New-Object System.Version "10.0")) {
Write-Host "Windows Server 2016"
}
Code language: PHP (php)
Or use WMI/CIM’s Win32_OperatingSystem
class, for example:
(Get-CimInstance -class Win32_OperatingSystem).Caption
Code language: JavaScript (javascript)
This’ll return something like Microsoft Windows Server 2016 Standard
[…] All .htaccess examples are for Helicon Ape. Please note Helicon Ape hasn’t been updated in years, it’s better to use IIS URL Rewrite Module. […]
FYI – Microsoft has released URL Rewrite 2.1 which now includes support for Windows 2016 without need of registry tweak.
Thanks for your notification. It’s already in the post: