Question : .bat file yields "the system cannot find the path specified" error

Would greatly appreciate assistance with this issue I am having with a batch file.....

I run the batch script below with the goal in mind of executing three other batch files in three different locations all at once... even though I verified the locations I entered in the script is correct I am getting the error "the system cannot find the path specified for all three. Please advise... thanks!



@ECHO This script runs all the batch files to deploy 4.1 builds
@ECHO Do you want to continue?
@ECHO OFF
PAUSE

goto START


REM ***********************************************************************************
REM  Batch file for Build Deployments (4.1.1.6603, 4.1.1.6659, 4.1.1.6712, 4.1.1.6751)
REM
REM  Version 1.0 By LMS As Of: 10:18 AM 07/01/2010
REM ***********************************************************************************


:START

@ECHO Running batch files for 4.1 builds . . .


@ECHO . . . Build 4.1.1.6603
cd..
cd Build 4.1.1.6603
START /b /wait C:\Projects\Build 4.1.1.6603\[4.1.1.6603]Run_Build_Scripts.bat
cd..


@ECHO . . . Build 4.1.1.6659
cd Build 4.1.1.6659
START /b /wait C:\Projects\Build 4.1.1.6659\[4.1.1.6659]Run_Build_Scripts.bat
cd..


@ECHO . . . Build 4.1.1.6712
cd Build 4.1.1.6712
START /b /wait C:\Projects\Build 4.1.1.6712\[4.1.1.6712]Run_Build_Scripts.bat
cd..


@ECHO . . . Build 4.1.1.6751
cd Build 4.1.1.6751
START /b /wait C:\Projects\Build 4.1.1.6751\[4.1.1.6751]Run_Build_Scripts.bat
cd..




@ECHO Done

goto END

:END
exit

Answer : .bat file yields "the system cannot find the path specified" error

Take the computers off the old domain and put them in a work group. get the new domain up. then re add them. once they are on the new domain you can take the files off the old profile and bring them to the new profile. i'm sure users will get crabby if their Excel icon isn't in the exact spot they left them.
unless these are all new computers. then there is nothing to worry about.
Random Solutions  
 
programming4us programming4us