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.

17 lines
276 B

  1. @echo off
  2. setlocal enableextensions
  3. set SSCMD=C:\Program Files\Microsoft Visual Studio\Common\Vss\Win32\ss
  4. set LABEL=%1
  5. if '%LABEL%' == '' goto Usage
  6. "%SSCMD%" Label $/Dev/Raptor -C -I- -L%LABEL%
  7. goto End
  8. :Usage
  9. echo Usage: RaptorLabelProjects.cmd "Label"
  10. :End
  11. endlocal