Complete project organization: move all DOS files to projects/dataforth-dos, create client folders, update Claude config

This commit is contained in:
2026-01-20 16:02:58 -07:00
parent 2cb4cd1006
commit 4efceab2e3
87 changed files with 3653 additions and 111 deletions

20
temp-check-nas-files.ps1 Normal file
View File

@@ -0,0 +1,20 @@
$password = ConvertTo-SecureString 'Paper123!@#' -AsPlainText -Force
$cred = New-Object System.Management.Automation.PSCredential('INTRANET\sysadmin', $password)
Write-Host "=== Checking AD2 BAT files ===" -ForegroundColor Cyan
Invoke-Command -ComputerName 192.168.0.6 -Credential $cred -ScriptBlock {
$files = @('CHECKUPD.BAT', 'CTONW.BAT', 'DEPLOY.BAT', 'UPDATE.BAT')
foreach ($file in $files) {
$path = "C:\Shares\test\COMMON\ProdSW\$file"
if (Test-Path $path) {
$item = Get-Item $path
Write-Host "$file - Last Modified: $($item.LastWriteTime)" -ForegroundColor Green
} else {
Write-Host "$file - NOT FOUND" -ForegroundColor Red
}
}
}
Write-Host ""
Write-Host "=== Checking NAS BAT files ===" -ForegroundColor Cyan
# Connect to NAS via SSH and check files