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.
 
 
 
 
 
 

25 lines
499 B

@echo off
setlocal enableextensions
if '%1' EQU '' goto Usage
if '%2' EQU '' goto Usage
set BUILDNUM=%1
set BUILDTIME=%2
shift
shift
:Loop
if '%1' NEQ '' set BUILDTIME=%BUILDTIME% %1
shift
if '%1' NEQ '' goto Loop
echo Scheduling Build %BUILDNUM% for %BUILDTIME%
at %BUILDTIME% E:\BuildTools\McsBuildServer\McsBuildClient.exe DEVRDTBOX E:\BuildTools\DmaStartBuild.cmd %BUILDNUM%
goto End
:Usage
echo Usage: "DmaScheduleBuild.cmd <Build Number> <Time> [/NEXT:Date | /EVERY:Date]"
:End
endlocal