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.
33 lines
932 B
33 lines
932 B
Rem
|
|
Rem 사용자 홈 디렉터리에 응용 프로그램 고유의 데이터를 위한
|
|
Rem 디렉터리를 만듭니다.
|
|
Rem
|
|
|
|
call TsMkUDir "%RootDrive%\#OFFUDIR#"
|
|
call TsMkUDir "%RootDrive%\#OFFUDIR#\Templates"
|
|
call TsMkUDir "%RootDrive%\%MY_DOCUMENTS%"
|
|
|
|
Rem
|
|
Rem 양식 디렉터리를 복사하여 Outlook이 편집기로 Word를 사용할 수 있습니다.
|
|
Rem
|
|
|
|
If Exist "%RootDrive%\Windows\Forms" Goto Skip2
|
|
If Not Exist "%SystemRoot%\Forms" Goto Skip2
|
|
Xcopy "%SystemRoot%\Forms" "%RootDrive%\Windows\Forms" /e /i >Nul: 2>&1
|
|
:Skip2
|
|
|
|
Rem
|
|
Rem Custom.dic 파일을 사용자 디렉터리로 복사합니다.
|
|
Rem
|
|
|
|
if "#OFFUDIR#" == "Office95" goto O95
|
|
If Exist "%RootDrive%\#OFFUDIR#\Custom.Dic" Goto Skip4
|
|
If Not Exist "#INSTDIR#\Office\Custom.Dic" Goto Skip4
|
|
Copy "#INSTDIR#\Office\Custom.Dic" "%RootDrive%\#OFFUDIR#\Custom.Dic" >Nul: 2>&1
|
|
goto Skip4
|
|
|
|
:O95
|
|
If Not Exist "%RootDrive%\Office95\Custom.dic" Copy Nul: "%RootDrive%\Office95\Custom.dic" > Nul: 2>&1
|
|
|
|
:Skip4
|
|
|