34 lines
940 B
Batchfile
34 lines
940 B
Batchfile
Rem
|
|
Rem ユーザーのホーム ディレクトリにアプリケーション固有のデータ
|
|
Rem のディレクトリを作成します。
|
|
Rem
|
|
|
|
call TsMkUDir "%RootDrive%\#OFFUDIR#"
|
|
call TsMkUDir "%RootDrive%\#OFFUDIR#\Template"
|
|
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
|
|
|