Batch Inhalt:Anhand der Daten aus Textdatei im Batch-Skript
FOR /F "tokens=1,*" %%i IN (list.txt) DO (
cd "%%j"
Echo %CD%
pause
)
Execution Lauf:
C:\Dwn>tmp1.bat
C:\Dwn>FOR /F "tokens=1,*" %i IN (list.txt) DO (
cd "%j"
Echo C:\Dwn
pause
)
C:\Dwn>(
cd "%APPDATA%\Microsoft\Windows\Start Menu\Programs\Administrative Tools"
Echo C:\Dwn
pause
)
The system cannot find the path specified.
C:\Dwn
Press any key to continue . . .
Wie kommt the system cannot find the path specified
? Wenn ich den Befehl cd
kopiere und ihn selbst ausführe, funktioniert es einwandfrei.
vielen dank! für beide Lösungen und Erklärung – flamey