Source code of Windows XP (NT5)
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.
|
|
@echo off REM ------------------------------------------------------------------ REM REM PbaInst.cmd REM Create an iexpress self-extracting EXE (PBAinst.exe) from the REM files we've already copied to pbainst & subdirectories. REM REM Copyright 2001 (c) Microsoft Corporation. All rights reserved. REM REM CONTACT: SumitC REM ------------------------------------------------------------------ if defined _CPCMAGIC goto CPCBegin perl -x "%~f0" %* goto :EOF #!perl use strict; use lib $ENV{RAZZLETOOLPATH} . "\\PostBuildScripts"; use lib $ENV{RAZZLETOOLPATH}; use PbuildEnv; use ParseArgs;
sub Usage { print<<USAGE; exit(1) } PbaInst.cmd [-l <language>] contact: SumitC or CmDev
Make PbaInst.exe (Phone Book Administrator app for ValueAdd) USAGE
parseargs('?' => \&Usage);
# *** NEXT FEW LINES ARE TEMPLATE *** $ENV{"_CPCMAGIC"}++;exit(system($0)>>8); __END__ :CPCBegin set _CPCMAGIC= setlocal ENABLEDELAYEDEXPANSION ENABLEEXTENSIONS REM *** BEGIN YOUR CMD SCRIPT BELOW ***
REM REM Applicable to USA, GER, JPN, FR and ES only. REM
if /i "%lang%" equ "usa" goto BuildPbainst if /i "%lang%" equ "jpn" goto BuildPbainst if /i "%lang%" equ "ger" goto BuildPbainst if /i "%lang%" equ "fr" goto BuildPbainst if /i "%lang%" equ "es" goto BuildPbainst
call logmsg.cmd "PBAINST is not applicable to language %lang%; exit."
goto :EOF
:BuildPbainst
REM REM Check to see that all our files are present REM REM
pushd %_NTPostBld%\pbainst
REM REM The CPS help file is built in a different VBL (lab06) so instead of REM having a copy checked into our branch, we get the most recent copy here. REM REM NOTE: I did this a little too early - Whistler Client help can't refer to REM whistler server because the name isn't finalized, so for now we actually REM *do* have to use a static cps_ops.chm. Once Whistler ships, we can REM enable this code to actually pick up the most recent helpfile. REM REM copy %_NTPostBld%\cps_ops.chm .\sources0\.
for %%i in ( .\pbainst.sed .\readme.htm .\sources0\comctl32.ocx .\sources0\comdlg32.ocx .\sources0\cps_ops.chm .\sources0\msinet.ocx .\sources0\pbadmin.hlp .\sources0\pbserver.mdb .\sources0\tabctl32.ocx .\sources1\base.ddf .\sources1\country.txt .\sources1\dta.bat .\sources1\dta.ddf .\sources1\empty_pb.mdb .\sources1\full.bat .\sources1\full.ddf .\sources1\hhwrap.dll .\sources1\pbadmin.exe .\sources1\pbasetup.exe .\sources1\pbasetup.inf ) do ( if not exist %%i ( call errmsg.cmd "File %_NTPostBld%\pbainst\%%i not found." popd& goto :EOF ) )
REM REM Create pbainst.exe. REM As iexpress.exe does not set errorlevel in all error cases, REM base verification on pbainst.exe's existence. REM
if exist .\PbaInst.exe call ExecuteCmd.cmd "del /f PbaInst.exe" if errorlevel 1 goto :EOF
REM REM Munge the path so we use the correct wextract.exe to build the package with... REM NOTE: We *want* to use the one we just built (and for Intl localized)! REM set _NEW_PATH_TO_PREPEND=%RazzleToolPath%\%PROCESSOR_ARCHITECTURE%\loc\%LANG% set _OLD_PATH_BEFORE_PREPENDING=%PATH% set PATH=%_NEW_PATH_TO_PREPEND%;%PATH%
call ExecuteCmd.cmd "start /min /wait iexpress.exe /M /N /Q PbaInst.sed"
REM REM Return the path to what it was before... REM set PATH=%_OLD_PATH_BEFORE_PREPENDING%
if not exist PbaInst.exe ( call errmsg.cmd "iexpress.exe PbaInst.sed failed." popd& goto :EOF )
REM REM Copy PbaInst.exe and ReadMe.htm to ValueAdd directory REM
if not exist %_NtPostBld%\ValueAdd\msft\mgmt\pba mkdir %_NtPostBld%\ValueAdd\msft\mgmt\pba if errorlevel 1 ( call errmsg.cmd "mkdir %_NTPostBld%\ValueAdd\msft\mgmt\pba failed" popd& goto :EOF )
for %%i in (.\PbaInst.exe .\ReadMe.htm) do ( call ExecuteCmd.cmd "copy %%i %_NtPostBld%\ValueAdd\msft\mgmt\pba\." if errorlevel 1 popd& goto :EOF )
call logmsg.cmd "PbaInst.cmd completed successfully"
popd
|