Eu tinha exatamente a mesma exigência, como redirecionar todo o link para o link e também redirecionar todos os http para https, aqui como consegui e fazê-lo funcionar o IIS 8.5. Eu usei o seguinte código no arquivo web.config:
<system.webServer>
<!--Maybe some other settings-->
<rewrite>
<rules>
<rule name="http to https" stopProcessing="true">
<match url="(.*)" />
<conditions>
<add input="{HTTPS}" pattern="^OFF$" />
</conditions>
<action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="SeeOther" />
</rule>
<rule name="Redirect to www" patternSyntax="Wildcard" stopProcessing="true">
<match url="*" />
<conditions>
<add input="{HTTP_HOST}" pattern="yourdomainname.com" />
</conditions>
<action type="Redirect" url="https://www.yourdomainname.com/{R:0}" />
</rule>
</rules>
</rewrite>
<!--Maybe some other settings-->
</system.webServer>
Isso funcionou como charme. Na verdade, eu criei o código acima no web.config instalando o "URL Rewrite Module" usando o Web Platform Installer. Após a instalação, encontrei este módulo no IIS 8.5 e adicionei novas regras. Espero que você possa escrever diretamente este código no seu web.config para fazer as coisas.