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.
20 lines
371 B
20 lines
371 B
@echo off
|
|
echo copying down minimum install for Excel
|
|
|
|
set GP_SERVER=\\gdipteam\office\%1
|
|
|
|
copy %GP_SERVER%\excel.exe .
|
|
copy %GP_SERVER%\mso9d.dll .
|
|
|
|
|
|
if /i "%2"=="nopdb" goto nopdb
|
|
copy %GP_SERVER%\excel.pdb .
|
|
copy %GP_SERVER%\mso9d*.pdb .
|
|
:nopdb
|
|
|
|
md 1033
|
|
|
|
copy %GP_SERVER%\1033\mso9intld.* 1033
|
|
copy %GP_SERVER%\1033\xlintl32.* 1033
|
|
|
|
set GP_SERVER=
|