Fix CTONWTXT path case: Stage -> STAGE for DOS 6.22 compatibility
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>
This commit is contained in:
@@ -26,7 +26,7 @@ COPY C:\ATE\VASLOG\*.DAT T:\%MACHINE%\LOGS\VASLOG
|
|||||||
ECHO (2/5) Reports -> T:\%MACHINE%\Reports
|
ECHO (2/5) Reports -> T:\%MACHINE%\Reports
|
||||||
COPY C:\Reports\*.TXT T:\%MACHINE%\Reports
|
COPY C:\Reports\*.TXT T:\%MACHINE%\Reports
|
||||||
|
|
||||||
ECHO (3/5) Text datasheets -> T:\Stage\%MACHINE%
|
ECHO (3/5) Text datasheets -> T:\STAGE\%MACHINE%
|
||||||
CALL C:\BAT\CTONWTXT.BAT
|
CALL C:\BAT\CTONWTXT.BAT
|
||||||
|
|
||||||
ECHO (4/5) Log files -> T:\%MACHINE%
|
ECHO (4/5) Log files -> T:\%MACHINE%
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
@ECHO OFF
|
@ECHO OFF
|
||||||
REM Computer to Network - Upload text datasheet files to network
|
REM Computer to Network - Upload text datasheet files to network
|
||||||
REM Version: 2.1 - Simplified, no cleanup
|
REM Version: 2.2 - All uppercase paths for DOS 6.22 compatibility
|
||||||
REM Last modified: 2026-03-28
|
REM Last modified: 2026-03-28
|
||||||
|
|
||||||
ECHO .....................................................
|
ECHO .....................................................
|
||||||
ECHO Archiving text datasheet files to network...
|
ECHO Archiving text datasheet files to network...
|
||||||
MD T:\Stage
|
MD T:\STAGE
|
||||||
MD T:\Stage\%MACHINE%
|
MD T:\STAGE\%MACHINE%
|
||||||
COPY /Y C:\STAGE\*.TXT T:\Stage\%MACHINE%\
|
COPY /Y C:\STAGE\*.TXT T:\STAGE\%MACHINE%\
|
||||||
ECHO .....................................................
|
ECHO .....................................................
|
||||||
|
|||||||
Reference in New Issue
Block a user