상세 컨텐츠

본문 제목

Internet Explorer 강제 실행

윈도우(winodw)

by kth9364 2025. 1. 13. 11:03

본문

1. 메모장에 아래 내용 입력

 

'CreateObject("InternetExplorer.Application").Visible=True

    ' Internet Explorer 열기
    Set IE = CreateObject("InternetExplorer.Application")
    IE.Top = 0
    IE.Left = 0
    IE.StatusBar = True
    IE.Visible = True
    IE.Width = "1024"
    IE.Height = "1024"
    IE.navigate "http://www.google.com"

 

2. 메모장 형식을 *.vbs 로 변경

관련글 더보기