diff --git a/scripts/Update-PC-CompleteAsset.ps1 b/scripts/Update-PC-CompleteAsset.ps1 index 195cd75..0aff324 100644 --- a/scripts/Update-PC-CompleteAsset.ps1 +++ b/scripts/Update-PC-CompleteAsset.ps1 @@ -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 {