@REM ----------------------------------------------------------------- @REM @REM tscsetup.cmd - NadimA @REM Make an iexpress exe container (msrdpcli.exe) for all the tsc @REM client setup files. For installation from the support tools @REM section of the CD @REM @REM IMPORTANT: script must run after tsclient.cmd and msi.cmd complete @REM only runs on X86. On Win64 we cross-copy the x86 files. @REM @REM Copyright (c) Microsoft Corporation. All rights reserved. @REM @REM ----------------------------------------------------------------- @if NOT defined HOST_PROCESSOR_ARCHITECTURE set HOST_PROCESSOR_ARCHITECTURE=%PROCESSOR_ARCHITECTURE% @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; use Logmsg; sub Usage { print<>$ENV{_NTPOSTBLD}\\..\\build_logs\\dependencies.txt" ) { errmsg("Unable to open dependency list file."); die; } print DEPEND< \&Usage, 'plan' => \&Dependencies, 'qfe:' => \$qfe); if ( -f "$ENV{_NTPOSTBLD}\\..\\build_logs\\skip.txt" ) { if ( !open SKIP, "$ENV{_NTPOSTBLD}\\..\\build_logs\\skip.txt" ) { errmsg("Unable to open skip list file."); die; } while () { chomp; exit if lc$_ eq lc$0; } close SKIP; } # *** TEMPLATE CODE *** $ENV{"_CPCMAGIC"}++;exit(system($0)>>8); __END__ @:CPCBegin @set _CPCMAGIC= @setlocal ENABLEDELAYEDEXPANSION ENABLEEXTENSIONS @if not defined DEBUG echo off @REM *** CMD SCRIPT BELOW *** REM REM Generate msrdpcli.exe (only on i386) REM REM set _bla=1 set _sbs=1 set _srv=1 set _ads=1 set _dtc=1 perl %RazzleToolPath%\cksku.pm -t:bla -l:%LANG% if errorlevel 1 set _bla= perl %RazzleToolPath%\cksku.pm -t:sbs -l:%LANG% if errorlevel 1 set _sbs= perl %RazzleToolPath%\cksku.pm -t:srv -l:%LANG% if errorlevel 1 set _srv= perl %RazzleToolPath%\cksku.pm -t:ads -l:%LANG% if errorlevel 1 set _ads= perl %RazzleToolPath%\cksku.pm -t:dtc -l:%LANG% if errorlevel 1 set _dtc= if defined _bla goto CONTINUE if defined _sbs goto CONTINUE if defined _srv goto CONTINUE if defined _ads goto CONTINUE if defined _dtc goto CONTINUE call logmsg.cmd "tscsetup.cmd do nothing on non server product" goto :EOF :CONTINUE if not defined 386 ( call logmsg.cmd "tscsetup.cmd do nothing on non i386" goto :EOF ) if exist %_NTPostBld%\tsccab ( call ExecuteCmd.cmd "rmdir /q /s %_NTPostBld%\tsccab" if errorlevel 1 call errmsg.cmd "err deleting tsccab dir"& goto :EOF ) REM delete msrdpcli from root of the release directory here to avoid REM causing a popup on W2K OS build machines if exist %_NTPostBld%\msrdpcli.exe call ExecuteCmd.cmd "del /f %_NTPostBld%\msrdpcli.exe" if errorlevel 1 goto :EOF mkdir %_NTPostBld%\tsccab if errorlevel 1 call errmsg.cmd "err creating .\tsccab dir"& goto :EOF pushd %_NTPostBld% for %%i in (.\tscmsi01.w32 .\tscmsi02.w32 .\tscmsi03.w32 .\msrdpcli.sed .\instmsia.exe .\instmsiw.exe) do ( if not exist %%i ( call errmsg.cmd "File %_NTPostBld%\%%i not found." popd& goto :EOF ) ) REM REM This should only take a few seconds to complete REM :RunIt REM REM Create msrdpcli.exe. REM As iexpress.exe does not set errorlevel in all error cases, REM base verification on msrdpcli.exe's existence. REM REM REM copy files to temp cab dir and rename them back to their original names REM (the reverse of what mkrsys does) REM copy .\instmsia.exe .\tsccab\instmsia.exe if errorlevel 1 call errmsg.cmd "err copying files to .\tsccab"& goto :EOF copy .\instmsiw.exe .\tsccab\instmsiw.exe if errorlevel 1 call errmsg.cmd "err copying files to .\tsccab"& goto :EOF copy .\msrdpcli.sed .\tsccab\msrdpcli.sed if errorlevel 1 call errmsg.cmd "err copying files to .\tsccab"& goto :EOF copy .\tscmsi01.w32 .\tsccab\msrdpcli.msi if errorlevel 1 call errmsg.cmd "err copying files to .\tsccab"& goto :EOF copy .\tscmsi02.w32 .\tsccab\setup.exe if errorlevel 1 call errmsg.cmd "err copying files to .\tsccab"& goto :EOF copy .\tscmsi03.w32 .\tsccab\setup.ini if errorlevel 1 call errmsg.cmd "err copying files to .\tsccab"& goto :EOF pushd .\tsccab REM REM NOW in .\tsccab REM 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%\%HOST_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 msrdpcli.sed" REM REM Return the path to what it was before... REM set PATH=%_OLD_PATH_BEFORE_PREPENDING% if not exist msrdpcli.exe ( call errmsg.cmd "iexpress.exe msrdpcli.sed failed." popd & popd& goto :EOF ) REM REM Copy msrdpcli.exe to "retail" REM and support tools call ExecuteCmd.cmd "copy msrdpcli.exe ..\" if errorlevel 1 popd& popd & goto :EOF if not exist %_NTPostBld%\support\tools md %_NTPostBld%\support\tools call ExecuteCmd.cmd "copy msrdpcli.exe %_NTPostBld%\support\tools" if errorlevel 1 popd & popd & goto :EOF call logmsg.cmd "tscsetup.cmd completed successfully" popd & popd