You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.7 KiB
64 lines
1.7 KiB
@Echo off
|
|
|
|
Rem
|
|
Rem 설치 후 Administrator가 이 스크립트를 실행해야 합니다.
|
|
Rem
|
|
|
|
CD /D "%SystemRoot%\Application Compatibility Scripts\Install" > NUL: 2>&1
|
|
|
|
If Not "A%1A" == "AA" Goto cont0
|
|
|
|
Call "%SystemRoot%\Application Compatibility Scripts\ChkRoot.Cmd"
|
|
If "%_CHKROOT%" == "FAIL" Goto Done
|
|
|
|
:cont0
|
|
|
|
If "A%1A" == "AA" ..\acsr "#ROOTDRIVE#" "%RootDrive%" Template\msie40.key msie40.key
|
|
..\acsr "#SYSTEMROOT#" "%SystemRoot%" Template\msie40s.key msie40s.key
|
|
|
|
If Exist "%SystemRoot%\Setup.ini" Goto Cont2
|
|
Copy NUL: "%SystemRoot%\Setup.ini" > NUL: 2>&1
|
|
|
|
:Cont2
|
|
Cacls "%SystemRoot%\Setup.ini" /E /T /G "Authenticated Users":F >Nul: 2>&1
|
|
|
|
If Exist "%SystemRoot%\Setup.old" Goto Cont3
|
|
Copy NUL: "%SystemRoot%\Setup.old" > NUL: 2>&1
|
|
|
|
:Cont3
|
|
Attrib +r "%SystemRoot%\Setup.old" > NUL: 2>&1
|
|
|
|
FindStr /I Msie4Usr %SystemRoot%\System32\UsrLogn1.Cmd >Nul: 2>&1
|
|
If Not ErrorLevel 1 Goto Cont4
|
|
Echo Call Msie4Usr.Cmd >> %SystemRoot%\System32\UsrLogn1.Cmd
|
|
|
|
:Cont4
|
|
|
|
Rem 현재 설치 모드에 있지 않으면 설치 모드로 변경합니다.
|
|
Set __OrigMode=Install
|
|
ChgUsr /query > Nul:
|
|
if Not ErrorLevel 101 Goto Begin
|
|
Set __OrigMode=Exec
|
|
Change User /Install > Nul:
|
|
:Begin
|
|
|
|
If "A%1A" == "AA" regini Msie40.key > Nul:
|
|
regini Msie40s.key > NUL:
|
|
|
|
Rem 원래 모드가 실행 모드였으면, 실행 모드로 다시 변경합니다.
|
|
If "%__OrigMode%" == "Exec" Change User /Execute > Nul:
|
|
Set __OrigMode=
|
|
|
|
If Not "A%1A" == "AA" Goto Done
|
|
|
|
Echo.
|
|
Echo MS IE 4이 올바르게 작업하기 위해
|
|
Echo 현재 로그온되어 있는 사용자가 로그오프하고 다시 로그온한 후
|
|
Echo 응용 프로그램을 시작해야 합니다.
|
|
Echo.
|
|
Echo Microsoft Internet Explorer 4.x 다중 사용자 응용 프로그램 조정 완료
|
|
|
|
Rem IE AutoInstall 동안 일시 중지하지 마십시오.
|
|
Pause
|
|
|
|
:Done
|