Let's talk about the following method:
1. Mark insecure activex controls in internet and Local internet security settings in the browser's internet Options as available settings.
2. It is important to add the Domain Name of the website to be accessed to a trusted site.
3. You 'd better register your activex Control on the local machine in advance (optional ).
Because many customers do not know how to operate, they write a registry file, as long as the user executes this file, the Registry content is as follows:
/* The domain name here is localhost, which can be modified as needed */
Windows Registry Editor Version 5.00
[HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Internet Settings \ ZoneMap \ Domains \ localhost]
"Http" = dword: 00000002
"Https" = dword: 00000002
/* The following are the places where activex is modified to be enabled */
[HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Internet Settings \ Zones \ 0]
@ = ""
"1201" = dword: 00000001
"1200" = dword: 00000000
"1004" = dword: 00000001
"2201" = dword: 00000000
[HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Internet Settings \ Zones \ 1]
@ = ""
"1201" = dword: 00000001
"1200" = dword: 00000000
"1004" = dword: 00000001
"2201" = dword: 00000000
[HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Internet Settings \ Zones \ 2]
@ = ""
"1201" = dword: 00000001
"1200" = dword: 00000000
"1004" = dword: 00000001
"2201" = dword: 00000000
[HKEY_CURRENT_USER \ Software \ Microsoft \ Windows \ CurrentVersion \ Internet Settings \ Zones \ 3]
@ = ""
"1201" = dword: 00000001
"1200" = dword: 00000000
"1004" = dword: 00000001
"2201" = dword: 00000000
From: column zhou699