윈도우(winodw)
Internet Explorer 강제 실행
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 로 변경