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:
OC-5070
2026-03-28 15:03:33 -07:00
parent a3d7c01bbb
commit 77c23635df
2 changed files with 5 additions and 5 deletions

View File

@@ -26,7 +26,7 @@ COPY C:\ATE\VASLOG\*.DAT T:\%MACHINE%\LOGS\VASLOG
ECHO (2/5) Reports -> 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
ECHO (4/5) Log files -> T:\%MACHINE%

View File

@@ -1,11 +1,11 @@
@ECHO OFF
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
ECHO .....................................................
ECHO Archiving text datasheet files to network...
MD T:\Stage
MD T:\Stage\%MACHINE%
COPY /Y C:\STAGE\*.TXT T:\Stage\%MACHINE%\
MD T:\STAGE
MD T:\STAGE\%MACHINE%
COPY /Y C:\STAGE\*.TXT T:\STAGE\%MACHINE%\
ECHO .....................................................