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.
50 lines
1.1 KiB
50 lines
1.1 KiB
@Echo Off
|
|
|
|
Call "%SystemRoot%\Application Compatibility Scripts\SetPaths.Cmd"
|
|
If "%_SETPATHS%" == "FAIL" Goto Done
|
|
|
|
Rem
|
|
Rem 이것은 RootDrive가 필요없는 스크립트를 위한 것입니다.
|
|
Rem
|
|
|
|
If Not Exist "%SystemRoot%\System32\Usrlogn1.cmd" Goto cont0
|
|
Cd /d "%SystemRoot%\Application Compatibility Scripts\Logon"
|
|
Call "%SystemRoot%\System32\Usrlogn1.cmd"
|
|
|
|
:cont0
|
|
|
|
Rem
|
|
Rem 사용자 홈 디렉터리 드라이브 문자를 결정합니다. 설정되어 있지
|
|
Rem 않으면 끝냅니다.
|
|
Rem
|
|
|
|
Cd /d %SystemRoot%\"Application Compatibility Scripts"
|
|
Call RootDrv.Cmd
|
|
If "A%RootDrive%A" == "AA" End.Cmd
|
|
|
|
Rem
|
|
Rem 사용자 홈 디렉터리를 드라이브 문자로 매핑합니다.
|
|
Rem
|
|
|
|
Net Use %RootDrive% /D >NUL: 2>&1
|
|
Subst %RootDrive% "%HomeDrive%%HomePath%"
|
|
if ERRORLEVEL 1 goto SubstErr
|
|
goto AfterSubst
|
|
:SubstErr
|
|
Subst %RootDrive% /d >NUL: 2>&1
|
|
Subst %RootDrive% "%HomeDrive%%HomePath%"
|
|
:AfterSubst
|
|
|
|
Rem
|
|
Rem 각 응용 프로그램 스크립트를 불러옵니다. 설치 스크립트가 실행되면
|
|
Rem 응용 프로그램 스크립트는 자동으로 UsrLogn2.Cmd에 추가됩니다.
|
|
Rem
|
|
|
|
If Not Exist %SystemRoot%\System32\UsrLogn2.Cmd Goto Cont1
|
|
|
|
Cd Logon
|
|
Call %SystemRoot%\System32\UsrLogn2.Cmd
|
|
|
|
:Cont1
|
|
|
|
:Done
|