Add Part Marker PC type detection

Added detection for Part Marker PCs (pctypeid 10) based on installed software:
- Part Mark, PartMark
- Telesis, MECCO, Pryor, Gravotech, SIC Marking

Detection order: CMM > Wax Trace > Keyence > EAS1000 > Genspect > Heat Treat > Part Marker > Shopfloor

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
cproudlock
2025-12-09 13:16:29 -05:00
parent 60519c4588
commit b65363224e

View File

@@ -707,6 +707,13 @@ function Get-PCType {
return "Heat Treat"
}
# Part Marker Detection: Part marking software
$hasPartMarker = $installedApps -match "Part\s*Mark|PartMark|Telesis|MECCO|Pryor|Gravotech|SIC Marking"
if ($hasPartMarker) {
Write-Host " [OK] Part Marker software detected - Part Marker PC" -ForegroundColor Cyan
return "Part Marker"
}
return "Shopfloor"
}
} catch {