windows-nt/Source/XPSP1/NT/admin/admt/buildtools/dmalabelprojects.cmd

18 lines
270 B
Batchfile
Raw Normal View History

2020-09-26 03:20:57 -05:00
@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