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.
 
 
 
 
 
 

29 lines
513 B

@echo off
REM
REM Propagates the binaries and the cab to the ADSI share
REM
IF "%1" == "" (
Echo No locale specified, defaulting to usa
set LOC=usa
) ELSE (
set LOC=%1
)
IF "%2" == "" (
Echo no build number specified, defaulting to propagate test build
set BUILD=Test
) ELSE (
set BUILD=%2
)
set PROP_LOC=\\adsi\release\%BUILD%\%LOC%
REM Preparing for propapage location
if not exist %PROP_LOC% (
md %PROP_LOC%
)
Echo Propagating dsclient to a release share...
xcopy /y .\release\%LOC%\*.* %PROP_LOC%