12 lines
404 B
Batchfile
12 lines
404 B
Batchfile
@ECHO OFF
|
|
REM Computer to Network - Upload text datasheet files to network
|
|
REM Version: 2.1 - Simplified, no cleanup
|
|
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 .....................................................
|