日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

Internet Explorer 升级到IE11遇到问题案例分析

發布時間:2023/12/20 编程问答 25 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Internet Explorer 升级到IE11遇到问题案例分析 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

去年年末,我所帶的項目終于部署上線了,但是在關鍵用戶的電腦終端IE11瀏覽器上出現了個比較奇怪的瀏覽器兼容問題,歷經兩個月的分析、驗證、處理,問題依舊。

故障現象:

早期的Web頁面,在此IE11上使用正常,而使用支持HTML5的window.localStorage技術則報錯。但是,在其他終端IE11瀏覽器、Chrome瀏覽器上,無此問題,而且,此終端上的Chrome瀏覽器也正常。

使用Internet Explorer 11的“F12 開發人員工具”跟蹤錯誤,控制臺錯誤信息如下:

SCRIPT1629:提供的數據類型不對。

如下圖所示:


最后,用戶也同意找空閑時間,請終端維護人員重新安裝系統了。

解決方案:

重新安裝系統,Internet Explorer 升級到IE11,還有更好的辦法,歡迎反饋。

重新安裝系統,為什么?

首先,這個問題和開發代碼、瀏覽器兼容沒有多少關系,也不是瀏覽器本身問題,而是Windows升級更新的問題,可以參考附帶文檔“MsiExec.exe and InstMsi.exe Error Messages”。

MsiExec.exe,系統進程,是Windows Installer的一部分。用于安裝Windows Installer安裝包(MSI),對系統的正常運行是非常重要的,一般在運行Microsoft Update安裝更新或安裝部分軟件的時候出現,占用內存比較大。

MsiExec.exe and InstMsi.exe Error Messages

These error codes are returned by the Windows Installer functions MsiExec.exe and InstMsi.exe. Note that any error in Winerror.h (such as ERROR_INVALID_DATA, included here) can be returned as well. For more error codes returned by the Windows Installer, see Windows Installer Error Messages.

Note The error codes ERROR_SUCCESS, ERROR_SUCCESS_REBOOT_INITIATED, and ERROR_SUCCESS_REBOOT_REQUIRED are indicative of success. If ERROR_SUCCESS_REBOOT_REQUIRED is returned, the installation completed successfully but a reboot is required to complete the installation operation.

Note If you are a user experiencing difficulty with your computer either during or after installing or uninstalling an application, you should contact customer support for the software you are trying to install or remove. If you feel you are in need of support for a Microsoft product, please go to our technical support site at support.microsoft.com.

Error codeValueDescription
ERROR_SUCCESS0The action completed successfully.
ERROR_INVALID_DATA13The data is invalid.
ERROR_INVALID_PARAMETER87One of the parameters was invalid.
ERROR_CALL_NOT_IMPLEMENTED120This value is returned when a custom action attempts to call a function that cannot be called from custom actions. The function returns the value ERROR_CALL_NOT_IMPLEMENTED. Available beginning with Windows Installer version 3.0.
ERROR_APPHELP_BLOCK1259If Windows Installer determines a product may be incompatible with the current operating system, it displays a dialog box informing the user and asking whether to try to install anyway. This error code is returned if the user chooses not to try the installation.
ERROR_INSTALL_SERVICE_FAILURE1601The Windows Installer service could not be accessed. Contact your support personnel to verify that the Windows Installer service is properly registered.
ERROR_INSTALL_USEREXIT1602The user cancels installation.
ERROR_INSTALL_FAILURE1603A fatal error occurred during installation.
ERROR_INSTALL_SUSPEND1604Installation suspended, incomplete.
ERROR_UNKNOWN_PRODUCT1605This action is only valid for products that are currently installed.
ERROR_UNKNOWN_FEATURE1606The feature identifier is not registered.
ERROR_UNKNOWN_COMPONENT1607The component identifier is not registered.
ERROR_UNKNOWN_PROPERTY1608This is an unknown property.
ERROR_INVALID_HANDLE_STATE1609The handle is in an invalid state.
ERROR_BAD_CONFIGURATION1610The configuration data for this product is corrupt. Contact your support personnel.
ERROR_INDEX_ABSENT1611The component qualifier not present.
ERROR_INSTALL_SOURCE_ABSENT1612The installation source for this product is not available. Verify that the source exists and that you can access it.
ERROR_INSTALL_PACKAGE_VERSION1613This installation package cannot be installed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
ERROR_PRODUCT_UNINSTALLED1614The product is uninstalled.
ERROR_BAD_QUERY_SYNTAX1615The SQL query syntax is invalid or unsupported.
ERROR_INVALID_FIELD1616The record field does not exist.
ERROR_INSTALL_ALREADY_RUNNING1618Another installation is already in progress. Complete that installation before proceeding with this install.For information about the mutex, see _MSIExecute Mutex.
ERROR_INSTALL_PACKAGE_OPEN_FAILED1619This installation package could not be opened. Verify that the package exists and is accessible, or contact the application vendor to verify that this is a valid Windows Installer package.
ERROR_INSTALL_PACKAGE_INVALID1620This installation package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer package.
ERROR_INSTALL_UI_FAILURE1621There was an error starting the Windows Installer service user interface. Contact your support personnel.
ERROR_INSTALL_LOG_FAILURE1622There was an error opening installation log file. Verify that the specified log file location exists and is writable.
ERROR_INSTALL_LANGUAGE_UNSUPPORTED1623This language of this installation package is not supported by your system.
ERROR_INSTALL_TRANSFORM_FAILURE1624There was an error applying transforms. Verify that the specified transform paths are valid.
ERROR_INSTALL_PACKAGE_REJECTED1625This installation is forbidden by system policy. Contact your system administrator.
ERROR_FUNCTION_NOT_CALLED1626The function could not be executed.
ERROR_FUNCTION_FAILED1627The function failed during execution.
ERROR_INVALID_TABLE1628An invalid or unknown table was specified.
ERROR_DATATYPE_MISMATCH1629The data supplied is the wrong type.
ERROR_UNSUPPORTED_TYPE1630Data of this type is not supported.
ERROR_CREATE_FAILED1631The Windows Installer service failed to start. Contact your support personnel.
ERROR_INSTALL_TEMP_UNWRITABLE1632The Temp folder is either full or inaccessible. Verify that the Temp folder exists and that you can write to it.
ERROR_INSTALL_PLATFORM_UNSUPPORTED1633This installation package is not supported on this platform. Contact your application vendor.
ERROR_INSTALL_NOTUSED1634Component is not used on this machine.
ERROR_PATCH_PACKAGE_OPEN_FAILED1635This patch package could not be opened. Verify that the patch package exists and is accessible, or contact the application vendor to verify that this is a valid Windows Installer patch package.
ERROR_PATCH_PACKAGE_INVALID1636This patch package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer patch package.
ERROR_PATCH_PACKAGE_UNSUPPORTED1637This patch package cannot be processed by the Windows Installer service. You must install a Windows service pack that contains a newer version of the Windows Installer service.
ERROR_PRODUCT_VERSION1638Another version of this product is already installed. Installation of this version cannot continue. To configure or remove the existing version of this product, use Add/Remove Programs in Control Panel.
ERROR_INVALID_COMMAND_LINE1639Invalid command line argument. Consult the Windows Installer SDK for detailed command-line help.
ERROR_INSTALL_REMOTE_DISALLOWED1640The current user is not permitted to perform installations from a client session of a server running the Terminal Server role service.
ERROR_SUCCESS_REBOOT_INITIATED1641The installer has initiated a restart. This message is indicative of a success.
ERROR_PATCH_TARGET_NOT_FOUND1642The installer cannot install the upgrade patch because the program being upgraded may be missing or the upgrade patch updates a different version of the program. Verify that the program to be upgraded exists on your computer and that you have the correct upgrade patch.
ERROR_PATCH_PACKAGE_REJECTED1643The patch package is not permitted by system policy.
ERROR_INSTALL_TRANSFORM_REJECTED1644One or more customizations are not permitted by system policy.
ERROR_INSTALL_REMOTE_PROHIBITED1645Windows Installer does not permit installation from a Remote Desktop Connection.
ERROR_PATCH_REMOVAL_UNSUPPORTED1646The patch package is not a removable patch package. Available beginning with Windows Installer version 3.0.
ERROR_UNKNOWN_PATCH1647The patch is not applied to this product. Available beginning with Windows Installer version 3.0.
ERROR_PATCH_NO_SEQUENCE1648No valid sequence could be found for the set of patches. Available beginning with Windows Installer version 3.0.
ERROR_PATCH_REMOVAL_DISALLOWED1649Patch removal was disallowed by policy. Available beginning with Windows Installer version 3.0.
ERROR_INVALID_PATCH_XML1650The XML patch data is invalid. Available beginning with Windows Installer version 3.0.
ERROR_PATCH_MANAGED_ADVERTISED_PRODUCT1651Administrative user failed to apply patch for a per-user managed or a per-machine application that is in advertise state. Available beginning with Windows Installer version 3.0.
ERROR_INSTALL_SERVICE_SAFEBOOT1652Windows Installer is not accessible when the computer is in Safe Mode. Exit Safe Mode and try again or try using System Restore to return your computer to a previous state. Available beginning with Windows Installer version 4.0.
ERROR_ROLLBACK_DISABLED1653Could not perform a multiple-package transaction because rollback has been disabled. Multiple-Package Installations cannot run if rollback is disabled. Available beginning with Windows Installer version 4.5.
ERROR_INSTALL_REJECTED1654The app that you are trying to run is not supported on this version of Windows. A Windows Installer package, patch, or transform that has not been signed by Microsoft cannot be installed on an ARM computer.
ERROR_SUCCESS_REBOOT_REQUIRED3010A restart is required to complete the install. This message is indicative of a success. This does not include installs where the ForceReboot action is run.

總結

以上是生活随笔為你收集整理的Internet Explorer 升级到IE11遇到问题案例分析的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。