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.
 
 
 
 
 
 

48 lines
1.3 KiB

@echo off
rem
rem SetupBuddy.cmd: This script creates the Remote control Buddy channel
rem under help center
rem History:
rem Rajesh Soy (nsoy) - created, 06/28/2000
rem
rem
rem Set the Expert Channel Directory
rem
set SrcDir="\\steveshi02\nt$\admin\pchealth\helpctr\rc"
rem SrcDir="%SDXROOT%\admin\pchealth\helpctr\rc"
set BuddyChannelDir="%SystemRoot%\PCHealth\helpctr\vendors\CN=Microsoft Corporation,L=Redmond,S=Washington,C=US\rcBuddy"
set SysDir="%SystemRoot%\PCHealth\helpctr\system"
rem
rem Create the Buddy Channel Directory
rem
mkdir %BuddyChannelDir%
rem
rem Copy the Files
rem
copy %SrcDir%\bdychannel\UI_IM\*.htm %BuddyChannelDir%
copy %SrcDir%\bdychannel\UI_IM\*.gif %BuddyChannelDir%
copy %SrcDir%\bdychannel\UI_IM\*.css %BuddyChannelDir%
copy %SrcDir%\rctool\UI_IM\chatserver.htm %BuddyChannelDir%
copy %SrcDir%\rctool\UI_IM\*.css %BuddyChannelDir%
copy %SrcDir%\rctool\UI_IM\*.gif %BuddyChannelDir%
rem
rem Copy the config file
rem copy %SrcDir%\bdychannel\*.xml %SystemRoot%\PCHealth\helpctr\config
rem
rem Setup DirectPlay stuff
pushd .
copy %SrcDir%\..\target\obj\i386\rcIMLby.exe %SystemRoot%\System32
copy %SrcDir%\..\target\obj\i386\rcIMCtl.dll %SystemRoot%\System32
cd /d %SystemRoot%\System32
rcIMLby.exe -regserver
regsvr32 rcIMCtl.dll
popd