Mixed-case paths caused "invalid directory" on TS-27. All paths now uppercase to match DOS convention and Samba default case = upper setting. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
428 B
Batchfile
12 lines
428 B
Batchfile
@ECHO OFF
|
|
REM Computer to Network - Upload text datasheet files to network
|
|
REM Version: 2.2 - All uppercase paths for DOS 6.22 compatibility
|
|
REM Last modified: 2026-03-28
|
|
|
|
ECHO .....................................................
|
|
ECHO Archiving text datasheet files to network...
|
|
MD T:\STAGE
|
|
MD T:\STAGE\%MACHINE%
|
|
COPY /Y C:\STAGE\*.TXT T:\STAGE\%MACHINE%\
|
|
ECHO .....................................................
|