No conditionals, no DEL. Just MD dirs and COPY. Deployed to AD2 and synced to D2TESTNAS. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
12 lines
393 B
Batchfile
12 lines
393 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 .....................................................
|