WindowsXP/admin/admt/buildtools/raptorlabelprojects.cmd
2025-04-27 07:49:33 -04:00

18 lines
293 B
Batchfile

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