UDC settings: pre-stage from server backups, fix arg format, action prompts

Root cause found via decompiling UDC_Setup.exe: it never writes
udc_settings.json from CLI args. Instead it pulls
Settings_Backups\udc_settings_<num>.json from \\tsgwp00525\shared\SPC\UDC
-- which is unreachable at imaging time (no SFLD creds yet). Silent
File.Exists() false, settings never copy, UDC lands on Evendale defaults.

Fix: stage 80 udc_settings_*.json backups under
shopfloor-setup/Standard/udc-backups/ (same tree as ntlars-backups,
xcopy'd to C:\Enrollment\ by existing startnet.cmd). 00-PreInstall
pre-creates C:\ProgramData\UDC\udc_settings.json from the matching
backup BEFORE UDC_Setup.exe runs. Installer's server-side copy silently
fails (unreachable), our pre-staged file survives.

Also:
- preinstall.json UDC InstallArgs corrected: "West Jefferson" -9999
  (quoted spaced site + dash-prefixed number, confirmed via decompile)
- Update-MachineNumber.ps1 UDC.exe relaunch: quoted site + dash number
- Monitor-IntuneProgress: action prompts (Select Device Category after
  Phase 1; Initiate ARTS Lockdown after Phase 5/creds), Display flow
  (3-phase: Registration -> Config -> Lockdown), Phase 6 IME-based
  lockdown detection

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
cproudlock
2026-04-16 08:44:34 -04:00
parent db55bd772a
commit 85e74e5dd1
84 changed files with 4419 additions and 97 deletions

View File

@@ -138,7 +138,7 @@
"Name": "UDC", "Name": "UDC",
"Installer": "UDC_Setup.exe", "Installer": "UDC_Setup.exe",
"Type": "EXE", "Type": "EXE",
"InstallArgs": "WestJefferson -9999", "InstallArgs": "\"West Jefferson\" -9999",
"KillAfterDetection": true, "KillAfterDetection": true,
"DetectionMethod": "Registry", "DetectionMethod": "Registry",
"DetectionPath": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\UDC", "DetectionPath": "HKLM:\\SOFTWARE\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\UDC",

View File

@@ -122,21 +122,20 @@ if (-not $config.Applications) {
Write-PreInstallLog "Staged installer dir: $installerDir" Write-PreInstallLog "Staged installer dir: $installerDir"
Write-PreInstallLog "Found $($config.Applications.Count) app entries in preinstall.json" Write-PreInstallLog "Found $($config.Applications.Count) app entries in preinstall.json"
# --- Site-name override: replace 'WestJefferson' (compact, no space) in # --- Site-name override: replace 'West Jefferson' in InstallArgs if
# InstallArgs if site-config says otherwise. UDC_Setup.exe expects the # site-config says otherwise. UDC_Setup.exe expects the spaced site
# compact site name as positional arg 1; the spaced variant is used in # name in quotes as arg 1, with a dash-prefixed machine number as arg 2.
# other places (eDNC SITESELECTED MSI property) but not here.
$siteConfig = Get-SiteConfig $siteConfig = Get-SiteConfig
if ($siteConfig -and $siteConfig.siteNameCompact -and $siteConfig.siteNameCompact -ne 'WestJefferson') { if ($siteConfig -and $siteConfig.siteName -and $siteConfig.siteName -ne 'West Jefferson') {
Write-PreInstallLog "Site config loaded - siteNameCompact: $($siteConfig.siteNameCompact)" Write-PreInstallLog "Site config loaded - siteName: $($siteConfig.siteName)"
foreach ($app in $config.Applications) { foreach ($app in $config.Applications) {
if ($app.InstallArgs -and $app.InstallArgs -match 'WestJefferson') { if ($app.InstallArgs -and $app.InstallArgs -match 'West Jefferson') {
$app.InstallArgs = $app.InstallArgs -replace 'WestJefferson', $siteConfig.siteNameCompact $app.InstallArgs = $app.InstallArgs -replace 'West Jefferson', $siteConfig.siteName
Write-PreInstallLog " Overrode site name in $($app.Name) args: $($app.InstallArgs)" Write-PreInstallLog " Overrode site name in $($app.Name) args: $($app.InstallArgs)"
} }
} }
} else { } else {
Write-PreInstallLog "No site-config override for siteNameCompact (using defaults in preinstall.json)" Write-PreInstallLog "No site-config override for siteName (using defaults in preinstall.json)"
} }
# --- Machine-number override: replace "9999" in UDC InstallArgs if tech entered a number --- # --- Machine-number override: replace "9999" in UDC InstallArgs if tech entered a number ---
@@ -158,6 +157,29 @@ if (Test-Path -LiteralPath $machineNumFile) {
Write-PreInstallLog "No machine-number.txt found (using 9999 default)" Write-PreInstallLog "No machine-number.txt found (using 9999 default)"
} }
# --- Pre-stage UDC settings backup if available. UDC_Setup.exe tries to
# pull udc_settings_<num>.json from \\tsgwp00525\shared\SPC\UDC\Settings_Backups\,
# but at imaging time that share is unreachable (no SFLD creds yet).
# We carry a local mirror of Settings_Backups on the PXE server at
# Y:\pre-install\udc-backups\. Pre-creating C:\ProgramData\UDC\udc_settings.json
# before UDC_Setup.exe runs means the installer's File.Copy (overwrite:true)
# would overwrite it IF the share were reachable, but since it isn't, our
# pre-staged file survives and UDC launches with correct settings.
if ($machineNum -and $machineNum -ne '9999') {
$udcBackupDir = 'C:\Enrollment\shopfloor-setup\Standard\udc-backups'
$udcBackup = Join-Path $udcBackupDir "udc_settings_$machineNum.json"
$udcTarget = 'C:\ProgramData\UDC\udc_settings.json'
if (Test-Path -LiteralPath $udcBackup) {
if (-not (Test-Path 'C:\ProgramData\UDC')) {
New-Item -Path 'C:\ProgramData\UDC' -ItemType Directory -Force | Out-Null
}
Copy-Item -Path $udcBackup -Destination $udcTarget -Force
Write-PreInstallLog "Pre-staged UDC settings from $udcBackup -> $udcTarget"
} else {
Write-PreInstallLog "No UDC settings backup for machine $machineNum in $udcBackupDir"
}
}
# --- Detection helper (mirrors Simple-Install.ps1's Test-ApplicationInstalled) --- # --- Detection helper (mirrors Simple-Install.ps1's Test-ApplicationInstalled) ---
function Test-AppInstalled { function Test-AppInstalled {
param($App) param($App)

View File

@@ -571,47 +571,40 @@ function Format-Snapshot {
} }
$lines += " $(Get-Date -Format 'yyyy-MM-dd HH:mm:ss')" $lines += " $(Get-Date -Format 'yyyy-MM-dd HH:mm:ss')"
$lines += "" $lines += ""
$lines += " ============================================" foreach ($l in $lines) { Write-Host $l }
Write-Host " ============================================"
# Phase 1 # Phase 1: Intune Registration
$p1Done = ($Snap.Phase1.AzureAdJoined -and $Snap.Phase1.IntuneEnrolled -and
$Snap.Phase1.EmTaskExists -and $Snap.Phase1.PoliciesArriving)
$p1Status = Get-PhaseStatus @( $p1Status = Get-PhaseStatus @(
@{ Ok = $Snap.Phase1.AzureAdJoined; Failed = $false }, @{ Ok = $Snap.Phase1.AzureAdJoined; Failed = $false },
@{ Ok = $Snap.Phase1.IntuneEnrolled; Failed = $false }, @{ Ok = $Snap.Phase1.IntuneEnrolled; Failed = $false },
@{ Ok = $Snap.Phase1.EmTaskExists; Failed = $false }, @{ Ok = $Snap.Phase1.EmTaskExists; Failed = $false },
@{ Ok = $Snap.Phase1.PoliciesArriving; Failed = $false } @{ Ok = $Snap.Phase1.PoliciesArriving; Failed = $false }
) )
$lines += $null # placeholder - rendered with color below
$p1Index = $lines.Count - 1 # Phase 6 / Lockdown (shared by both flows, rendered last)
$p6Status = Get-PhaseStatus @(
@{ Ok = $Snap.Phase6.RemediationApplied; Failed = $false },
@{ Ok = $Snap.Phase6.DetectionPassed; Failed = $false }
)
if (-not $skipDsc) { if (-not $skipDsc) {
# Phase 2 # ---- Standard / CMM / etc. (DSC flow) ----
$phase1Done = ($Snap.Phase1.AzureAdJoined -and $Snap.Phase1.IntuneEnrolled) # Phases: 1 Registration -> 2 Config -> 3 Deployment -> 4 Apps -> 5 Creds -> 6 Lockdown
$phase2Done = ($Snap.Phase2.SfldRoot -and $Snap.Phase2.FunctionOk -and $Snap.Phase2.SasTokenOk)
$p2Done = ($Snap.Phase2.SfldRoot -and $Snap.Phase2.FunctionOk -and $Snap.Phase2.SasTokenOk)
$p2Status = Get-PhaseStatus @( $p2Status = Get-PhaseStatus @(
@{ Ok = $Snap.Phase2.SfldRoot; Failed = $false }, @{ Ok = $Snap.Phase2.SfldRoot; Failed = $false },
@{ Ok = $Snap.Phase2.FunctionOk; Failed = $false }, @{ Ok = $Snap.Phase2.FunctionOk; Failed = $false },
@{ Ok = $Snap.Phase2.SasTokenOk; Failed = $false } @{ Ok = $Snap.Phase2.SasTokenOk; Failed = $false }
) )
$lines += $null
$p2Index = $lines.Count - 1
$p2Action = $null
if ($phase1Done -and -not $phase2Done) {
$p2Action = ' >> Assign device category in Intune portal'
}
# Phase 3
$p3Status = Get-PhaseStatus @( $p3Status = Get-PhaseStatus @(
@{ Ok = $Snap.Phase3.DeployComplete; Failed = $false }, @{ Ok = $Snap.Phase3.DeployComplete; Failed = $false },
@{ Ok = $Snap.Phase3.InstallComplete; Failed = $false } @{ Ok = $Snap.Phase3.InstallComplete; Failed = $false }
) )
$lines += $null $p4HasFailed = $false; $p4AllDone = $true; $p4AnyStarted = $false
$p3Index = $lines.Count - 1
# Phase 4
$p4HasFailed = $false
$p4AllDone = $true
$p4AnyStarted = $false
if ($Snap.Phase4 -and $Snap.Phase4.Count -gt 0) { if ($Snap.Phase4 -and $Snap.Phase4.Count -gt 0) {
foreach ($s in $Snap.Phase4) { foreach ($s in $Snap.Phase4) {
if ($s.Status -eq 'failed') { $p4HasFailed = $true } if ($s.Status -eq 'failed') { $p4HasFailed = $true }
@@ -619,73 +612,53 @@ function Format-Snapshot {
if ($s.Status -ne 'pending') { $p4AnyStarted = $true } if ($s.Status -ne 'pending') { $p4AnyStarted = $true }
} }
} else { $p4AllDone = $false } } else { $p4AllDone = $false }
$p4Status = if ($p4HasFailed) { 'FAILED' } $p4Status = if ($p4HasFailed) { 'FAILED' } elseif ($p4AllDone) { 'COMPLETE' } elseif ($p4AnyStarted) { 'IN PROGRESS' } else { 'WAITING' }
elseif ($p4AllDone) { 'COMPLETE' }
elseif ($p4AnyStarted) { 'IN PROGRESS' }
else { 'WAITING' }
$lines += $null
$p4Index = $lines.Count - 1
# Phase 5 $p5Done = ($Snap.Phase5.ConsumeCredsTask -and $Snap.Phase5.CredsPopulated)
$p5Status = Get-PhaseStatus @( $p5Status = Get-PhaseStatus @(
@{ Ok = $Snap.Phase5.ConsumeCredsTask; Failed = $false }, @{ Ok = $Snap.Phase5.ConsumeCredsTask; Failed = $false },
@{ Ok = $Snap.Phase5.CredsPopulated; Failed = $false } @{ Ok = $Snap.Phase5.CredsPopulated; Failed = $false }
) )
$lines += $null
$p5Index = $lines.Count - 1
# Phase 6 # Render
$p6Status = Get-PhaseStatus @( Write-Host ' 1. Intune Registration ' -NoNewline; Format-StatusTag $p1Status; Write-Host ''
@{ Ok = $Snap.Phase6.RemediationApplied; Failed = $false }, if ($p1Done -and -not $p2Done) {
@{ Ok = $Snap.Phase6.DetectionPassed; Failed = $false } Write-Host ' >> Select Device Category in Intune portal' -ForegroundColor Yellow
) }
$lines += $null Write-Host ' 2. Device Configuration ' -NoNewline; Format-StatusTag $p2Status; Write-Host ''
$p6Index = $lines.Count - 1 Write-Host ' 3. Software Deployment ' -NoNewline; Format-StatusTag $p3Status; Write-Host ''
Write-Host ' 4. Application Install ' -NoNewline; Format-StatusTag $p4Status; Write-Host ''
Write-Host ' 5. Credential Setup ' -NoNewline; Format-StatusTag $p5Status; Write-Host ''
if ($p5Done -and $p6Status -ne 'COMPLETE') {
Write-Host ' >> Initiate ARTS Lockdown request' -ForegroundColor Yellow
}
Write-Host ' 6. Lockdown ' -NoNewline; Format-StatusTag $p6Status; Write-Host ''
} else {
# ---- Display (no DSC, no credentials) ----
# Phases: 1 Registration -> 2 Device Configuration -> 3 Lockdown
# Device Configuration for Display = policies arriving from Intune.
$p2DisplayDone = $Snap.Phase1.PoliciesArriving
$p2DisplayStatus = if ($p2DisplayDone) { 'COMPLETE' }
elseif ($p1Done) { 'IN PROGRESS' }
else { 'WAITING' }
Write-Host ' 1. Intune Registration ' -NoNewline; Format-StatusTag $p1Status; Write-Host ''
if ($p1Done -and -not $p2DisplayDone) {
Write-Host ' >> Select Device Category in Intune portal' -ForegroundColor Yellow
}
Write-Host ' 2. Device Configuration ' -NoNewline; Format-StatusTag $p2DisplayStatus; Write-Host ''
if ($p2DisplayDone -and $p6Status -ne 'COMPLETE') {
Write-Host ' >> Initiate ARTS Lockdown request' -ForegroundColor Yellow
}
Write-Host ' 3. Lockdown ' -NoNewline; Format-StatusTag $p6Status; Write-Host ''
} }
$lines += " ============================================" Write-Host " ============================================"
$lines += "" Write-Host ""
$sinceSync = ((Get-Date) - $LastSync).TotalSeconds $sinceSync = ((Get-Date) - $LastSync).TotalSeconds
$untilNext = ($NextRetrigger - (Get-Date)).TotalSeconds $untilNext = ($NextRetrigger - (Get-Date)).TotalSeconds
$lines += " Last sync: $(Format-Age $sinceSync) ago | Next: $(Format-Age $untilNext)" Write-Host " Last sync: $(Format-Age $sinceSync) ago | Next: $(Format-Age $untilNext)"
# --- Render with color ---
# Lines are printed manually so phase rows get colored status tags.
# $lines entries that are $null are phase-row placeholders rendered
# inline with Format-StatusTag.
for ($i = 0; $i -lt $lines.Count; $i++) {
if ($null -eq $lines[$i]) {
# Phase row: print label then colored tag
if ($i -eq $p1Index) {
Write-Host ' 1. Intune Registration ' -NoNewline; Format-StatusTag $p1Status; Write-Host ''
}
elseif (-not $skipDsc -and $i -eq $p2Index) {
Write-Host ' 2. Device Configuration ' -NoNewline; Format-StatusTag $p2Status; Write-Host ''
if ($p2Action) { Write-Host $p2Action -ForegroundColor Yellow }
}
elseif (-not $skipDsc -and $i -eq $p3Index) {
Write-Host ' 3. Software Deployment ' -NoNewline; Format-StatusTag $p3Status; Write-Host ''
}
elseif (-not $skipDsc -and $i -eq $p4Index) {
Write-Host ' 4. Application Install ' -NoNewline; Format-StatusTag $p4Status; Write-Host ''
}
elseif (-not $skipDsc -and $i -eq $p5Index) {
Write-Host ' 5. Credential Setup ' -NoNewline; Format-StatusTag $p5Status; Write-Host ''
}
elseif (-not $skipDsc -and $i -eq $p6Index) {
Write-Host ' 6. Lockdown ' -NoNewline; Format-StatusTag $p6Status; Write-Host ''
}
} else {
Write-Host $lines[$i]
}
}
if ($skipDsc) {
Write-Host ''
Write-Host " (Phases 2-6 not applicable for $pcType)" -ForegroundColor DarkGray
}
# Return empty - we rendered directly via Write-Host for color support.
return @() return @()
} }
@@ -900,10 +873,10 @@ try {
Invoke-SetupComplete Invoke-SetupComplete
} }
# No-DSC types (Display, Lab): complete once Phase 1 identity is solid # No-DSC types (Display): wait for lockdown just like DSC types.
if ($skipDsc -and $snap.Phase1.AzureAdJoined -and $snap.Phase1.IntuneEnrolled -and $snap.Phase1.PoliciesArriving) { # Display skips Phases 3-5 (no DSC/creds) but still needs the
Write-Host "" # Intune Remediation lockdown to land before we reboot.
Write-Host "Phase 1 complete - no DSC needed for $pcType. Finishing up." -ForegroundColor Green if ($skipDsc -and $snap.LockdownComplete) {
Invoke-SetupComplete Invoke-SetupComplete
} }

View File

@@ -129,10 +129,9 @@ function Update-MachineNumber {
# --- Relaunch UDC with new args --- # --- Relaunch UDC with new args ---
if ((Test-Path $script:UdcExePath) -and $out.UdcUpdated) { if ((Test-Path $script:UdcExePath) -and $out.UdcUpdated) {
try { try {
# UDC.exe arg signature: positional compact-site (no space), then # UDC.exe arg signature: quoted site name (with space), then
# dash-prefixed machine number. Example: UDC.exe WestJefferson -7605 # dash-prefixed machine number. Example: UDC.exe "West Jefferson" -7605
$siteCompact = ($Site -replace '\s+','') Start-Process -FilePath $script:UdcExePath -ArgumentList @("`"$Site`"", "-$NewNumber")
Start-Process -FilePath $script:UdcExePath -ArgumentList @($siteCompact, "-$NewNumber")
} catch { } catch {
$out.Errors += "UDC relaunch failed: $_" $out.Errors += "UDC relaunch failed: $_"
} }

View File

@@ -0,0 +1,57 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3037",
"MachineNumberDual": "3038",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": true,
"UseSecondComPort": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": false,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8193",
"KeepRelay": "16",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3101",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3102",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3103",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3104",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3105",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3106",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM5",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3107",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3108",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3109",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3110",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3111",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3112",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3113",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,56 @@
{
"GeneralSettings": {
"Site": "West",
"MachineNumber": "3114",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"UseSecondComPort": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,56 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3115",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"UseSecondComPort": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3116",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3117",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3118",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3119",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3120",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3121",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3122",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3123",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3124",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3125",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3126",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3127",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3128",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM5",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3129",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM6",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,49 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3201",
"SerialEthernet": "Serial",
"ControlType": "Okuma",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"InhibitOnOff": false
}
}

View File

@@ -0,0 +1,49 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3202",
"SerialEthernet": "Serial",
"ControlType": "Okuma",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM5",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"InhibitOnOff": false
}
}

View File

@@ -0,0 +1,49 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3203",
"SerialEthernet": "Serial",
"ControlType": "Okuma",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"InhibitOnOff": false
}
}

View File

@@ -0,0 +1,49 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3204",
"SerialEthernet": "Serial",
"ControlType": "Okuma",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"InhibitOnOff": false
}
}

View File

@@ -0,0 +1,49 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3205",
"SerialEthernet": "Serial",
"ControlType": "Okuma",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"InhibitOnOff": false
}
}

View File

@@ -0,0 +1,49 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3206",
"SerialEthernet": "Serial",
"ControlType": "Okuma",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"InhibitOnOff": false
}
}

View File

@@ -0,0 +1,49 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3207",
"SerialEthernet": "Serial",
"ControlType": "Okuma",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"InhibitOnOff": false
}
}

View File

@@ -0,0 +1,49 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3208",
"SerialEthernet": "Serial",
"ControlType": "Okuma",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"InhibitOnOff": false
}
}

View File

@@ -0,0 +1,49 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3209",
"SerialEthernet": "Serial",
"ControlType": "Okuma",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"InhibitOnOff": false
}
}

View File

@@ -0,0 +1,49 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3210",
"SerialEthernet": "Serial",
"ControlType": "Okuma",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"InhibitOnOff": false
}
}

View File

@@ -0,0 +1,49 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3211",
"SerialEthernet": "Serial",
"ControlType": "Okuma",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM2",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"InhibitOnOff": false
}
}

View File

@@ -0,0 +1,49 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "3212",
"SerialEthernet": "Serial",
"ControlType": "Okuma",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"InhibitOnOff": false
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "4001",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM2",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "4002",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "4003",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "4004",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "4005",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "4006",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 7,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "4007",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM5",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "4008",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "11",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "4101",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM5",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.11",
"Port": "8193",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "4102",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.2",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "4103",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7401",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.0.114",
"Port": "8192",
"KeepRelay": "16",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7402",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.0.114",
"Port": "8192",
"KeepRelay": "16",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7403",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.0.114",
"Port": "8192",
"KeepRelay": "16",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7404",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.0.114",
"Port": "8192",
"KeepRelay": "16",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7405",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.0.114",
"Port": "8192",
"KeepRelay": "16",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7501",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7502",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8193",
"KeepRelay": "21",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7503",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8193",
"KeepRelay": "21",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7504",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8193",
"KeepRelay": "21",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7505",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8193",
"KeepRelay": "21",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7506",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8193",
"KeepRelay": "21",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7507",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8193",
"KeepRelay": "21",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7601",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7602",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM5",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7603",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7604",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7605",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,51 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7602",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.rd.ds.ge.com\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.rd.ds.ge.com\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true
},
"EthernetSettings": {
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM3",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7607",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7608",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7801",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM2",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7802",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 7,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7803",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "7804",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8192",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "8001",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8193",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "8002",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM1",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8193",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}

View File

@@ -0,0 +1,55 @@
{
"GeneralSettings": {
"Site": "WestJefferson",
"MachineNumber": "8003",
"SerialEthernet": "Serial",
"ControlType": "eFocas",
"DncType": "eDNC",
"UploadShared": true,
"UploadFTP": false,
"ServerDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\udc\\CLM_Data",
"UploadQCCalc": true,
"QCCalcDataPath": "\\\\tsgwp00525.wjs.geaerospace.net\\shared\\spc\\UDC_Data",
"FtpServerPath": "",
"RemoveInhibitPW": "R3m0ve",
"StartOnBoot": true,
"ShowGUI": true,
"DualPath": false,
"HeaderRequired": true,
"UpdateReminderDelay": 15,
"MTCYesNo": true,
"MTCPort": 6005,
"IsBadgeScan": true,
"AutoScroll": true
},
"EthernetSettings": {
"TCPAddress": "127.0.0.1",
"TCPPort": 0
},
"SerialSettings": {
"ComPort": "COM4",
"BaudRate": 9600,
"Parity": 0,
"DataBits": 8,
"StopBits": 1,
"CycleStart": false
},
"SerialSettingsPath2": {
"ComPort": "COM2",
"BaudRate": 0,
"Parity": 0,
"DataBits": 0,
"StopBits": 1,
"CycleStart": false
},
"FtpSettings": {},
"FocasSettings": {
"IPAddress": "192.168.1.1",
"Port": "8193",
"KeepRelay": "10",
"WriteVar": "101",
"DprntUser": "",
"DprntPassword": "",
"InhibitOnOff": true
}
}