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.

28 lines
628 B

  1. @echo off
  2. rem
  3. rem SetupExpert.cmd: This script creates the Remote control expert channel
  4. rem under help center
  5. rem History:
  6. rem Rajesh Soy (nsoy) - created, 07/11/2000
  7. rem
  8. set SrcDir=\\tadbdev\saf
  9. set TargetDir=%windir%\system32
  10. rem
  11. rem Copy Binaries
  12. rem
  13. copy %SrcDir%\cfgbkend.dll %TargetDir%
  14. copy %SrcDir%\rdchost.dll %TargetDir%
  15. copy %SrcDir%\rdsaddin.exe %TargetDir%
  16. copy %SrcDir%\rdshost.exe %TargetDir%
  17. copy %SrcDir%\sessmgr.exe %TargetDir%
  18. copy %SrcDir%\winsta.dll %TargetDir%
  19. pushd %windir%\system32
  20. .\sessmgr.exe /Unregserver
  21. .\sessmgr.exe -service
  22. regsvr32 .\rdchost.dll
  23. .\rdshost.exe /RegServer
  24. popd