現象
次のような状況で問題が発生します。
-
証明書サービス Web 登録ロール サービスは、Windows Server 2008 R2 ベースのサーバーにインストールされます。
-
新しいバージョン以降を実行しているInternet Explorer 10 コンピューターがある。
-
Windows Server 2008 R2 ベースのサーバーでホストされている [Certificate Services Web 登録] ページにアクセスします。
このシナリオでは、このシナリオで次のエラーがInternet Explorer。
この Web ブラウザーは、証明書要求の生成をサポートしていない
原因
[ブラウザーのバージョン] チェックで、バージョンが "IE 1 Internet Explorerが正しく識別されません。
回避策
この問題でサポートされている回避策は次のとおりです。
-
[互換性] ビューを構成Internet Explorer。
-
[Web 登録] ページの機能を [登録] Windows Server 2012。
-
44 行から 70 行を次の内容に置き換え、Certsbrt.inc ファイルを変更します。 Certsbrt.inc は次のフォルダーにあります。
%WINDIR%\system32\certsrv\en-us
'
' If there is no '.' in the UserAgent string, this will return the next character if any ' as the version number. ' We extract the string until a '.' and then convert it ' into integer. If -1 is returned from this function then it isn't MSIE ' Function GetInternetExplorerVersionNumber(sHttpUserAgent) Dim nMSIE GetInternetExplorerVersionNumber = -1 nMSIE = InStr(sHttpUserAgent, "MSIE") If 0 <> nMSIE Then numChar = InStr(Mid(sHttpUserAgent, nMSIE + 5), ".") - 1 If -1 = numChar Then ' no '.' in the string numChar = 1 End If If nMSIE + 5 + numChar - 1 <= Len(sHttpUserAgent) Then GetInternetExplorerVersionNumber = CInt(Mid(sHttpUserAgent, nMSIE + 5, numChar)) End If End If End Function ' ' We define a Old MSIE based browser ' if it has the string MSIE that is followed by a version number that is less than 4 ' NOTE: ' IsOldMSIE = False does not imply MSIE >= 4. ' ' i.e. Not IsOldMSIE("abc") = True ' Not IsOldMSIE("MSIE") = True ' Function IsOldMSIE(sHttpUserAgent) Dim nMSIE Dim sMSIEVersion IsOldMSIE = False nMSIE = InStr(sHttpUserAgent, "MSIE") If nMSIE <> 0 AND (nMSIE+5 < Len(sHttpUserAgent)) Then nVersion = GetInternetExplorerVersionNumber(sHttpUserAgent) If -1 <> nVersion Then IsOldMSIE = nVersion < NEW_MSIE_VERSION End If End If End Function
詳細情報
Windows Server 2008 R2 ベースサーバー上の変更されていない Certsbrt.inc ファイルの 44 から 70 行は次のとおりです。 これらは、置き換える行です。
'
' We define a Old MSIE based browser ' if it has the string MSIE that is followed by a version number that is less than 4 ' NOTE: ' IsOldMSIE = False does not imply MSIE >= 4. ' ' i.e. Not IsOldMSIE("abc") = True ' Not IsOldMSIE("MSIE") = True ' Function IsOldMSIE(sHttpUserAgent) Dim nMSIE Dim sMSIEVersion nMSIE = InStr(sHttpUserAgent, "MSIE") If nMSIE=0 Then IsOldMSIE = False ElseIf nMSIE+5 < Len(sHttpUserAgent) Then sMSIEVersion = Mid(sHttpUserAgent, nMSIE+5, 1) IsOldMSIE = CInt(sMSIEVersion) < NEW_MSIE_VERSION Else IsOldMSIE = False End If End Function