在Windows 10教育版64位系统中,我尝试在关闭防火墙的情况下在Internet Explorer 11(版本11.765.17134.0)中运行activeX。但是,当我单击弹出窗口上的[安装]按钮后,显示了“ 读取安装程序初始化文件错误”错误消息。
根据2237-error-setup-initialization,我关闭了防火墙和防病毒程序,但是没有用。
我打开的网页 index.html 包含:
<head>
<title></title>
<script type="text/javascript">
function load() {
var dom = document.getElementById("activex");
dom.regJs(window, 'test');
}
function test() {
alert("register callback function");
}
</script>
</head>
<body onload="load()">
<object id="activex" classid="clsid:D2BBB592-B43D-47EA-BF72-C986862F8350" codebase="setup.exe" width="100%" height="200"></object>
</body>