WindowsXP-SP1/admin/admt/buildtools/dmalabelprojects.cmd
2020-09-30 16:53:49 +02:00

18 lines
287 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/DMA -C -I- -L%LABEL%
goto End
:Usage
echo Usage: DmaLabelProjects.cmd "Label"
:End
endlocal