엣지(Edge) Active X 실행하기 (Internet Explorer 호환모드)

컴퓨터|2021. 12. 2. 08:48

1. 호환모드로 접속할 사이트 목록을 만든다.

ie_site_list.xml
0.00MB

<site-list version="2">
  <created-by>
    <tool>EMIESiteListManager</tool>
    <version>12.0.0.0</version>
    <date-created>07/22/2021 05:11:49</date-created>
  </created-by>
  <site url="neis.gen.go.kr">
    <compat-mode>Default</compat-mode>
    <open-in>IE11</open-in>
  </site>
</site-list>

neis.gen.go.kr를 호환 모드로 접속하고자 하면 위와 같이 파일을 텍스트 문서로 만들어 ie_site_list.xml로 c:\temp 폴더 만들어 자장한다. 

엣지호환모드 리스트 설정.cmd
0.00MB

copy ie_site_list.xml c:\temp\ie_site_list -y
reg add HKLM\SOFTWARE\Policies\Microsoft\Edge /v InternetExplorerIntegrationLevel /t REG_DWORD /d 1 /f
reg add HKLM\SOFTWARE\Policies\Microsoft\Edge /v InternetExplorerIntegrationSiteList /t REG_SZ /d C:\temp\ie_site_list.xml /f
rem Force GP Update

ie_site_list.xml가 있는 폴더에서 위와 같이 실행한다.

 

위와같이 하면 neis.gen.go.kr를 엣지에서 호환 모드로 무조건 접속하게 되어 ActiveX가 실행된다.

댓글()