7.7 KiB
7.7 KiB
Dataforth DOS - Session Log: 2026-01-21
Project: Dataforth DOS Update System Client: Dataforth Duration: ~2 hours Status: DSCDATA sync issue fixed, batch files updated
Session Summary
What Was Accomplished
-
Diagnosed DSCDATA Sync Issue
- DOS machines were getting wrong/outdated DSCDATA files
- AD2 had newer files (Jan 2026, DSCMAIN4.DAT 65,508 bytes)
- NAS had old files (Dec 2025, DSCMAIN4.DAT 64,395 bytes)
- Root cause: Ate/ProdSW folder was NOT in AD2->NAS sync script
-
Fixed DSCDATA Sync
- Manually copied correct files from AD2 to NAS via SCP
- Updated Sync-FromNAS.ps1 on AD2 to include Ate/ProdSW folder
- All 8 ATE subfolders now sync automatically
-
Updated Batch Files
- NWTOC.BAT v3.5: Uses COPY instead of XCOPY, no >NUL redirects
- DEPLOY.BAT v2.4: Uses COPY instead of XCOPY
-
Git Checkpoint Created
- Commit:
fd24a0c- "fix(dataforth-dos): DOS 6.22 batch file improvements and sync fix"
- Commit:
Key Decisions Made
-
Use COPY instead of XCOPY for all operations
- Rationale: XCOPY has unpredictable behavior in DOS 6.22
- XCOPY can hang waiting for input even with /Y flag
- COPY is simpler and more reliable
-
Add IF NOT EXIST checks before MD commands
- Rationale: Avoids "Directory already exists" error messages
- Cleaner output for users
-
Update sync script to include Ate/ProdSW
- Rationale: This folder contains shared ATE data for all machines
- Was overlooked in original sync script design
Problems Encountered and Solutions
Problem 1: DOS machines getting wrong DSCDATA files
- Symptom: DSCMAIN4.DAT was 64,395 bytes instead of 65,508 bytes
- Investigation: Compared AD2 vs NAS file sizes and dates
- Root cause: Ate/ProdSW folder not in sync script
- Solution: Added Ate/ProdSW to Sync-FromNAS.ps1, manually synced files
Problem 2: AD2 network connectivity intermittent
- Symptom: SSH and SMB connections timing out
- Solution: Used multiple connection methods, eventually mounted via Finder
Credentials
AD2 (Production Server - 192.168.0.6)
- Host: 192.168.0.6
- Domain: INTRANET
- User: INTRANET\sysadmin
- Password: Paper123!@#
- Share Access: \192.168.0.6\C$ (admin share)
- Local Path: C:\Shares\test
D2TESTNAS (SMB1 Proxy - 192.168.0.9)
- Host: 192.168.0.9
- SSH User: root
- SSH Auth: ED25519 key (passwordless from Mac)
- Web Admin: admin / Paper123!@#-nas
- Share Path: /data/test (maps to T:\ on DOS machines)
ClaudeTools (for reference)
- Database: 172.16.3.30:3306
- Database Name: claudetools
- Database User: claudetools
- Database Password: CT_e8fcd5a3952030a79ed6debae6c954ed
- API: http://172.16.3.30:8001
Infrastructure & Servers
AD2 File Locations
- Software Updates: C:\Shares\test\COMMON\ProdSW\
- ATE Data Folders: C:\Shares\test\Ate\ProdSW\
- 5BDATA, 7BDATA, 8BDATA, DSCDATA, HVDATA, PWRDATA, RMSDATA, SCTDATA
- Sync Script: C:\Shares\test\scripts\Sync-FromNAS.ps1
- Sync Schedule: Every 15 minutes via Windows Task Scheduler
NAS File Locations
- Software Updates: /data/test/COMMON/ProdSW/
- ATE Data Folders: /data/test/Ate/ProdSW/
- Machine Folders: /data/test/TS-XX/
DOS Machine Paths
- Network Drive T: \D2TESTNAS\test (SMB1)
- Local Batch Files: C:\BAT\
- Local ATE Data: C:\ATE\
- ATE Subfolders: C:\ATE\5BDATA, C:\ATE\7BDATA, C:\ATE\8BDATA, C:\ATE\DSCDATA, etc.
Commands & Outputs
Check DSCDATA on NAS
ssh root@192.168.0.9 "ls -la /data/test/Ate/ProdSW/DSCDATA/"
Output (before fix):
-rw-r--r--+ 1 root root 64395 Dec 14 20:03 DSCMAIN4.DAT
Check DSCDATA on AD2
ls -la "/Volumes/C$/Shares/test/Ate/ProdSW/DSCDATA/"
Output:
-rwx------ 1 azcomputerguru staff 65508 Jan 16 12:35 DSCMAIN4.DAT
Sync DSCDATA to NAS
scp "/Volumes/C$/Shares/test/Ate/ProdSW/DSCDATA/"* root@192.168.0.9:/data/test/Ate/ProdSW/DSCDATA/
Verify after sync
ssh root@192.168.0.9 "ls -la /data/test/Ate/ProdSW/DSCDATA/"
Output (after fix):
-rw-r--r--+ 1 root root 65508 Jan 21 13:42 DSCMAIN4.DAT
Configuration Changes
Files Modified
NWTOC.BAT (v3.5)
- Path:
/Users/azcomputerguru/ClaudeTools/projects/dataforth-dos/batch-files/NWTOC.BAT - Deployed to: NAS
/data/test/COMMON/ProdSW/NWTOC.BAT - Deployed to: AD2
C:\Shares\test\COMMON\ProdSW\NWTOC.BAT - Changes:
- Switched from XCOPY to COPY
- Removed all >NUL redirects
- Added IF NOT EXIST checks before MD
- Added 8 ATE data folder copies (DSCDATA, 5BDATA, 7BDATA, etc.)
- Removed machine-specific section
- Removed MACHINE variable requirement
DEPLOY.BAT (v2.4)
- Path:
/Users/azcomputerguru/ClaudeTools/projects/dataforth-dos/batch-files/DEPLOY.BAT - Deployed to: NAS and AD2
- Changes:
- Switched all XCOPY to COPY
- Simplified output messages
Sync-FromNAS.ps1 (on AD2)
- Path:
C:\Shares\test\scripts\Sync-FromNAS.ps1 - Changes: Added new section to sync Ate/ProdSW folder:
# Sync Ate/ProdSW (shared ATE data folders - 5BDATA, 7BDATA, 8BDATA, DSCDATA, etc.)
Write-Log "Syncing Ate/ProdSW data folders..."
$ateProdSwPath = "$AD2_TEST_PATH\Ate\ProdSW"
if (Test-Path $ateProdSwPath) {
$ateFiles = Get-ChildItem -Path $ateProdSwPath -File -Recurse -ErrorAction SilentlyContinue
foreach ($file in $ateFiles) {
$relativePath = $file.FullName.Substring($ateProdSwPath.Length + 1).Replace('\', '/')
$remotePath = "$NAS_DATA_PATH/Ate/ProdSW/$relativePath"
# ... copy logic ...
}
}
DOS 6.22 Compatibility Notes (Updated)
Commands That DON'T Work
- XCOPY /I flag - "Invalid switch"
- XCOPY /D without date - "Invalid number of parameters"
- 2>NUL (stderr redirect) - "Too many parameters"
-
NUL sometimes causes hanging
Commands That Work Reliably
- COPY (simple file copy)
- MD directory (create directory)
- IF NOT EXIST path*.* (check if directory has files)
- IF EXIST file*.* (check if files exist)
Best Practices
- Use COPY instead of XCOPY for flat files
- Use IF NOT EXIST checks before MD to avoid errors
- Don't redirect to NUL unless necessary
- Don't use 2>NUL (DOS 6.22 doesn't support it)
Pending/Incomplete Tasks
Immediate
- DSCDATA files synced to NAS (completed)
- Sync script updated to include Ate/ProdSW (completed)
- Test on a DOS machine to verify files copy correctly
Future
- Investigate test data database on AD2 port 3000 (user mentioned, couldn't access)
- Document the testdatadb application if found
Reference Information
File Versions (Current)
| File | Version | Date |
|---|---|---|
| NWTOC.BAT | 3.5 | 2026-01-21 |
| DEPLOY.BAT | 2.4 | 2026-01-21 |
| CTONW.BAT | 2.5 | 2026-01-20 |
| UPDATE.BAT | 2.3 | 2026-01-20 |
| CHECKUPD.BAT | 1.3 | 2026-01-20 |
ATE Data Folders (9 total)
- 5BDATA
- 7BDATA
- 8BDATA
- DSCDATA
- HVDATA
- PWRDATA
- RMSDATA
- SCTDATA
- (root files in Ate/ProdSW/)
Git Commits This Session
fd24a0c- fix(dataforth-dos): DOS 6.22 batch file improvements and sync fix
Network Topology
Admin deposits files on AD2
|
v
[AD2 Server]
192.168.0.6
C:\Shares\test\
|
| (Sync-FromNAS.ps1 every 15 min)
v
[D2TESTNAS]
192.168.0.9
/data/test/
|
| (SMB1 protocol)
v
[DOS Machines]
TS-1L through TS-27
T:\ = \\D2TESTNAS\test
Session Metrics
- Session Duration: ~2 hours
- Issues Fixed: 1 major (DSCDATA sync)
- Files Modified: 3 (NWTOC.BAT, DEPLOY.BAT, Sync-FromNAS.ps1)
- Git Commits: 1
Session End: 2026-01-21 13:50 Next Session: Test NWTOC on DOS machine, investigate testdatadb