Suporte VBScript no Internet Explorer 11

Eu tentei a seguinte página HTML com dois scripts:

<html>
  …
  <body>
    <script type="text/javascript">
      alert ('Javascript');
    </script>
    <script type="text/vbscript">
      msgbox "Vbscript"
    </script>
  </body>
</html>

No Windows 8.1 preview + Internet Explorer 11, o JavaScript funcionava, o VBScript não.

No (Windows 8 + IE10), (Windows 7 + IE9), os dois scripts funcionaram.

Não encontrei nenhuma informação sobre o fim do suporte a VBScript no Internet Explorer 11, não é?

questionAnswers(7)

yourAnswerToTheQuestion