Files
shopdb/sql/prod_notifications.sql
cproudlock 4bcaf0913f Complete Phase 2 PC migration and network device infrastructure updates
This commit captures 20 days of development work (Oct 28 - Nov 17, 2025)
including Phase 2 PC migration, network device unification, and numerous
bug fixes and enhancements.

## Major Changes

### Phase 2: PC Migration to Unified Machines Table
- Migrated all PCs from separate `pc` table to unified `machines` table
- PCs identified by `pctypeid IS NOT NULL` in machines table
- Updated all display, add, edit, and update pages for PC functionality
- Comprehensive testing: 15 critical pages verified working

### Network Device Infrastructure Unification
- Unified network devices (Switches, Servers, Cameras, IDFs, Access Points)
  into machines table using machinetypeid 16-20
- Updated vw_network_devices view to query both legacy tables and machines table
- Enhanced network_map.asp to display all device types from machines table
- Fixed location display for all network device types

### Machine Management System
- Complete machine CRUD operations (Create, Read, Update, Delete)
- 5-tab interface: Basic Info, Network, Relationships, Compliance, Location
- Support for multiple network interfaces (up to 3 per machine)
- Machine relationships: Controls (PC→Equipment) and Dualpath (redundancy)
- Compliance tracking with third-party vendor management

### Bug Fixes (Nov 7-14, 2025)
- Fixed editdevice.asp undefined variable (pcid → machineid)
- Migrated updatedevice.asp and updatedevice_direct.asp to Phase 2 schema
- Fixed network_map.asp to show all network device types
- Fixed displaylocation.asp to query machines table for network devices
- Fixed IP columns migration and compliance column handling
- Fixed dateadded column errors in network device pages
- Fixed PowerShell API integration issues
- Simplified displaypcs.asp (removed IP and Machine columns)

### Documentation
- Created comprehensive session summaries (Nov 10, 13, 14)
- Added Machine Quick Reference Guide
- Documented all bug fixes and migrations
- API documentation for ASP endpoints

### Database Schema Updates
- Phase 2 migration scripts for PC consolidation
- Phase 3 migration scripts for network devices
- Updated views to support hybrid table approach
- Sample data creation/removal scripts for testing

## Files Modified (Key Changes)
- editdevice.asp, updatedevice.asp, updatedevice_direct.asp
- network_map.asp, network_devices.asp, displaylocation.asp
- displaypcs.asp, displaypc.asp, displaymachine.asp
- All machine management pages (add/edit/save/update)
- save_network_device.asp (fixed machine type IDs)

## Testing Status
- 15 critical pages tested and verified
- Phase 2 PC functionality: 100% working
- Network device display: 100% working
- Security: All queries use parameterized commands

## Production Readiness
- Core functionality complete and tested
- 85% production ready
- Remaining: Full test coverage of all 123 ASP pages

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-17 20:04:06 -05:00

5109 lines
1.0 MiB

CREATE TABLE IF NOT EXISTS `notifications` (
`notificationid` int(11) NOT NULL AUTO_INCREMENT,
`notificationtypeid` int(11) DEFAULT '1',
`businessunitid` int(11) DEFAULT NULL,
`notification` char(255) DEFAULT NULL,
`starttime` datetime DEFAULT CURRENT_TIMESTAMP,
`endtime` datetime DEFAULT '2099-00-03 09:52:32',
`ticketnumber` char(20) DEFAULT NULL,
`link` varchar(200) DEFAULT NULL,
`isactive` bit(1) DEFAULT b'1',
`isshopfloor` bit(1) NOT NULL DEFAULT b'0',
PRIMARY KEY (`notificationid`),
KEY `idx_notifications_typeid` (`notificationtypeid`),
KEY `idx_businessunitid` (`businessunitid`),
FULLTEXT KEY `notification` (`notification`),
CONSTRAINT `fk_notifications_businessunit` FOREIGN KEY (`businessunitid`) REFERENCES `businessunits` (`businessunitid`) ON DELETE SET NULL,
CONSTRAINT `fk_notifications_type` FOREIGN KEY (`notificationtypeid`) REFERENCES `notificationtypes` (`notificationtypeid`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=66 DEFAULT CHARSET=utf8;
-- Dumping data for table shopdb.notifications: ~56 rows (approximately)
DELETE FROM `notifications`;
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(7, 1, NULL, 'Box Outage', '2025-09-04 14:31:00', '2025-09-05 07:52:00', 'GEINC17791560', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(8, 1, NULL, 'CSF Patching', '2025-09-14 00:00:01', '2025-09-14 06:00:00', 'GECHG2415562', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(9, 1, NULL, 'CSF Patching 2', '2025-09-15 00:00:01', '2025-09-14 06:00:00', 'GECHG2415562', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(10, 1, NULL, 'CCTV Site Visit', '2025-09-19 10:00:00', '2025-09-20 07:53:00', '', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(11, 1, NULL, 'Webmail Outage', '2025-09-11 07:25:42', '2025-09-11 13:37:29', 'GEINC17816883', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(12, 1, NULL, 'Gensuite Outage', '2025-09-17 12:00:00', '2025-09-19 07:53:00', 'GEINC17841038', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(13, 1, NULL, 'Starlink Install Part III:\r\nThe Search for Part II', '2025-10-17 10:00:00', '2025-10-17 13:00:00', '', NULL, b'1', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(14, 1, NULL, 'Possible CSF reboot', '2025-09-19 08:11:09', '2025-09-19 09:46:02', 'GEINC17850386', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(15, 1, NULL, 'DCP Down', '2025-09-19 11:42:15', '2025-09-19 16:45:00', 'GEINC17851757', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(16, 1, NULL, 'IDM Down', '2025-09-22 12:00:57', '2025-09-22 12:35:25', 'GEINC17859080', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(17, 1, NULL, 'Wilmington Vault Switch Refresh', '2025-10-19 00:01:00', '2025-10-19 04:00:00', 'GECHG2436530', NULL, b'1', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(18, 1, NULL, 'Aero Backbone Migration', '2025-10-12 00:00:00', '2025-10-12 06:00:00', NULL, NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(19, 1, NULL, 'Shopfloor Patching', '2025-10-05 02:00:00', '2025-10-07 02:00:00', NULL, NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(20, 1, NULL, 'WAN Upgrades', '2025-09-30 14:00:00', '2025-09-30 16:00:00', 'GECHG2440418', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(21, 1, NULL, 'Webmail Outage', '2025-10-13 08:35:00', '2025-10-13 15:40:00', 'GEINC17938180', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(22, 1, NULL, 'Teamcenter Update', '2025-10-17 18:00:00', '2025-10-18 00:01:00', 'GECHG2448024', NULL, b'1', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(23, 1, NULL, 'Network Switch Software Update', '2025-10-19 00:01:00', '2025-10-19 04:00:00', 'GECHG2453817', NULL, b'1', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(24, 1, NULL, 'Machine Auth Issues', '2025-10-17 14:20:00', '2025-10-17 14:30:00', 'GEINC17962070', NULL, b'1', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(25, 1, NULL, 'Teamcenter not available on shop floor devices', '2025-10-17 14:21:00', '2025-10-17 15:21:00', 'GEINC17962070', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(26, 1, NULL, 'CSF Collections Down', '2025-10-20 10:15:00', '2025-10-20 12:17:00', 'GEINC17967062', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(27, 1, NULL, 'Maximo Planned Outage', '2025-10-26 21:30:00', '2025-10-26 22:30:00', 'GECHG2448721', NULL, b'0', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(28, 1, NULL, 'Starlink IV: A New Hope', '2025-10-22 10:00:00', '2025-10-22 13:00:00', '', NULL, b'1', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(29, 1, NULL, 'Opsvision moved to Aerospace Credentials', '2025-10-27 00:00:00', '2025-10-29 12:00:00', '', NULL, b'1', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(30, 4, NULL, 'Teamcenter DTE is Down', '2025-10-24 09:48:00', '2025-10-27 09:34:00', 'GEINC17914917', NULL, b'0', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(31, 4, NULL, 'Maximo Reports Outage', '2025-10-24 15:49:00', '2025-10-27 13:32:00', 'GEINC17941308', NULL, b'0', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(33, 3, NULL, 'ETQ Hosted Application Patching', '2025-10-28 11:00:00', '2025-10-28 17:00:00', 'GECHG2448045', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(34, 4, NULL, 'Centerpiece SSL Handshake issue\r\n', '2025-10-27 08:00:00', '2025-10-27 09:00:00', 'GEINC17990487', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(36, 3, NULL, 'Starlink Setup - No Outage Expected', '2025-10-29 10:30:00', '2025-10-29 11:30:00', 'GECHG2440270', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(37, 1, NULL, 'Cameron is the Mac Daddy', '2025-10-27 15:17:00', '2025-10-28 08:09:30', '1992', NULL, b'0', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(38, 3, NULL, 'Storage Upgrade - No Outage', '2025-10-30 20:00:00', '2025-10-31 02:00:00', 'GECHG2460739', NULL, b'1', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(39, 3, NULL, 'Starlink Failover Test - Possible Outage', '2025-11-05 14:00:00', '2025-11-05 14:17:00', 'GECHG2459204', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(40, 4, NULL, 'ETQ Licensing Error', '2025-10-28 09:01:00', '2025-10-28 09:59:00', 'GEINC17995228', NULL, b'0', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(41, 3, NULL, 'West Jeff Vault F5 Decom', '2025-10-31 11:30:00', '2025-10-31 12:00:00', 'GECHG2463796', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(43, 3, NULL, 'ShopFloor PC Patching', '2025-11-02 02:00:00', '2025-11-02 04:00:00', '', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(44, 4, NULL, 'Outlook Email Outage - Secure Email Error - ETR : 7:30pm', '2025-10-29 12:23:00', '2025-10-29 17:42:23', 'GEINC18002216', NULL, b'0', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(45, 4, NULL, 'CSF DOWN - Please test Data Collections', '2025-10-30 00:01:00', '2025-10-30 16:40:00', 'GEINC18004847', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(46, 4, NULL, 'DTE - Digital Thread is down', '2025-10-30 10:53:00', '2025-10-30 13:17:00', 'GEINC18006759', NULL, b'0', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(47, 4, NULL, 'ENMS is Down - Clear Cache if still having issues', '2025-10-31 08:15:00', '2025-10-31 08:47:00', 'GEINC18010318', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(48, 2, NULL, 'Weld Data Sheets are now working', '2025-10-31 08:19:00', '2025-10-31 23:59:00', '', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(49, 2, NULL, 'Discontinue Manual Data Collection - Use DCP', '2025-10-31 08:26:00', '2025-10-31 23:59:00', '', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(50, 3, NULL, 'ETQ Upgrade', '2025-11-06 17:00:00', '2025-11-06 18:00:00', 'GECHG2428294', NULL, b'1', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(51, 2, NULL, 'AVEWP1760v02 - Historian Move To Aero', '2026-03-12 09:01:00', '2026-03-12 21:02:00', '', NULL, b'1', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(52, 3, NULL, 'UDC Update - Reboot to get latest version', '2025-11-05 08:09:00', '2025-11-12 08:24:00', '', NULL, b'0', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(53, 4, NULL, 'Zscaler 504 Error Gateway Timeout', '2025-11-05 10:10:00', '2025-11-05 11:12:00', 'GEINC18026733', NULL, b'0', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(54, 2, NULL, 'Nick Reach Last Day', '2025-11-06 10:34:00', '2025-11-12 17:00:00', '', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(55, 4, NULL, 'BlueSSO not working', '2025-11-07 09:32:00', '2025-11-07 10:23:30', 'GEINC18034515', NULL, b'0', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(56, 3, NULL, 'CSF Monthly Patching', '2025-11-16 00:01:00', '2025-11-16 06:00:00', '', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(57, 2, NULL, 'IP helper update on AIRsdMUSwestj02', '2025-11-11 01:30:00', '2025-11-11 05:30:00', 'GECHG2470228', NULL, b'1', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(58, 2, NULL, 'Maximo Requires Aerospace Password', '2025-11-10 12:00:00', '2025-11-13 11:43:00', 'GECHG2463983', NULL, b'0', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(59, 3, NULL, 'Switch Reboot - Happening Now', '2025-11-12 14:00:00', '2025-11-12 14:52:00', 'GECHG2466904', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(60, 3, NULL, 'Smartsheets -> Aerospace Logon', '2025-11-14 13:00:00', '2025-11-20 12:00:00', '', NULL, b'1', b'0');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(61, 3, NULL, 'HR Central / Workday / Others Will Require Aerospace password', '2025-11-15 09:11:00', '2025-11-19 09:12:00', '', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(62, 3, NULL, 'Kronos Patching / Outage', '2025-11-15 22:00:00', '2025-11-16 03:00:00', 'GECHG2471150', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(63, 4, NULL, 'Centerpiece - Down for Remote Users', '2025-11-11 13:01:00', '2025-11-11 13:43:00', 'GEINC18043063', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(64, 2, NULL, 'Non-Shelf Life Controlled Material Labeling\r\nAlcohol, Acetone, Distilled Water, Surface Plate Cleaner, Dykem Stain\r\nSee Coach or Crystal for needed labels', '2025-11-12 09:34:00', '2025-11-19 23:59:00', '', NULL, b'1', b'1');
INSERT INTO `notifications` (`notificationid`, `notificationtypeid`, `businessunitid`, `notification`, `starttime`, `endtime`, `ticketnumber`, `link`, `isactive`, `isshopfloor`) VALUES
(65, 2, NULL, 'Fake DHL Delivery Notification Email\r\nDO NOT CLICK LINK', '2025-11-12 09:58:00', '2025-11-14 09:59:00', '', NULL, b'1', b'1');
-- Dumping structure for table shopdb.notificationtypes
CREATE TABLE IF NOT EXISTS `notificationtypes` (
`notificationtypeid` int(11) NOT NULL AUTO_INCREMENT,
`typename` varchar(50) NOT NULL,
`typedescription` varchar(255) DEFAULT NULL,
`typecolor` varchar(20) DEFAULT NULL,
`isactive` bit(1) DEFAULT b'1',
PRIMARY KEY (`notificationtypeid`),
UNIQUE KEY `idx_typename` (`typename`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8;
-- Dumping data for table shopdb.notificationtypes: ~4 rows (approximately)
DELETE FROM `notificationtypes`;
INSERT INTO `notificationtypes` (`notificationtypeid`, `typename`, `typedescription`, `typecolor`, `isactive`) VALUES
(1, 'TBD', 'Type to be determined', 'success', b'1');
INSERT INTO `notificationtypes` (`notificationtypeid`, `typename`, `typedescription`, `typecolor`, `isactive`) VALUES
(2, 'Awareness', 'General awareness notification', 'success', b'1');
INSERT INTO `notificationtypes` (`notificationtypeid`, `typename`, `typedescription`, `typecolor`, `isactive`) VALUES
(3, 'Change', 'Scheduled change or maintenance', 'warning', b'1');
INSERT INTO `notificationtypes` (`notificationtypeid`, `typename`, `typedescription`, `typecolor`, `isactive`) VALUES
(4, 'Incident', 'Active incident or outage', 'danger', b'1');
-- Dumping structure for table shopdb.operatingsystems
CREATE TABLE IF NOT EXISTS `operatingsystems` (
`osid` int(11) NOT NULL AUTO_INCREMENT,
`operatingsystem` varchar(255) NOT NULL,
PRIMARY KEY (`osid`),
UNIQUE KEY `operatingsystem` (`operatingsystem`),
KEY `idx_operatingsystem` (`operatingsystem`)
) ENGINE=InnoDB AUTO_INCREMENT=18 DEFAULT CHARSET=utf8 COMMENT='Normalized operating systems lookup table';
-- Dumping data for table shopdb.operatingsystems: ~7 rows (approximately)
DELETE FROM `operatingsystems`;
INSERT INTO `operatingsystems` (`osid`, `operatingsystem`) VALUES
(1, 'TBD');
INSERT INTO `operatingsystems` (`osid`, `operatingsystem`) VALUES
(12, 'Microsoft Windows 10 Enterprise');
INSERT INTO `operatingsystems` (`osid`, `operatingsystem`) VALUES
(13, 'Microsoft Windows 10 Enterprise 10.0.19045');
INSERT INTO `operatingsystems` (`osid`, `operatingsystem`) VALUES
(14, 'Microsoft Windows 10 Enterprise 2016 LTSB');
INSERT INTO `operatingsystems` (`osid`, `operatingsystem`) VALUES
(15, 'Microsoft Windows 10 Enterprise LTSC');
INSERT INTO `operatingsystems` (`osid`, `operatingsystem`) VALUES
(16, 'Microsoft Windows 10 Pro');
INSERT INTO `operatingsystems` (`osid`, `operatingsystem`) VALUES
(17, 'Microsoft Windows 11 Enterprise');
-- Dumping structure for table shopdb.pc
CREATE TABLE IF NOT EXISTS `pc` (
`pcid` int(11) NOT NULL AUTO_INCREMENT,
`hostname` varchar(100) DEFAULT NULL COMMENT 'Computer hostname',
`serialnumber` varchar(100) DEFAULT NULL COMMENT 'System serial number from BIOS',
`loggedinuser` varchar(100) DEFAULT NULL COMMENT 'Currently logged in user',
`pctypeid` int(11) DEFAULT NULL COMMENT 'Foreign key to pctype table',
`machinenumber` varchar(50) DEFAULT NULL COMMENT 'GE Aircraft Engines Machine Number if available',
`lastupdated` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP COMMENT 'Last update timestamp',
`dateadded` datetime DEFAULT CURRENT_TIMESTAMP COMMENT 'When record was first added',
`warrantyenddate` date DEFAULT NULL COMMENT 'Warranty expiration date',
`warrantystatus` varchar(50) DEFAULT 'Unknown' COMMENT 'Warranty status from Dell API',
`warrantydaysremaining` int(11) DEFAULT NULL COMMENT 'Days remaining on warranty',
`warrantyservicelevel` varchar(100) DEFAULT NULL COMMENT 'Service level (e.g. ProSupport Plus)',
`warrantylastchecked` datetime DEFAULT NULL COMMENT 'When warranty was last checked',
`modelnumberid` int(11) DEFAULT NULL COMMENT 'Reference to models.modelnumberid',
`isactive` tinyint(1) DEFAULT '1' COMMENT 'Whether the PC is active (1) or inactive (0)',
`requires_manual_machine_config` tinyint(1) DEFAULT '0' COMMENT 'TRUE when this PC shares machine number with other PCs',
`osid` int(11) DEFAULT NULL COMMENT 'Foreign key to operatingsystems table',
`pcstatusid` int(11) DEFAULT '3' COMMENT 'Foreign key to pcstatus table (default: In Use)',
PRIMARY KEY (`pcid`) USING BTREE,
KEY `idx_pctypeid` (`pctypeid`),
KEY `idx_warranty_end` (`warrantyenddate`),
KEY `idx_modelnumberid` (`modelnumberid`),
KEY `idx_pc_isactive` (`isactive`),
KEY `idx_pc_osid` (`osid`),
KEY `idx_pc_pcstatusid` (`pcstatusid`),
CONSTRAINT `fk_pc_modelnumberid` FOREIGN KEY (`modelnumberid`) REFERENCES `models` (`modelnumberid`) ON UPDATE CASCADE,
CONSTRAINT `fk_pc_osid` FOREIGN KEY (`osid`) REFERENCES `operatingsystems` (`osid`) ON DELETE SET NULL ON UPDATE CASCADE,
CONSTRAINT `fk_pc_pctype` FOREIGN KEY (`pctypeid`) REFERENCES `pctype` (`pctypeid`)
) ENGINE=InnoDB AUTO_INCREMENT=322 DEFAULT CHARSET=utf8;
-- Dumping data for table shopdb.pc: ~286 rows (approximately)
DELETE FROM `pc`;
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(4, 'H2PRFM94', '2PRFM94', '570005354', 1, '', '2025-09-26 08:54:55', '2025-08-20 15:22:13', '2028-05-28', 'Active', 982, 'ProSupport Flex for Client', '2025-09-18 16:03:29', 37, 1, 0, 17, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(5, 'GBKN7PZ3ESF', 'BKN7PZ3', 'lg672650sd', 3, 'WJPRT', '2025-09-26 08:54:55', '2025-08-21 07:03:09', '2026-11-04', 'Active', 434, 'ProSupport Flex for Client', '2025-08-26 18:02:30', 38, 1, 1, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(6, 'HBKP0D74', 'BKP0D74', '212406281', 2, NULL, '2025-09-26 08:54:55', '2025-08-21 08:19:13', '2029-12-31', 'Active', 1587, 'ProSupport Flex for Client', '2025-08-26 12:26:27', 39, 1, 0, 13, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(7, 'H5YWZ894', '5YWZ894', '210077810', 1, '', '2025-09-26 08:54:55', '2025-08-26 17:38:01', '2028-06-14', 'Active', 1022, 'ProSupport Flex for Client', '2025-08-26 17:39:50', 39, 1, 0, 17, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(8, 'G9KN7PZ3ESF', '9KN7PZ3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-08-26 17:44:51', '2026-11-04', 'Active', 411, 'ProSupport Flex for Client', '2025-09-18 15:50:28', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(9, 'G7B48FZ3ESF', '7B48FZ3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-08-26 18:15:06', '2026-10-13', 'Active', 389, 'ProSupport Flex for Client', '2025-09-18 15:49:21', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(10, 'HJL8V494', 'JL8V494', '212732582', 2, '', '2025-09-26 08:54:55', '2025-08-26 18:23:43', '2028-04-13', 'Active', 960, 'ProSupport Flex for Client', '2025-08-26 18:25:06', 40, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(11, 'H7TFDZB4', '7TFDZB4', '210050228', 2, '', '2025-09-26 08:54:55', '2025-08-27 11:08:25', '2028-07-06', 'Active', 1043, 'ProSupport Flex for Client', '2025-08-27 11:39:07', 40, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(12, 'HGY6S564', 'GY6S564', '210068387', 2, '', '2025-09-26 08:54:55', '2025-08-27 11:09:52', '2027-11-08', 'Active', 802, 'ProSupport Flex for Client', '2025-08-27 11:39:07', 41, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(13, 'H3TBRX64', '3TBRX64', '210050253', 2, '', '2025-09-26 08:54:55', '2025-08-27 11:11:08', '2027-11-29', 'Active', 823, 'ProSupport Flex for Client', '2025-08-27 11:39:06', 42, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(14, 'HCRDBZ44', 'CRDBZ44', '210050253', 2, '', '2025-09-26 08:54:55', '2025-08-27 11:11:32', '2027-09-28', 'Active', 761, 'ProSupport Flex for Client', '2025-08-27 11:39:07', 41, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(15, 'HD302994', 'D302994', '270002759', 2, '', '2025-09-26 08:54:55', '2025-08-27 11:12:20', '2028-05-17', 'Active', 993, 'ProSupport Flex for Client', '2025-08-27 11:39:07', 39, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(16, 'H8B2FZB4', '8B2FZB4', '212732750', 2, '', '2025-09-26 08:54:55', '2025-08-27 11:12:56', '2028-07-07', 'Active', 1044, 'ProSupport Flex for Client', '2025-08-27 11:39:07', 39, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(17, 'HJQFDZB4', 'JQFDZB4', '210050231', 2, '', '2025-09-26 08:54:55', '2025-08-27 11:15:08', '2028-07-06', 'Active', 1043, 'ProSupport Flex for Client', '2025-08-27 11:39:07', 40, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(18, 'H93H1B24', '93H1B24', '210009518', 2, '', '2025-09-26 08:54:55', '2025-08-27 11:16:19', '2027-04-27', 'Active', 607, 'ProSupport Flex for Client', '2025-08-27 11:39:07', 43, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(19, 'HJY62QV3', 'JY62QV3', '212778065', 2, '', '2025-09-26 08:54:55', '2025-08-27 11:31:15', '2027-01-24', 'Active', 514, 'ProSupport Flex for Client', '2025-08-27 11:39:07', 43, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(20, 'H886H244', '886H244', '212778065', 1, 'M886', '2025-09-26 08:54:55', '2025-08-27 11:33:43', '2027-06-08', 'Active', 649, 'ProSupport Flex for Client', '2025-08-27 11:39:07', 40, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(21, 'HD0B1WB4', 'D0B1WB4', '223151068', 2, '', '2025-09-26 08:54:55', '2025-08-27 11:33:52', '2028-06-30', 'Active', 1037, 'ProSupport Flex for Client', '2025-08-27 11:39:07', 40, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(22, 'H1TLC144', '1TLC144', '210061900', 1, '', '2025-09-26 08:54:55', '2025-08-27 11:35:10', '2027-07-11', 'Active', 682, 'ProSupport Flex for Client', '2025-08-27 11:39:06', 44, 1, 0, 17, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(23, 'G40N7194E', '40N7194', '270007757', 1, '', '2025-09-26 08:54:55', '2025-08-27 11:37:40', '2028-06-27', 'Active', 1034, 'ProSupport Flex for Client', '2025-08-27 11:39:06', 45, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(24, 'H670XX54', '670XX54', '212716566', 1, 'M670', '2025-09-26 08:54:55', '2025-08-27 11:38:32', '2027-10-10', 'Active', 773, 'ProSupport Flex for Client', '2025-08-27 11:39:07', 40, 1, 0, 17, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(25, 'H9V28F94', '9V28F94', '223123846', 1, '', '2025-09-26 08:54:55', '2025-08-27 11:43:33', '2028-06-28', 'Active', 1035, 'ProSupport Flex for Client', '2025-08-27 11:53:05', 46, 1, 0, 17, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(26, 'HCMRFM94', 'CMRFM94', '210036417', 1, '', '2025-09-26 08:54:55', '2025-08-27 11:44:36', '2028-05-16', 'Active', 992, 'ProSupport Flex for Client', '2025-08-27 11:53:02', 37, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(27, 'H8D18194', '8D18194', '210050286', 1, '', '2025-09-26 08:54:55', '2025-08-27 11:45:23', '2028-06-27', 'Active', 1034, 'ProSupport Flex for Client', '2025-08-27 11:53:01', 45, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(28, 'H7TCL374', '7TCL374', '223068464', 1, '', '2025-09-26 08:54:55', '2025-08-27 11:47:14', '2028-03-08', 'Active', 923, 'ProSupport Flex for Client', '2025-08-27 11:53:00', 47, 1, 0, 17, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(29, 'HCX9B2Z3', 'CX9B2Z3', '210050245', 1, '', '2025-09-26 08:54:55', '2025-08-27 12:02:31', '2026-12-01', 'Active', 460, 'ProSupport Flex for Client', '2025-08-27 12:16:36', 38, 1, 0, 17, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(30, 'G5PRTW04ESF', '5PRTW04', 'lg782713sd', 3, '', '2025-09-26 08:54:55', '2025-08-27 12:04:43', '2027-02-15', 'Active', 514, 'ProSupport Flex for Client', '2025-09-18 15:49:20', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(31, 'G33N20R3ESF', '33N20R3', 'lg782713sd', 3, '', '2025-09-26 08:54:55', '2025-08-27 12:05:40', '2025-11-22', 'Active', 64, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:37', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(32, 'G82D3853ESF', '82D3853', 'lg672651sd', 3, 'WJPRT', '2025-09-26 08:54:55', '2025-08-27 12:11:19', '2023-08-22', 'Expired', -758, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:42', 49, 1, 1, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(33, 'G9TJ20R3ESF', '9TJ20R3', 'lg672651sd', 3, '3110', '2025-09-26 08:54:55', '2025-08-27 12:11:47', '2025-10-30', 'Active', 41, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:43', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(34, 'G73N20R3ESF', '73N20R3', 'lg672651sd', 3, '3111', '2025-09-26 08:54:55', '2025-08-27 12:12:06', '2025-12-03', 'Active', 75, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:41', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(35, 'GJ5KW0R3ESF', 'J5KW0R3', 'lg672651sd', 3, '3112', '2025-09-26 08:54:55', '2025-08-27 12:12:25', '2025-10-26', 'Active', 37, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:59', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(36, 'G83N20R3ESF', '83N20R3', 'lg672651sd', 3, '3113', '2025-09-26 08:54:55', '2025-08-27 12:12:39', '2025-12-03', 'Active', 75, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:42', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(37, 'GD6KW0R3ESF', 'D6KW0R3', 'lg672650sd', 3, '3114', '2025-09-26 08:54:55', '2025-08-27 12:13:00', '2025-10-26', 'Active', 37, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:48', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(38, 'GGT7H673ESF', 'GT7H673', 'lg672651sd', 3, '3115', '2025-09-26 08:54:55', '2025-08-27 12:13:21', '2024-02-10', 'Expired', -586, 'ProSupport', '2025-09-18 16:00:22', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(39, 'GF3N20R3ESF', 'F3N20R3', 'lg672651sd', 3, '3116', '2025-09-26 08:54:55', '2025-08-27 12:13:45', '2025-12-03', 'Active', 75, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:50', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(40, 'GJWDB673ESF', 'JWDB673', 'lg672651sd', 3, '3108', '2025-09-26 08:54:55', '2025-08-27 12:14:20', '2024-02-12', 'Expired', -584, 'ProSupport', '2025-09-18 16:03:31', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(41, 'G4HCDF33ESF', '4HCDF33', 'lg672651sd', 3, '3106', '2025-09-26 08:54:55', '2025-08-27 12:15:06', '2023-07-24', 'Expired', -787, 'ProSupport', '2025-09-18 15:49:20', 49, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(42, 'G4HBLF33ESF', '4HBLF33', 'lg672651sd', 3, '3107', '2025-09-26 08:54:55', '2025-08-27 12:15:26', '2023-07-24', 'Expired', -787, 'ProSupport', '2025-09-18 15:49:19', 49, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(43, 'G8RJ20R3ESF', '8RJ20R3', 'lg672651sd', 3, '3105', '2025-10-14 11:17:22', '2025-08-27 12:15:47', '2026-07-07', 'Active', 265, 'ProSupport Plus', '2025-10-14 11:17:22', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(44, 'HD3BJCY3', 'D3BJCY3', '210071101', 2, '', '2025-09-26 08:54:55', '2025-08-27 12:27:11', '2026-09-04', 'Active', 372, 'ProSupport Flex for Client', '2025-08-27 12:40:13', 52, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(45, 'HDYJDZB4', 'DYJDZB4', '270002505', 2, '', '2025-09-26 08:54:55', '2025-08-27 12:30:59', '2028-07-06', 'Active', 1043, 'ProSupport Flex for Client', '2025-08-27 12:40:13', 40, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(46, 'H1X9YW74', '1X9YW74', '210078467', 2, '', '2025-09-26 08:54:55', '2025-08-27 12:32:02', '2028-03-06', 'Active', 921, 'ProSupport Flex for Client', '2025-08-27 12:40:13', 41, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(47, 'HHY05YS3', 'HY05YS3', '210067963', 2, NULL, '2025-10-21 11:23:21', '2025-08-27 12:33:54', '2025-12-03', 'Active', 97, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-08-27 12:40:13', 53, 1, 0, 12, 4);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(48, 'HBX0BJ84', 'BX0BJ84', '210078467', 2, '', '2025-09-26 08:54:55', '2025-08-27 12:34:33', '2028-02-27', 'Active', 913, 'ProSupport Flex for Client', '2025-08-27 12:40:13', 42, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(49, 'HBWJDZB4', 'BWJDZB4', '210067963', 2, '', '2025-09-26 08:54:55', '2025-08-27 12:34:49', '2028-07-06', 'Active', 1043, 'ProSupport Flex for Client', '2025-08-27 12:40:13', 40, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(50, 'H7WJDZB4', '7WJDZB4', '210068365', 2, '', '2025-09-26 08:54:55', '2025-08-27 12:37:49', '2028-07-06', 'Active', 1043, 'ProSupport Flex for Client', '2025-08-27 12:40:13', 40, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(51, 'G1JKYH63ESF', '1JKYH63', 'lg672651sd', 3, '3124', '2025-09-26 08:54:55', '2025-08-27 15:59:51', '2023-12-13', 'Expired', -645, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:35', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(52, 'G62DD5K3ESF', '62DD5K3', 'lg672651sd', 3, '3123', '2025-09-26 08:54:55', '2025-08-27 16:00:09', '2024-11-27', 'Expired', -295, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:40', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(53, 'GC5R20R3ESF', 'C5R20R3', 'lg672651sd', 3, '9999', '2025-11-03 11:27:15', '2025-08-27 16:00:21', '2025-12-10', 'Active', 82, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:48', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(54, 'G1JJXH63ESF', '1JJXH63', 'lg672651sd', 3, '3119', '2025-09-26 08:54:55', '2025-08-27 16:00:36', '2023-12-13', 'Expired', -645, 'ProSupport', '2025-09-18 15:49:08', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(55, 'GFZQFPR3ESF', 'FZQFPR3', 'lg672651sd', 3, '3118', '2025-09-26 08:54:55', '2025-08-27 16:00:50', '2025-10-24', 'Active', 35, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:54', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(56, 'GH2N20R3ESF', 'H2N20R3', 'lg672651sd', 3, '3117', '2025-09-26 08:54:55', '2025-08-27 16:01:10', '2025-12-10', 'Active', 82, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:57', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(57, 'GFG7DDW2ESF', 'FG7DDW2', 'lg672651sd', 3, '4001', '2025-09-26 08:54:55', '2025-08-27 16:01:40', '2022-05-07', 'Expired', -1230, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:52', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(58, 'GFBXNH63ESF', 'FBXNH63', 'lg672651sd', 3, '4006', '2025-09-26 08:54:55', '2025-08-27 16:01:51', '2023-11-07', 'Expired', -681, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:50', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(59, 'G3ZH3SZ2ESF', '3ZH3SZ2', 'lg672651sd', 3, '0600', '2025-10-14 11:17:22', '2025-08-27 16:02:19', '2026-07-08', 'Active', 266, 'ProSupport', '2025-10-14 11:17:22', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(60, 'G1JLXH63ESF', '1JLXH63', 'lg672651sd', 3, '123', '2025-09-26 08:54:55', '2025-08-27 16:02:36', '2023-12-13', 'Expired', -645, 'ProSupport', '2025-09-18 15:49:07', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(61, 'G1QXSXK2ESF', '1QXSXK2', 'lg672651sd', 3, '4005', '2025-11-03 11:41:00', '2025-08-27 16:03:02', '2020-09-14', 'Expired', -1830, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:37', 55, 1, 0, 14, 4);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(62, 'G32DD5K3ESF', '32DD5K3', 'lg672651sd', 3, '2018', '2025-09-26 08:54:55', '2025-08-27 17:46:48', '2024-11-27', 'Expired', -295, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:37', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(63, 'G1XN78Y3ESF', '1XN78Y3', 'lg672651sd', 3, '2021', '2025-09-26 08:54:55', '2025-08-27 17:49:49', '2026-07-29', 'Active', 313, 'ProSupport Flex for Client', '2025-09-18 15:49:12', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(64, 'G907T5X3ESF', '907T5X3', 'lg672651sd', 3, '2024', '2025-09-26 08:54:55', '2025-08-27 17:50:26', '2026-04-22', 'Active', 215, 'ProSupport Flex for Client', '2025-09-18 15:50:05', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(65, 'GB07T5X3ESF', 'B07T5X3', 'lg672651sd', 3, '2001', '2025-09-26 08:54:55', '2025-08-27 17:50:54', '2026-04-22', 'Active', 237, 'ProSupport Flex for Client', '2025-08-27 18:20:45', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(66, 'G25TJRT3ESF', '25TJRT3', 'lg672651sd', 3, '2003', '2025-09-26 08:54:55', '2025-08-27 17:51:33', '2026-06-16', 'Active', 270, 'ProSupport Flex for Client', '2025-09-18 15:49:14', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(67, 'GBK76CW3ESF', 'BK76CW3', 'lg672651sd', 3, '2008', '2025-09-26 08:54:55', '2025-08-27 17:51:50', '2026-03-19', 'Active', 181, 'ProSupport Flex for Client', '2025-09-18 15:50:37', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(68, 'G3ZFCSZ2ESF', '3ZFCSZ2', 'lg672651sd', 3, '0615', '2025-09-26 08:54:55', '2025-08-28 08:40:42', '2022-12-20', 'Expired', -1003, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:39', 54, 1, 1, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(69, 'GDJCTJB2ESF', 'DJCTJB2', 'lg672651sd', 3, '0612', '2025-09-26 08:54:55', '2025-08-28 08:42:21', '2019-06-30', 'Expired', -2272, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:48', 56, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(70, 'G41733Z3ESF', '41733Z3', 'lg672651sd', 3, '3011', '2025-09-26 08:54:55', '2025-08-28 08:43:00', '2027-03-15', 'Active', 542, 'ProSupport Flex for Client', '2025-09-18 15:49:19', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(71, 'GDP9TBM2ESF', 'DP9TBM2', 'lg672651sd', 3, '0613', '2025-09-26 08:54:55', '2025-08-28 08:43:27', '2021-01-11', 'Expired', -1711, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:50', 55, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(72, 'GFBYNH63ESF', 'FBYNH63', 'lg672651sd', 3, '3017', '2025-09-26 08:54:55', '2025-08-28 08:43:46', '2023-11-08', 'Expired', -680, 'ProSupport', '2025-09-18 16:00:15', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(73, 'GFGD7DW2ESF', 'FGD7DW2', 'lg672651sd', 3, '5302', '2025-09-26 08:54:55', '2025-08-28 08:45:32', '2022-05-09', 'Expired', -1228, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:53', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(74, 'HDFX3724', 'DFX3724', '210050219', 1, '', '2025-09-26 08:54:55', '2025-08-28 08:51:39', '2027-03-24', 'Active', 572, 'ProSupport Flex for Client', '2025-08-28 09:42:15', 38, 1, 0, 17, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(75, 'GFGLFDW2ESF', 'FGLFDW2', 'lg672651sd', 3, '5004', '2025-09-26 08:54:55', '2025-08-28 09:17:12', '2022-05-07', 'Expired', -1230, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:53', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(77, 'GHR96WX3ESF', 'HR96WX3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-08-28 09:19:18', '2026-06-11', 'Active', 265, 'ProSupport Flex for Client', '2025-09-18 16:00:24', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(78, 'GDR6B8B3ESF', 'DR6B8B3', 'lg782713sd', 3, '9999', '2025-09-26 08:54:55', '2025-08-28 09:19:33', '2024-05-26', 'Expired', -480, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:50', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(79, 'G4393DX3ESF', '4393DX3', 'lg672651sd', 3, 'M439', '2025-09-26 08:54:55', '2025-08-28 09:20:09', '2026-06-01', 'Active', 255, 'ProSupport Flex for Client', '2025-09-18 15:49:19', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(80, 'G7D48FZ3ESF', '7D48FZ3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-08-28 09:22:46', '2026-10-13', 'Active', 389, 'ProSupport Flex for Client', '2025-09-18 15:49:21', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(81, 'G7DYR7Y3ESF', '7DYR7Y3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-08-28 09:23:22', '2026-07-17', 'Active', 301, 'ProSupport Flex for Client', '2025-09-18 15:49:22', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(82, 'G1JMWH63ESF', '1JMWH63', 'lg672651sd', 3, '3103', '2025-09-26 08:54:55', '2025-08-28 09:31:07', '2023-12-13', 'Expired', -645, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:35', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(83, 'GCTJ20R3ESF', 'CTJ20R3', 'lg672651sd', 3, '3104', '2025-09-26 08:54:55', '2025-08-28 09:31:20', '2025-10-30', 'Active', 41, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:46', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(84, 'GDNWYRT3ESF', 'DNWYRT3', 'lg672650sd', 3, '3101', '2025-09-26 08:54:55', '2025-08-28 09:31:32', '2025-12-23', 'Active', 95, 'ProSupport Flex for Client', '2025-09-18 16:00:11', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(85, 'G1K76CW3ESF', '1K76CW3', 'lg672651sd', 3, '3102', '2025-09-26 08:54:55', '2025-08-28 09:31:49', '2026-03-19', 'Active', 181, 'ProSupport Flex for Client', '2025-09-18 15:49:10', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(86, 'GC07T5X3ESF', 'C07T5X3', 'lg672651sd', 3, '3125', '2025-09-26 08:54:55', '2025-08-28 09:32:05', '2026-04-22', 'Active', 215, 'ProSupport Flex for Client', '2025-09-18 15:50:39', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(87, 'GB1GTRT3ESF', 'B1GTRT3', 'lg672651sd', 3, '3126', '2025-09-26 08:54:55', '2025-08-28 09:32:20', '2025-12-15', 'Active', 87, 'ProSupport Flex for Client', '2025-09-18 15:50:32', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(88, 'G4CJC724ESF', '4CJC724', 'lg672651sd', 1, '3025', '2025-09-26 08:54:55', '2025-08-28 09:32:35', '2027-03-28', 'Active', 555, 'ProSupport Flex for Client', '2025-09-18 15:49:19', 38, 1, 0, 16, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(89, 'GDDBF673ESF', 'DDBF673', 'lg672651sd', 3, '3027', '2025-09-26 08:54:55', '2025-08-28 09:33:01', '2023-12-17', 'Expired', -641, 'ProSupport', '2025-09-18 16:00:08', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(90, 'GJJ76CW3ESF', 'JJ76CW3', 'lg672651sd', 3, '3037', '2025-09-26 08:54:55', '2025-08-28 09:33:09', '2026-03-19', 'Active', 181, 'ProSupport Flex for Client', '2025-09-18 16:00:28', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(91, 'GFN9PWM3ESF', 'FN9PWM3', 'lg672651sd', 3, '3031', '2025-09-26 08:54:55', '2025-08-28 09:33:26', '2025-03-11', 'Expired', -191, 'ProSupport', '2025-09-18 16:03:24', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(92, 'GFSJ20R3ESF', 'FSJ20R3', 'lg672651sd', 3, '4703', '2025-09-26 08:54:55', '2025-08-28 16:39:56', '2025-10-30', 'Active', 41, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:55', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(93, 'G6W7JK44ESF', '6W7JK44', 'lg782713sd', 1, '', '2025-09-26 08:54:55', '2025-09-03 09:05:45', '2027-07-19', 'Active', 668, 'ProSupport Flex for Client', '2025-09-18 15:49:21', 57, 1, 0, 16, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(94, 'G2WHKN34ESF', '2WHKN34', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 09:06:43', '2027-06-30', 'Active', 649, 'ProSupport Flex for Client', '2025-09-18 15:49:18', 57, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(95, 'GFQNX044ESF', 'FQNX044', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 09:09:32', '2027-06-26', 'Active', 645, 'ProSupport Flex for Client', '2025-09-18 16:03:24', 57, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(96, 'G4HBHF33ESF', '4HBHF33', 'lg672651sd', 3, '4701', '2025-09-26 08:54:55', '2025-09-03 09:10:29', '2023-07-24', 'Expired', -787, 'ProSupport', '2025-09-18 15:49:19', 49, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(97, 'GB9TP7V3ESF', 'B9TP7V3', 'lg672651sd', 3, '4704', '2025-09-26 08:54:55', '2025-09-03 09:10:40', '2026-02-02', 'Active', 136, 'ProSupport Flex for Client', '2025-09-18 15:50:34', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(98, 'GFG8FDW2ESF', 'FG8FDW2', 'lg672651sd', 3, '3041', '2025-09-26 08:54:55', '2025-09-03 09:11:58', '2022-05-07', 'Expired', -1230, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:51', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(99, 'GH20Y2W2ESF', 'H20Y2W2', 'lg672651sd', 3, '4003', '2025-09-26 08:54:55', '2025-09-03 09:12:10', '2022-05-07', 'Expired', -1230, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:57', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(100, 'G9WRDDW2ESF', '9WRDDW2', 'lg672651sd', 3, '3039', '2025-09-26 08:54:55', '2025-09-03 09:12:34', '2022-05-07', 'Expired', -1230, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:43', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(101, 'G6JLMSZ2ESF', '6JLMSZ2', 'lg672651sd', 3, '4002', '2025-09-26 08:54:55', '2025-09-03 09:12:48', '2022-11-02', 'Expired', -1051, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:41', 49, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(102, 'GD0N20R3ESF', 'D0N20R3', 'lg672651sd', 3, '3010', '2025-09-26 08:54:55', '2025-09-03 09:13:01', '2025-11-24', 'Active', 66, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:48', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(105, 'G9WP26X3ESF', '9WP26X3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 09:16:39', '2026-05-10', 'Active', 233, 'ProSupport Flex for Client', '2025-09-18 15:50:30', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(106, 'GDR978B3ESF', 'DR978B3', 'lg672651sd', 3, '2032', '2025-09-26 08:54:55', '2025-09-03 09:16:54', '2024-05-26', 'Expired', -480, 'ProSupport', '2025-09-18 16:00:13', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(107, 'G9WMFDW2ESF', '9WMFDW2', 'lg672651sd', 3, '2027', '2025-09-26 08:54:55', '2025-09-03 09:17:11', '2022-05-09', 'Expired', -1228, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:44', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(108, 'G9WQDDW2ESF', '9WQDDW2', 'lg672651sd', 3, '2029', '2025-09-26 08:54:55', '2025-09-03 09:17:22', '2022-05-09', 'Expired', -1228, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:43', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(109, 'GBB8Q2W2ESF', 'BB8Q2W2', 'lg672651sd', 3, '2026', '2025-09-26 08:54:55', '2025-09-03 09:17:42', '2022-04-18', 'Expired', -1249, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:45', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(110, 'G3ZJBSZ2ESF', '3ZJBSZ2', 'lg672651sd', 3, '0614', '2025-09-26 08:54:55', '2025-09-03 09:18:13', '2022-12-20', 'Expired', -1003, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:39', 54, 1, 1, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(111, 'GDR658B3ESF', 'DR658B3', 'lg672651sd', 3, '3023', '2025-09-26 08:54:55', '2025-09-03 09:18:44', '2024-05-26', 'Expired', -480, 'ProSupport', '2025-09-18 16:03:18', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(112, 'G4H9KF33ESF', '4H9KF33', 'lg672651sd', 3, '3021', '2025-09-26 08:54:55', '2025-09-03 09:18:57', '2023-07-24', 'Expired', -787, 'ProSupport', '2025-09-18 15:49:20', 49, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(113, 'GHV5V7V3ESF', 'HV5V7V3', 'lg672651sd', 3, '3019', '2025-09-26 08:54:55', '2025-09-03 09:19:13', '2026-02-18', 'Active', 152, 'ProSupport Flex for Client', '2025-09-18 16:17:57', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(114, 'G9K76CW3ESF', '9K76CW3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 09:19:50', '2026-03-19', 'Active', 181, 'ProSupport Flex for Client', '2025-09-18 15:50:27', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(115, 'GFG8DDW2ESF', 'FG8DDW2', 'lg672651sd', 3, '4802', '2025-11-03 11:28:09', '2025-09-03 09:20:49', '2022-05-07', 'Expired', -1230, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:52', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(116, 'GCQLY5X3ESF', 'CQLY5X3', 'lg672651sd', 3, '7504', '2025-09-26 08:54:55', '2025-09-03 09:23:02', '2026-04-21', 'Active', 214, 'ProSupport Flex for Client', '2025-09-18 15:50:38', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(117, 'G6PLY5X3ESF', '6PLY5X3', 'lg672651sd', 3, '7503', '2025-09-26 08:54:55', '2025-09-03 09:23:21', '2026-04-19', 'Active', 212, 'ProSupport Flex for Client', '2025-09-18 15:49:21', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(118, 'G4H8KF33ESF', '4H8KF33', 'lg672651sd', 3, '7506', '2025-09-26 08:54:55', '2025-09-03 09:23:36', '2023-07-24', 'Expired', -787, 'ProSupport', '2025-09-18 15:49:20', 49, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(119, 'G7W5V7V3ESF', '7W5V7V3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 09:23:51', '2026-02-18', 'Active', 152, 'ProSupport Flex for Client', '2025-09-18 15:49:22', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(120, 'GDMT28Y3ESF', 'DMT28Y3', 'lg782713sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 09:24:58', '2026-08-31', 'Active', 346, 'ProSupport Flex for Client', '2025-09-18 16:00:11', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(121, 'G4HCKF33ESF', '4HCKF33', 'lg782713sd', 3, '0000', '2025-09-26 08:54:55', '2025-09-03 09:25:16', '2023-07-24', 'Expired', -787, 'ProSupport', '2025-09-18 15:49:20', 49, 1, 1, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(123, 'G3ZN2SZ2ESF', '3ZN2SZ2', 'lg672651sd', 3, '0615', '2025-09-26 08:54:55', '2025-09-03 09:34:58', '2022-12-20', 'Expired', -1003, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:39', 54, 1, 1, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(124, 'G9WQ7DW2ESF', '9WQ7DW2', 'lg672651sd', 3, '6602', '2025-09-26 08:54:55', '2025-09-03 09:36:26', '2022-05-07', 'Expired', -1215, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-03 11:07:08', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(125, 'GBD5DN34ESF', 'BD5DN34', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 09:37:03', '2027-07-05', 'Active', 654, 'ProSupport Flex for Client', '2025-09-18 15:50:35', 57, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(126, 'G81FNJH2ESF', '81FNJH2', 'lg672651sd', 1, '6601', '2025-09-26 08:54:55', '2025-09-03 09:37:49', '2020-04-22', 'Expired', -1960, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-03 11:07:06', 56, 1, 0, 12, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(127, 'GFG48DW2ESF', 'FG48DW2', 'lg672651sd', 3, '6603', '2025-09-26 08:54:55', '2025-09-03 09:38:05', '2022-05-07', 'Expired', -1215, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-03 11:07:05', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(128, 'GCKTCRP2ESF', 'CKTCRP2', 'lg672651sd', 3, '6604', '2025-09-26 08:54:55', '2025-09-03 09:38:26', '2021-07-13', 'Expired', -1513, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-03 11:07:04', 55, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(129, 'G8QLY5X3ESF', '8QLY5X3', 'lg672651sd', 3, '7505', '2025-09-26 08:54:55', '2025-09-03 09:39:33', '2026-04-19', 'Active', 212, 'ProSupport Flex for Client', '2025-09-18 15:50:05', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(130, 'G5W5V7V3ESF', '5W5V7V3', 'lg672651sd', 3, '7502', '2025-09-26 08:54:55', '2025-09-03 09:39:48', '2026-02-18', 'Active', 152, 'ProSupport Flex for Client', '2025-09-18 15:49:21', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(131, 'GDK76CW3ESF', 'DK76CW3', 'lg672651sd', 3, '7501', '2025-09-26 08:54:55', '2025-09-03 09:41:19', '2026-03-19', 'Active', 181, 'ProSupport Flex for Client', '2025-09-18 16:00:11', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(132, 'GFBWTH63ESF', 'FBWTH63', 'lg672651sd', 3, '3029', '2025-09-26 08:54:55', '2025-09-03 09:43:16', '2023-11-08', 'Expired', -680, 'ProSupport', '2025-09-18 16:00:15', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(133, 'GJBJC724ESF', 'JBJC724', 'lg672651sd', 3, '2013', '2025-09-26 08:54:55', '2025-09-03 09:53:58', '2027-03-28', 'Active', 555, 'ProSupport Flex for Client', '2025-09-18 16:03:30', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(134, 'GJN9PWM3ESF', 'JN9PWM3', 'lg672650sd', 3, '2019', '2025-09-26 08:54:55', '2025-09-03 09:54:24', '2025-03-11', 'Expired', -191, 'ProSupport', '2025-09-18 16:10:51', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(135, 'GDNYTBM2ESF', 'DNYTBM2', 'lg672651sd', 3, '3013', '2025-09-26 08:54:55', '2025-09-03 09:54:50', '2021-01-11', 'Expired', -1711, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:46', 55, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(136, 'GJ1DD5K3ESF', 'J1DD5K3', 'lg672651sd', 3, '3015', '2025-09-26 08:54:55', '2025-09-03 09:55:07', '2024-11-27', 'Expired', -295, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:22:10', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(138, 'G1KQQ7X2ESF', '1KQQ7X2', 'lg672651sd', 3, '3006', '2025-09-26 08:54:55', '2025-09-03 09:55:44', '2022-07-03', 'Expired', -1173, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:36', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(139, 'GFBZMH63ESF', 'FBZMH63', 'lg672651sd', 3, '3033', '2025-09-26 08:54:55', '2025-09-03 09:56:08', '2023-11-08', 'Expired', -680, 'ProSupport', '2025-09-18 16:03:21', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(141, 'G4HCHF33ESF', '4HCHF33', 'lg672651sd', 3, '3043', '2025-09-26 08:54:55', '2025-09-03 09:56:37', '2023-07-24', 'Expired', -787, 'ProSupport', '2025-09-18 15:49:20', 49, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(142, 'GDJGFRP2ESF', 'DJGFRP2', 'lg672651sd', 3, '3035', '2025-09-26 08:54:55', '2025-09-03 09:56:56', '2021-08-03', 'Expired', -1507, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:48', 55, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(144, 'GF9F52Z3ESF', 'F9F52Z3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 09:57:18', '2026-11-30', 'Active', 437, 'ProSupport Flex for Client', '2025-09-18 16:03:20', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(145, 'GHTC52Z3ESF', 'HTC52Z3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 09:57:53', '2026-11-30', 'Active', 437, 'ProSupport Flex for Client', '2025-09-18 16:17:58', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(146, 'G82D6853ESF', '82D6853', 'lg672651sd', 3, '4702', '2025-09-26 08:54:55', '2025-09-03 09:58:12', '2023-08-22', 'Expired', -758, 'ProSupport', '2025-09-18 15:50:05', 49, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(147, 'GFGF8DW2ESF', 'FGF8DW2', 'lg672651sd', 3, '5002', '2025-09-26 08:54:55', '2025-09-03 10:12:17', '2022-05-09', 'Expired', -1228, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:53', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(148, 'G3Z33SZ2ESF', '3Z33SZ2', 'lg672651sd', 3, '0615', '2025-09-26 08:54:55', '2025-09-03 10:12:27', '2022-12-20', 'Expired', -1003, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:38', 54, 1, 1, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(149, 'GGDBWRT3ESF', 'GDBWRT3', 'lg782713sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 10:13:30', '2025-12-23', 'Active', 95, 'ProSupport Flex for Client', '2025-09-18 16:03:27', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(150, 'G6S0QRT3ESF', '6S0QRT3', 'lg672651sd', 3, NULL, '2025-11-12 07:38:15', '2025-09-03 10:17:35', '2025-12-17', 'Active', 89, 'ProSupport Flex for Client', '2025-09-18 15:49:21', 48, 1, 0, 15, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(151, 'G1X29PZ3ESF', '1X29PZ3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 10:17:47', '2026-11-09', 'Active', 416, 'ProSupport Flex for Client', '2025-09-18 15:49:11', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(152, 'G6S96WX3ESF', '6S96WX3', 'lg672651sd', 3, '7405', '2025-09-26 08:54:55', '2025-09-03 10:18:33', '2026-06-11', 'Active', 265, 'ProSupport Flex for Client', '2025-09-18 15:49:21', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(153, 'G7S96WX3ESF', '7S96WX3', 'lg672651sd', 3, '7404', '2025-09-26 08:54:55', '2025-09-03 10:18:59', '2026-06-11', 'Active', 265, 'ProSupport Flex for Client', '2025-09-18 15:49:22', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(154, 'G317T5X3ESF', '317T5X3', 'lg672651sd', 3, '7403', '2025-09-26 08:54:55', '2025-09-03 10:19:12', '2026-04-22', 'Active', 215, 'ProSupport Flex for Client', '2025-09-18 15:49:17', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(155, 'G4S96WX3ESF', '4S96WX3', 'lg672651sd', 3, '7402', '2025-09-26 08:54:55', '2025-09-03 10:19:24', '2026-06-11', 'Active', 265, 'ProSupport Flex for Client', '2025-09-18 15:49:20', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(156, 'GBDC6WX3ESF', 'BDC6WX3', 'lg672651sd', 3, '7401', '2025-09-26 08:54:55', '2025-09-03 10:19:37', '2026-06-13', 'Active', 267, 'ProSupport Flex for Client', '2025-09-18 15:50:36', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(157, 'GF7ZN7V3ESF', 'F7ZN7V3', 'lg672651sd', 3, '2011', '2025-09-26 08:54:55', '2025-09-03 10:19:52', '2026-02-01', 'Active', 135, 'ProSupport Flex for Client', '2025-09-18 16:03:20', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(162, 'GGGMF1V3ESF', 'GGMF1V3', 'lg782713sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 10:21:15', '2026-01-11', 'Active', 114, 'ProSupport Flex for Client', '2025-09-18 16:03:27', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(163, 'GGBWSMH3ESF', 'GBWSMH3', 'lg672651sd', 3, '0000', '2025-09-26 08:54:55', '2025-09-03 10:21:56', '2024-09-25', 'Expired', -358, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:55', 50, 1, 1, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(164, 'G5G9S624ESF', '5G9S624', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 10:22:07', '2027-05-18', 'Active', 606, 'ProSupport Flex for Client', '2025-09-18 15:49:20', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(165, 'G1VPY5X3ESF', '1VPY5X3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 10:23:03', '2026-04-19', 'Active', 212, 'ProSupport Flex for Client', '2025-09-18 15:49:13', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(166, 'G7WP26X3ESF', '7WP26X3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 10:23:29', '2026-05-10', 'Active', 233, 'ProSupport Flex for Client', '2025-09-18 15:49:22', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(167, 'GGT6J673ESF', 'GT6J673', 'lg672651sd', 3, '0000', '2025-09-26 08:54:55', '2025-09-03 10:24:46', '2024-02-10', 'Expired', -586, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:57', 51, 1, 1, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(168, 'GGBWYMH3ESF', 'GBWYMH3', 'lg672651sd', 3, '3007', '2025-09-26 08:54:55', '2025-09-03 10:25:09', '2024-09-25', 'Expired', -358, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:55', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(169, 'GDGSGH04ESF', 'DGSGH04', 'lg672651sd', 3, '4007', '2025-09-26 08:54:55', '2025-09-03 10:25:23', '2027-01-12', 'Active', 480, 'ProSupport Flex for Client', '2025-09-18 15:50:40', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(170, 'GGBX2NH3ESF', 'GBX2NH3', 'lg672651sd', 3, '4008', '2025-09-26 08:54:55', '2025-09-03 10:26:02', '2024-09-25', 'Expired', -358, 'ProSupport', '2025-09-18 16:03:27', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(171, 'GFC48FZ3ESF', 'FC48FZ3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 10:26:17', '2026-10-13', 'Active', 389, 'ProSupport Flex for Client', '2025-09-18 16:03:21', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(172, 'GGYTNCX3ESF', 'GYTNCX3', 'lg672651sd', 3, '7608', '2025-09-26 08:54:55', '2025-09-03 10:27:12', '2026-05-14', 'Active', 237, 'ProSupport Flex for Client', '2025-09-18 16:00:24', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(173, 'GB0VNCX3ESF', 'B0VNCX3', 'lg672651sd', 3, '7605', '2025-09-26 08:54:55', '2025-09-03 10:27:28', '2026-05-14', 'Active', 237, 'ProSupport Flex for Client', '2025-09-18 15:50:33', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(174, 'GJYTNCX3ESF', 'JYTNCX3', 'lg672651sd', 3, '7607', '2025-09-26 08:54:55', '2025-09-03 10:27:41', '2026-05-17', 'Active', 240, 'ProSupport Flex for Client', '2025-09-18 16:00:28', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(175, 'G7QLY5X3ESF', '7QLY5X3', 'lg672651sd', 3, '7606', '2025-09-26 08:54:55', '2025-09-03 10:28:01', '2026-04-19', 'Active', 212, 'ProSupport Flex for Client', '2025-09-18 15:49:22', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(176, 'GDQLY5X3ESF', 'DQLY5X3', 'lg672651sd', 3, '7603', '2025-09-26 08:54:55', '2025-09-03 10:28:15', '2026-04-19', 'Active', 212, 'ProSupport Flex for Client', '2025-09-18 16:03:18', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(177, 'GHBRHCW3ESF', 'HBRHCW3', 'lg672651sd', 3, '7604', '2025-09-26 08:54:55', '2025-09-03 10:28:24', '2026-03-28', 'Active', 190, 'ProSupport Flex for Client', '2025-09-18 16:00:24', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(178, 'GDNLY5X3ESF', 'DNLY5X3', 'lg672651sd', 3, '7601', '2025-09-26 08:54:55', '2025-09-03 10:28:37', '2026-04-19', 'Active', 212, 'ProSupport Flex for Client', '2025-09-18 16:00:11', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(179, 'G2G9S624ESF', '2G9S624', 'lg672651sd', 1, '7602', '2025-09-26 08:54:55', '2025-09-03 10:28:44', '2027-05-18', 'Active', 606, 'ProSupport Flex for Client', '2025-09-18 15:49:15', 38, 1, 0, 16, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(181, 'GFGKFDW2ESF', 'FGKFDW2', 'lg672651sd', 3, '4802', '2025-11-03 11:25:38', '2025-09-03 10:30:38', '2022-05-07', 'Expired', -1230, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:54', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(182, 'G2GY4SY3ESF', '2GY4SY3', 'lg782713sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 10:30:41', '2026-08-27', 'Active', 342, 'ProSupport Flex for Client', '2025-09-18 15:49:16', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(183, 'GBCLXRZ2ESF', 'BCLXRZ2', 'lg672651sd', 3, '0615', '2025-09-26 08:54:55', '2025-09-03 10:30:58', '2022-12-20', 'Expired', -1003, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:45', 54, 1, 1, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(184, 'G1JJVH63ESF', '1JJVH63', 'lg672651sd', 3, '0000', '2025-09-26 08:54:55', '2025-09-03 10:32:12', '2023-12-13', 'Expired', -645, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:36', 51, 1, 1, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(185, 'GGBWVMH3ESF', 'GBWVMH3', 'lg672651sd', 3, '0000', '2025-09-26 08:54:55', '2025-09-03 10:34:33', '2024-09-25', 'Expired', -358, 'ProSupport', '2025-09-18 16:03:25', 50, 1, 1, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(186, 'GGBWTMH3ESF', 'GBWTMH3', 'lg672651sd', 3, '0000', '2025-09-26 08:54:55', '2025-09-03 10:34:55', '2024-09-25', 'Expired', -358, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:55', 50, 1, 1, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(187, 'GGT8K673ESF', 'GT8K673', 'lg672651sd', 3, '0000', '2025-09-26 08:54:55', '2025-09-03 10:35:05', '2024-02-10', 'Expired', -586, 'ProSupport', '2025-09-18 16:00:23', 51, 1, 1, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(188, 'GJ0LYMH3ESF', 'J0LYMH3', 'lg782713sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 10:35:25', '2024-09-30', 'Expired', -353, 'ProSupport', '2025-09-18 16:10:50', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(189, 'GF1DD5K3ESF', 'F1DD5K3', 'lg782713sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 10:36:33', '2024-11-27', 'Expired', -295, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:49', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(190, 'G8CPG0M3ESF', '8CPG0M3', 'lg672651sd', 3, '3212', '2025-09-26 08:54:55', '2025-09-03 10:37:03', '2025-04-13', 'Expired', -158, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:44', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(191, 'GBF8WRZ2ESF', 'BF8WRZ2', 'lg672651sd', 3, '3213', '2025-10-14 11:17:22', '2025-09-03 10:37:24', '2026-10-14', 'Active', 364, 'ProSupport', '2025-10-14 11:17:22', 54, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(192, 'G4MT28Y3ESF', '4MT28Y3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 10:37:28', '2026-08-31', 'Active', 346, 'ProSupport Flex for Client', '2025-09-18 15:49:20', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(193, 'GFDBWRT3ESF', 'FDBWRT3', 'lg782713sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 10:38:02', '2025-12-24', 'Active', 96, 'ProSupport Flex for Client', '2025-09-18 16:03:21', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(194, 'GGQNX044ESF', 'GQNX044', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-03 10:38:20', '2027-06-26', 'Active', 645, 'ProSupport Flex for Client', '2025-09-18 16:00:23', 57, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(195, 'G6JQFSZ2ESF', '6JQFSZ2', 'lg672651sd', 3, '0000', '2025-09-26 08:54:55', '2025-09-03 10:39:16', '2022-11-02', 'Expired', -1051, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:41', 49, 1, 1, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(196, 'G8TJY7V3ESF', '8TJY7V3', 'lg672651sd', 3, '0615', '2025-09-26 08:54:55', '2025-09-03 10:39:31', '2026-02-23', 'Active', 157, 'ProSupport Flex for Client', '2025-09-18 15:50:05', 48, 1, 1, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(197, 'GH1DD5K3ESF', 'H1DD5K3', 'lg672651sd', 3, '8001', '2025-09-26 08:54:55', '2025-09-03 10:39:47', '2024-11-27', 'Expired', -295, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:57', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(198, 'GBN0XRZ2ESF', 'BN0XRZ2', 'lg672651sd', 3, '8003', '2025-09-26 08:54:55', '2025-09-03 10:40:06', '2022-12-20', 'Expired', -1003, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:46', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(199, 'G31N20R3ESF', '31N20R3', 'lg672651sd', 3, '3122', '2025-09-26 08:54:55', '2025-09-03 10:40:18', '2025-12-20', 'Active', 92, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:37', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(200, 'G82C4853ESF', '82C4853', 'lg672651sd', 3, '3121', '2025-09-26 08:54:55', '2025-09-03 10:40:31', '2023-08-22', 'Expired', -758, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:41', 49, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(201, 'GFG6FDW2ESF', 'FG6FDW2', 'lg672651sd', 3, '5010', '2025-09-26 08:54:55', '2025-09-03 10:41:17', '2022-05-07', 'Expired', -1230, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:52', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(202, 'G9N2JNZ3ESF', '9N2JNZ3', 'lg672651sd', 3, '7801', '2025-09-26 08:54:55', '2025-09-03 10:41:44', '2026-12-24', 'Active', 461, 'ProSupport Flex for Client', '2025-09-18 15:50:29', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(203, 'GBCTZRZ2ESF', 'BCTZRZ2', 'lg672651sd', 3, '0614', '2025-09-26 08:54:55', '2025-09-03 10:42:32', '2022-12-20', 'Expired', -1003, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:46', 54, 1, 1, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(204, 'GFBXPH63ESF', 'FBXPH63', 'lg672651sd', 3, '8002', '2025-09-26 08:54:55', '2025-09-03 10:42:45', '2023-11-08', 'Expired', -680, 'ProSupport', '2025-09-18 16:00:15', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(205, 'GGNWYRT3ESF', 'GNWYRT3', 'lg672651sd', 3, '7802', '2025-09-26 08:54:55', '2025-09-03 10:42:58', '2025-12-22', 'Active', 94, 'ProSupport Flex for Client', '2025-09-18 16:00:22', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(206, 'GFBWSH63ESF', 'FBWSH63', 'lg672651sd', 3, '4102', '2025-09-26 08:54:55', '2025-09-03 10:43:24', '2023-11-08', 'Expired', -680, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:51', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(207, 'G6K76CW3ESF', '6K76CW3', 'lg672651sd', 1, '7803', '2025-09-26 08:54:55', '2025-09-03 10:43:55', '2026-03-19', 'Active', 181, 'ProSupport Flex for Client', '2025-09-18 15:49:21', 48, 1, 0, 16, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(208, 'GG1J98Y3ESF', 'G1J98Y3', 'lg672651sd', 3, '7804', '2025-09-26 08:54:55', '2025-09-03 10:44:13', '2026-07-30', 'Active', 314, 'ProSupport Flex for Client', '2025-09-18 16:03:24', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(209, 'G1P9PWM3ESF', '1P9PWM3', 'lg672651sd', 3, '4103', '2025-09-26 08:54:55', '2025-09-03 10:44:38', '2025-03-11', 'Expired', -191, 'ProSupport', '2025-09-18 15:49:09', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(210, 'G7YPWH63ESF', '7YPWH63', 'lg672651sd', 3, '3201', '2025-09-26 08:54:55', '2025-09-03 10:45:20', '2023-12-17', 'Expired', -641, 'ProSupport', '2025-09-18 15:49:22', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(211, 'G7N9PWM3ESF', '7N9PWM3', 'lg672651sd', 3, '3203', '2025-09-26 08:54:55', '2025-09-03 10:45:31', '2025-03-11', 'Expired', -191, 'ProSupport', '2025-09-18 15:49:22', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(212, 'G49GMPR3ESF', '49GMPR3', 'lg672651sd', 3, '3202', '2025-09-26 08:54:55', '2025-09-03 10:45:40', '2025-10-06', 'Active', 17, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:39', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(213, 'GGBX0NH3ESF', 'GBX0NH3', 'lg672651sd', 3, '3204', '2025-09-26 08:54:55', '2025-09-03 10:45:52', '2024-09-25', 'Expired', -358, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:55', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(214, 'G7YQ9673ESF', '7YQ9673', 'lg672651sd', 3, '3205', '2025-09-26 08:54:55', '2025-09-03 10:46:04', '2023-12-17', 'Expired', -641, 'ProSupport', '2025-09-18 15:49:22', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(215, 'G4HCBF33ESF', '4HCBF33', 'lg672651sd', 3, '3206', '2025-09-26 08:54:55', '2025-09-03 10:46:21', '2023-07-24', 'Expired', -787, 'ProSupport', '2025-09-18 15:49:20', 49, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(216, 'GH9ZN7V3ESF', 'H9ZN7V3', 'lg672651sd', 3, '3207', '2025-09-26 08:54:55', '2025-09-03 10:46:34', '2026-02-01', 'Active', 135, 'ProSupport Flex for Client', '2025-09-18 16:17:59', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(217, 'G7YQVH63ESF', '7YQVH63', 'lg672651sd', 3, '3208', '2025-09-26 08:54:55', '2025-09-03 10:46:46', '2023-12-17', 'Expired', -641, 'ProSupport', '2025-09-18 16:00:04', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(218, 'G89TP7V3ESF', '89TP7V3', 'lg672651sd', 3, '3209', '2025-09-26 08:54:55', '2025-09-03 10:46:57', '2026-02-02', 'Active', 136, 'ProSupport Flex for Client', '2025-09-18 15:50:05', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(219, 'G7YQWH63ESF', '7YQWH63', 'lg672651sd', 3, '3210', '2025-09-26 08:54:55', '2025-09-03 10:47:09', '2023-12-17', 'Expired', -641, 'ProSupport', '2025-09-18 15:49:43', 51, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(221, 'G8YTNCX3ESF', '8YTNCX3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-05 08:01:24', '2026-05-14', 'Active', 237, 'ProSupport Flex for Client', '2025-09-18 15:50:26', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(222, 'G9YTNCX3ESF', '9YTNCX3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-05 08:01:50', '2026-05-14', 'Active', 237, 'ProSupport Flex for Client', '2025-09-18 15:50:31', 48, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(223, 'G5B48FZ3ESF', '5B48FZ3', 'lg672651sd', 3, '', '2025-09-26 08:54:55', '2025-09-08 14:19:00', '2026-10-13', 'Active', 389, 'ProSupport Flex for Client', '2025-09-18 15:49:21', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(233, 'G82CZ753ESF', '82CZ753', 'lg672651sd', 3, '7507', '2025-09-26 08:54:55', '2025-09-10 16:25:34', '2023-08-22', 'Expired', -758, 'ProSupport', '2025-09-18 15:49:44', 49, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(240, 'G1KMP7X2ESF', '1KMP7X2', 'lg672651sd', 3, '4101', '2025-09-26 08:54:55', '2025-09-10 17:24:37', '2022-07-03', 'Expired', -1173, 'Onsite Service After Remote Diagnosis (Consumer Customer)/ Next Business Day Onsite After Remote Dia', '2025-09-18 16:17:35', 54, 1, 0, 14, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(242, 'GGBWRMH3ESF', 'GBWRMH3', 'lg672651sd', 3, '5006', '2025-09-26 08:54:55', '2025-09-10 17:31:02', '2024-09-25', 'Expired', -358, 'ProSupport', '2025-09-18 16:00:20', 50, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(243, 'GCNNY2Z3ESF', 'CNNY2Z3', 'lg672650sd', 3, '', '2025-10-14 11:17:23', '2025-09-24 13:43:10', '2025-12-23', 'Active', 69, 'Basic', '2025-10-14 11:17:23', 38, 1, 0, 15, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(244, NULL, 'J9TP7V3', NULL, NULL, NULL, '2025-10-14 11:17:11', '2025-10-09 14:30:10', '2024-12-05', 'Expired', -313, 'Expired', '2025-10-14 11:17:11', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(245, 'GJX9B2Z3ESF', 'JX9B2Z3', NULL, 5, 'DT office', '2025-11-10 07:50:05', '2025-10-09 14:30:19', '2025-01-24', 'Expired', -263, 'Expired', '2025-10-14 11:17:23', 38, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(247, NULL, 'HYTNCX3', NULL, NULL, '4005', '2025-11-03 11:43:21', '2025-10-09 14:48:01', '2026-12-31', 'Active', 442, 'ProSupport', '2025-10-14 11:17:11', 48, 1, 0, 1, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(248, NULL, 'CV5V7V3', NULL, NULL, 'IT Closet', '2025-10-14 16:05:44', '2025-10-09 14:48:08', '2027-02-22', 'Active', 495, 'ProSupport', '2025-10-14 11:17:11', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(249, NULL, '2J56WH3', NULL, NULL, 'IT Closet', '2025-10-14 16:06:18', '2025-10-09 14:48:36', '2027-06-08', 'Active', 601, 'Premium Support', '2025-10-14 11:17:12', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(251, NULL, '3FX3724', NULL, NULL, 'IT Closet', '2025-10-14 16:06:45', '2025-10-09 15:17:29', '2027-10-09', 'Active', 724, 'ProSupport Plus', '2025-10-14 11:17:12', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(252, NULL, '1PMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 12:14:56', '2025-10-13 16:02:00', '2026-02-22', 'Active', 130, 'Premium Support', '2025-10-14 11:17:13', NULL, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(253, NULL, '2PMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:06:59', '2025-10-13 16:02:11', '2027-04-15', 'Active', 547, 'Premium Support', '2025-10-14 11:17:13', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(254, NULL, '3PMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:07:17', '2025-10-13 16:02:16', '2027-07-31', 'Active', 654, 'ProSupport Plus', '2025-10-14 11:17:13', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(255, NULL, '5MJG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:09:33', '2025-10-13 16:02:21', '2026-03-03', 'Active', 139, 'ProSupport', '2025-10-14 11:17:13', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(256, NULL, 'CNMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:09:50', '2025-10-13 16:02:28', '2026-06-05', 'Active', 233, 'ProSupport', '2025-10-14 11:17:14', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(257, NULL, 'HNMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 12:14:39', '2025-10-13 16:02:36', '2025-02-03', 'Expired', -253, 'Expired', '2025-10-14 11:17:15', NULL, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(258, NULL, 'JNMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 12:13:24', '2025-10-13 16:02:42', '2025-08-03', 'Expired', -72, 'Expired', '2025-10-14 11:17:15', NULL, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(259, NULL, '4NMG3D4', NULL, NULL, NULL, '2025-10-14 11:17:15', '2025-10-13 16:02:52', '2025-03-18', 'Expired', -210, 'Expired', '2025-10-14 11:17:15', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(260, NULL, '4PMG3D4', NULL, NULL, NULL, '2025-10-14 11:17:15', '2025-10-13 16:03:00', '2024-11-27', 'Expired', -321, 'Expired', '2025-10-14 11:17:15', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(261, NULL, '5NMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:10:19', '2025-10-13 16:03:05', '2026-06-01', 'Active', 229, 'ProSupport Plus', '2025-10-14 11:17:15', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(262, NULL, '5PMG3D4', NULL, NULL, NULL, '2025-10-14 11:17:17', '2025-10-13 16:03:10', '2025-09-16', 'Expired', -28, 'Expired', '2025-10-14 11:17:17', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(263, NULL, '6MJG3D4', NULL, NULL, NULL, '2025-10-14 11:17:17', '2025-10-13 16:03:14', '2025-07-27', 'Expired', -79, 'Expired', '2025-10-14 11:17:17', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(264, NULL, '6NMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:10:48', '2025-10-13 16:03:18', '2027-08-18', 'Active', 672, 'ProSupport', '2025-10-14 11:17:17', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(265, NULL, '6PMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:15:45', '2025-10-13 16:03:22', '2027-09-13', 'Active', 698, 'Premium Support', '2025-10-14 11:17:17', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(266, NULL, '7MJG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:15:54', '2025-10-13 16:03:27', '2026-03-28', 'Active', 164, 'ProSupport Plus', '2025-10-14 11:17:17', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(267, NULL, '7NMG3D4', NULL, NULL, NULL, '2025-10-14 11:17:19', '2025-10-13 16:03:31', '2024-11-04', 'Expired', -344, 'Expired', '2025-10-14 11:17:19', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(268, NULL, '7PMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:15:24', '2025-10-13 16:03:35', '2026-11-24', 'Active', 405, 'Premium Support', '2025-10-14 11:17:19', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(269, NULL, '8NMG3D4', NULL, NULL, NULL, '2025-10-14 11:17:19', '2025-10-13 16:03:49', '2026-02-04', 'Active', 112, 'ProSupport Plus', '2025-10-14 11:17:19', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(270, NULL, '8PMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:15:12', '2025-10-13 16:03:54', '2026-10-01', 'Active', 351, 'ProSupport Plus', '2025-10-14 11:17:19', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(271, NULL, '9NMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:14:58', '2025-10-13 16:03:58', '2027-05-28', 'Active', 590, 'ProSupport', '2025-10-14 11:17:19', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(272, NULL, '9PMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:14:33', '2025-10-13 16:04:05', '2027-08-18', 'Active', 672, 'Premium Support', '2025-10-14 11:17:20', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(273, NULL, 'BNMG3D4', NULL, NULL, NULL, '2025-10-14 11:17:21', '2025-10-13 16:04:09', '2025-08-09', 'Expired', -66, 'Expired', '2025-10-14 11:17:21', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(274, NULL, 'DNMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:14:17', '2025-10-13 16:04:13', '2027-07-29', 'Active', 652, 'Premium Support', '2025-10-14 11:17:21', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(275, NULL, 'FNMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:14:05', '2025-10-13 16:04:17', '2026-12-22', 'Active', 433, 'ProSupport Plus', '2025-10-14 11:17:21', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(276, NULL, 'GNMG3D4', NULL, NULL, 'IT Closet', '2025-10-14 16:13:30', '2025-10-13 16:04:21', '2027-03-18', 'Active', 519, 'ProSupport Plus', '2025-10-14 11:17:21', 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(277, NULL, '1B4TSV3', NULL, NULL, 'IT Closet', '2025-10-21 10:39:21', '2025-10-21 10:39:21', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(278, NULL, 'HPX1GT3', NULL, NULL, 'IT Closet', '2025-10-21 11:24:09', '2025-10-21 11:23:05', NULL, 'Unknown', NULL, NULL, NULL, NULL, 1, 0, 1, 4);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(279, NULL, 'FX05YS3', NULL, NULL, 'IT Closet', '2025-10-21 11:23:42', '2025-10-21 11:23:27', NULL, 'Unknown', NULL, NULL, NULL, NULL, 1, 0, 1, 4);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(280, NULL, '2DPS0Q2', NULL, NULL, 'IT Closet', '2025-10-21 11:27:35', '2025-10-21 11:26:17', NULL, 'Unknown', NULL, NULL, NULL, NULL, 1, 0, 1, 4);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(281, NULL, '3Z65SZ2', NULL, NULL, 'IT Closet', '2025-10-21 11:49:50', '2025-10-21 11:49:30', NULL, 'Unknown', NULL, NULL, NULL, NULL, 1, 0, 1, 4);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(282, NULL, 'G2F4X04', NULL, NULL, 'IT Closet', '2025-10-21 11:52:59', '2025-10-21 11:52:59', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(283, NULL, 'HQRSXB4', NULL, NULL, 'IT Closet', '2025-10-27 10:14:43', '2025-10-27 10:14:43', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(284, NULL, '76M2V94', NULL, NULL, 'IT Closet', '2025-10-27 10:14:51', '2025-10-27 10:14:51', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(285, NULL, '1LQSDB4', NULL, NULL, 'IT Closet', '2025-10-27 10:14:55', '2025-10-27 10:14:55', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(286, NULL, 'CLQSDB4', NULL, NULL, 'IT Closet', '2025-10-27 10:15:00', '2025-10-27 10:15:00', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(287, NULL, '7LQSDB4', NULL, NULL, 'IT Closet', '2025-10-27 10:15:04', '2025-10-27 10:15:04', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(288, NULL, '2PWP624', NULL, NULL, 'IT Closet', '2025-10-27 10:15:35', '2025-10-27 10:15:35', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(289, NULL, 'HVP26X3', NULL, NULL, 'IT Closet', '2025-10-27 10:15:39', '2025-10-27 10:15:39', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(291, NULL, '94ZM724', NULL, NULL, 'IT Closet', '2025-10-27 10:20:01', '2025-10-27 10:20:01', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(292, NULL, '7MHPF24', NULL, NULL, 'IT Closet', '2025-10-27 10:20:06', '2025-10-27 10:20:06', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(293, NULL, '66M2V94', NULL, NULL, 'IT Closet', '2025-10-27 10:20:13', '2025-10-27 10:20:13', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(294, NULL, '834HPZ3', NULL, NULL, 'IT Closet', '2025-10-27 10:22:19', '2025-10-27 10:22:19', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(295, NULL, '5393DX3', NULL, NULL, 'IT Closet', '2025-10-27 10:22:24', '2025-10-27 10:22:24', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(296, NULL, '8XKHN34', NULL, NULL, 'IT Closet', '2025-10-27 10:22:35', '2025-10-27 10:22:35', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(297, NULL, '8PPSF24', NULL, NULL, 'IT Closet', '2025-10-27 10:22:40', '2025-10-27 10:22:40', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(298, NULL, '6PPSF24', NULL, NULL, 'IT Closet', '2025-10-27 10:22:45', '2025-10-27 10:22:45', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(299, NULL, '43F4X04', NULL, NULL, 'IT Closet', '2025-10-27 10:22:48', '2025-10-27 10:22:48', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(300, NULL, 'CC4FPR3', NULL, 5, 'CMM03', '2025-10-27 10:34:39', '2025-10-27 10:29:58', NULL, 'Unknown', NULL, NULL, NULL, 53, 1, 0, 1, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(301, NULL, '1CXL1V3', NULL, 5, 'CMM08', '2025-10-27 10:33:48', '2025-10-27 10:30:35', NULL, 'Unknown', NULL, NULL, NULL, 53, 1, 0, 1, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(302, NULL, 'JPX1GT3', NULL, 5, 'CMM07', '2025-10-27 10:33:06', '2025-10-27 10:30:50', NULL, 'Unknown', NULL, NULL, NULL, 53, 1, 0, 1, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(303, NULL, '6YD78V3', NULL, 5, 'CMM09', '2025-10-27 10:35:47', '2025-10-27 10:35:18', NULL, 'Unknown', NULL, NULL, NULL, 53, 1, 0, 1, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(304, NULL, 'BC4FPR3', NULL, 5, 'CMM06', '2025-10-27 10:36:29', '2025-10-27 10:36:00', NULL, 'Unknown', NULL, NULL, NULL, 53, 1, 0, 1, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(305, NULL, '4B4FPR3', NULL, 5, 'CMM04', '2025-10-27 10:37:36', '2025-10-27 10:37:10', NULL, 'Unknown', NULL, NULL, NULL, 53, 1, 0, 1, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(306, NULL, 'HNMD1V3', NULL, 5, 'CMM10', '2025-10-27 10:38:14', '2025-10-27 10:37:48', NULL, 'Unknown', NULL, NULL, NULL, 53, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(307, NULL, '5QX1GT3', NULL, 5, 'CMM01', '2025-10-27 10:40:41', '2025-10-27 10:40:13', NULL, 'Unknown', NULL, NULL, NULL, 53, 1, 0, 1, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(308, NULL, '86FB1V3', NULL, 5, 'CMM02', '2025-10-27 10:41:22', '2025-10-27 10:40:53', NULL, 'Unknown', NULL, NULL, NULL, 53, 1, 0, 1, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(309, NULL, 'B7FB1V3', NULL, 5, 'CMM05', '2025-10-27 10:43:47', '2025-10-27 10:43:21', NULL, 'Unknown', NULL, NULL, NULL, 53, 1, 0, 1, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(310, NULL, 'B6M2V94', NULL, 5, 'CMM11', '2025-10-27 10:56:37', '2025-10-27 10:56:12', NULL, 'Unknown', NULL, NULL, NULL, 53, 1, 0, 1, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(311, NULL, '3LQSDB4', NULL, 5, 'CMM12', '2025-10-27 11:00:25', '2025-10-27 10:59:27', NULL, 'Unknown', NULL, NULL, NULL, 53, 1, 0, 1, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(312, NULL, '33f4x04', NULL, NULL, 'Venture Inspection', '2025-11-03 12:42:24', '2025-11-03 12:31:14', NULL, 'Unknown', NULL, NULL, NULL, 38, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(313, NULL, '44DGDB4', NULL, NULL, 'IT Closet', '2025-11-10 07:36:18', '2025-11-10 07:36:18', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(314, NULL, '8FHGDB4', NULL, NULL, 'IT Closet', '2025-11-10 07:36:25', '2025-11-10 07:36:25', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(315, NULL, '74DGDB4', NULL, NULL, 'IT Closet', '2025-11-10 07:36:35', '2025-11-10 07:36:35', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(316, NULL, 'H3DGDB4', NULL, NULL, 'IT Closet', '2025-11-10 07:36:41', '2025-11-10 07:36:41', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(317, NULL, '14DGDB4', NULL, NULL, 'IT Closet', '2025-11-10 07:36:47', '2025-11-10 07:36:47', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(318, NULL, '93TVG04', NULL, NULL, 'IT Closet', '2025-11-10 07:36:54', '2025-11-10 07:36:54', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(319, NULL, '34DGDB4', NULL, 3, 'Spools Display', '2025-11-10 07:46:16', '2025-11-10 07:41:40', NULL, 'Unknown', NULL, NULL, NULL, 1, 1, 0, 1, 2);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(320, NULL, '3TLC144', NULL, 3, 'RM 110', '2025-11-10 07:45:33', '2025-11-10 07:42:54', NULL, 'Unknown', NULL, NULL, NULL, 44, 1, 0, 1, 3);
INSERT INTO `pc` (`pcid`, `hostname`, `serialnumber`, `loggedinuser`, `pctypeid`, `machinenumber`, `lastupdated`, `dateadded`, `warrantyenddate`, `warrantystatus`, `warrantydaysremaining`, `warrantyservicelevel`, `warrantylastchecked`, `modelnumberid`, `isactive`, `requires_manual_machine_config`, `osid`, `pcstatusid`) VALUES
(321, NULL, '1F8L6M3', NULL, NULL, 'IT Closet', '2025-11-10 10:58:10', '2025-11-10 10:56:14', NULL, 'Unknown', NULL, NULL, NULL, NULL, 1, 0, 1, 4);
-- Dumping structure for table shopdb.pcstatus
CREATE TABLE IF NOT EXISTS `pcstatus` (
`pcstatusid` tinyint(4) NOT NULL AUTO_INCREMENT,
`pcstatus` tinytext,
`isactive` bit(1) DEFAULT b'1',
PRIMARY KEY (`pcstatusid`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- Dumping data for table shopdb.pcstatus: ~5 rows (approximately)
DELETE FROM `pcstatus`;
INSERT INTO `pcstatus` (`pcstatusid`, `pcstatus`, `isactive`) VALUES
(1, 'TBD', b'1');
INSERT INTO `pcstatus` (`pcstatusid`, `pcstatus`, `isactive`) VALUES
(2, 'Inventory', b'1');
INSERT INTO `pcstatus` (`pcstatusid`, `pcstatus`, `isactive`) VALUES
(3, 'In Use', b'1');
INSERT INTO `pcstatus` (`pcstatusid`, `pcstatus`, `isactive`) VALUES
(4, 'Returned', b'1');
INSERT INTO `pcstatus` (`pcstatusid`, `pcstatus`, `isactive`) VALUES
(5, 'Lost', b'1');
-- Dumping structure for table shopdb.pctype
CREATE TABLE IF NOT EXISTS `pctype` (
`pctypeid` int(11) NOT NULL AUTO_INCREMENT,
`typename` varchar(50) NOT NULL COMMENT 'Type name (Standard, Engineer, Shopfloor, etc.)',
`description` varchar(255) DEFAULT NULL COMMENT 'Description of this PC type',
`functionalaccountid` int(11) DEFAULT '1',
`isactive` char(1) DEFAULT '1' COMMENT '1=Active, 0=Inactive',
`displayorder` int(11) DEFAULT '999' COMMENT 'Order for display in reports',
`builddocpath` varchar(255) DEFAULT NULL,
PRIMARY KEY (`pctypeid`),
UNIQUE KEY `unique_typename` (`typename`),
KEY `idx_functionalaccountid` (`functionalaccountid`),
CONSTRAINT `fk_pctype_functionalaccount` FOREIGN KEY (`functionalaccountid`) REFERENCES `functionalaccounts` (`functionalaccountid`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COMMENT='PC Types/Categories';
-- Dumping data for table shopdb.pctype: ~6 rows (approximately)
DELETE FROM `pctype`;
INSERT INTO `pctype` (`pctypeid`, `typename`, `description`, `functionalaccountid`, `isactive`, `displayorder`, `builddocpath`) VALUES
(1, 'Standard', 'Standard user PC', 1, '1', 1, NULL);
INSERT INTO `pctype` (`pctypeid`, `typename`, `description`, `functionalaccountid`, `isactive`, `displayorder`, `builddocpath`) VALUES
(2, 'Engineer', 'Engineering workstation', 1, '1', 2, NULL);
INSERT INTO `pctype` (`pctypeid`, `typename`, `description`, `functionalaccountid`, `isactive`, `displayorder`, `builddocpath`) VALUES
(3, 'Shopfloor', 'Shop floor computer', 3, '1', 3, NULL);
INSERT INTO `pctype` (`pctypeid`, `typename`, `description`, `functionalaccountid`, `isactive`, `displayorder`, `builddocpath`) VALUES
(4, 'Uncategorized', 'Not yet categorized', 1, '1', 999, NULL);
INSERT INTO `pctype` (`pctypeid`, `typename`, `description`, `functionalaccountid`, `isactive`, `displayorder`, `builddocpath`) VALUES
(5, 'CMM', NULL, 4, '1', 4, NULL);
INSERT INTO `pctype` (`pctypeid`, `typename`, `description`, `functionalaccountid`, `isactive`, `displayorder`, `builddocpath`) VALUES
(6, 'Wax / Trace', NULL, 2, '1', 5, NULL);
-- Dumping structure for table shopdb.pc_comm_config
CREATE TABLE IF NOT EXISTS `pc_comm_config` (
`configid` int(11) NOT NULL AUTO_INCREMENT,
`pcid` int(11) NOT NULL,
`configtype` varchar(50) DEFAULT NULL COMMENT 'Serial, Mark, PPDCS, eFocas, etc.',
`portid` varchar(20) DEFAULT NULL COMMENT 'COM1, COM2, etc.',
`baud` int(11) DEFAULT NULL COMMENT 'Baud rate',
`databits` int(11) DEFAULT NULL COMMENT 'Data bits (7,8)',
`stopbits` varchar(5) DEFAULT NULL COMMENT 'Stop bits (1,1.5,2)',
`parity` varchar(10) DEFAULT NULL COMMENT 'None, Even, Odd',
`crlf` varchar(5) DEFAULT NULL COMMENT 'YES/NO',
`ipaddress` varchar(45) DEFAULT NULL COMMENT 'For eFocas and network configs',
`socketnumber` int(11) DEFAULT NULL COMMENT 'Socket number for network protocols',
`additionalsettings` text COMMENT 'JSON of other settings',
`lastupdated` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`configid`),
KEY `idx_pcid_type` (`pcid`,`configtype`),
CONSTRAINT `pc_comm_config_ibfk_1` FOREIGN KEY (`pcid`) REFERENCES `pc` (`pcid`)
) ENGINE=InnoDB AUTO_INCREMENT=2400 DEFAULT CHARSET=utf8 COMMENT='Communication configurations for shopfloor PCs';
-- Dumping data for table shopdb.pc_comm_config: ~502 rows (approximately)
DELETE FROM `pc_comm_config`;
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1, 5, 'Serial', 'COM4', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-08-22 15:16:45');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2, 5, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"dcp_shop","Password":"QSy1Gn","TextMode Menu":"NO","Primary":"wifms1.ae.ge.com","TQMCaron":"NO","Secondary":"wifms2.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-08-22 15:16:45');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(3, 5, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"YES","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"2Line"}', '2025-08-22 15:16:45');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(4, 5, 'Mark', 'COM5', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"2Line"}', '2025-08-22 15:16:45');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(5, 5, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-08-22 15:16:45');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(345, 124, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-03 09:36:26');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(346, 124, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-03 09:36:26');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(347, 124, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":""}', '2025-09-03 09:36:26');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(348, 127, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-03 09:38:06');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(349, 127, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-03 09:38:06');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(350, 127, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":""}', '2025-09-03 09:38:06');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(351, 128, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-03 09:38:26');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(352, 128, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-03 09:38:26');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(353, 128, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":""}', '2025-09-03 09:38:26');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1516, 163, 'Serial', 'COM2', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:03:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1517, 163, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"YES"}', '2025-09-10 17:03:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1518, 163, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"YES","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"2Line"}', '2025-09-10 17:03:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1519, 163, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:03:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1575, 147, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:16:51');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1576, 147, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"WJFMS3.ae.ge.com","TQMCaron":"NO","Secondary":"WJFMS3.ae.ge.com","SharePollUnits":"msec","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","CycleStart Inhibits":"YES"}', '2025-09-10 17:16:51');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1577, 147, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-10 17:16:51');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1578, 147, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":"NO"}', '2025-09-10 17:16:51');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1579, 148, 'Serial', 'COM2', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:16:59');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1580, 148, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"TMC420"}', '2025-09-10 17:16:59');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1581, 148, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '169.254.0.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":""}', '2025-09-10 17:16:59');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1582, 184, 'Serial', 'COM2', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:18:04');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1583, 184, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"YES"}', '2025-09-10 17:18:04');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1584, 184, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"YES","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"2Line"}', '2025-09-10 17:18:04');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1585, 184, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:18:04');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1586, 199, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:18:59');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1587, 199, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-10 17:18:59');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1588, 199, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-10 17:18:59');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1589, 199, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-10 17:18:59');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1590, 200, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:19:10');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1591, 200, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-10 17:19:10');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1592, 200, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-10 17:19:10');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1593, 200, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-10 17:19:10');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1594, 197, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"YES"}', '2025-09-10 17:20:03');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1595, 197, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-10 17:20:03');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1596, 197, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-10 17:20:03');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1600, 202, 'PPDCS', 'COM2', 9600, 7, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-10 17:20:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1601, 202, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-10 17:20:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1602, 202, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-10 17:20:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1606, 201, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:21:14');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1607, 201, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"WJFMS3.ae.ge.com","TQMCaron":"NO","Secondary":"WJFMS3.ae.ge.com","SharePollUnits":"msec","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","MDMacroVar":"101","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-10 17:21:14');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1608, 201, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"TMC400","Message Type":"V"}', '2025-09-10 17:21:14');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1609, 201, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-10 17:21:14');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1610, 203, 'Serial', 'COM4', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:21:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1611, 203, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"TMC420"}', '2025-09-10 17:21:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1612, 203, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '169.254.0.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":""}', '2025-09-10 17:21:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1613, 204, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"YES"}', '2025-09-10 17:21:46');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1614, 204, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-10 17:21:46');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1615, 204, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-10 17:21:46');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1616, 205, 'PPDCS', 'COM4', 9600, 7, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-10 17:21:59');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1617, 205, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-10 17:21:59');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1618, 205, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-10 17:21:59');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1622, 183, 'Serial', 'COM4', 9600, 8, '2', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:23:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1623, 183, 'Mark', 'COM4', 9600, 8, '2', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"TMC420"}', '2025-09-10 17:23:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1624, 183, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '169.254.0.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":""}', '2025-09-10 17:23:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1625, 208, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-10 17:23:41');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1626, 208, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-10 17:23:41');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1627, 208, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-10 17:23:41');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1628, 209, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"WJFMS3.ae.ge.com","TQMCaron":"NO","Secondary":"WJFMS3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-10 17:24:20');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1629, 209, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-10 17:24:20');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1630, 209, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.11', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-10 17:24:20');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1631, 240, 'PPDCS', 'COM5', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"WJFMS3.ae.ge.com","TQMCaron":"NO","Secondary":"WJFMS3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-10 17:24:37');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1632, 240, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-10 17:24:37');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1633, 240, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.11', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-10 17:24:37');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1634, 210, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:25:11');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1635, 210, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","TextMode Menu":"NO","TQMCaron":"NO","Port Id2":"COM3","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"1000","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"NO"}', '2025-09-10 17:25:11');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1636, 210, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-10 17:25:11');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1637, 210, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:25:11');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1638, 211, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:25:19');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1639, 211, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","TextMode Menu":"NO","TQMCaron":"NO","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"1000","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"NO"}', '2025-09-10 17:25:19');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1640, 211, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-10 17:25:19');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1641, 211, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:25:19');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1642, 212, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:25:28');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1643, 212, 'PPDCS', 'COM5', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","TextMode Menu":"NO","TQMCaron":"NO","Port Id2":"COM4","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"1000","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"NO"}', '2025-09-10 17:25:28');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1644, 212, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-10 17:25:28');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1645, 212, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:25:28');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1646, 213, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:25:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1647, 213, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","TextMode Menu":"NO","TQMCaron":"NO","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"1000","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"NO"}', '2025-09-10 17:25:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1648, 213, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-10 17:25:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1649, 213, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:25:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1650, 214, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:25:49');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1651, 214, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","TextMode Menu":"NO","TQMCaron":"NO","Port Id2":"COM3","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"1000","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"NO"}', '2025-09-10 17:25:49');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1652, 214, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-10 17:25:49');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1653, 214, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:25:49');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1654, 215, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:25:58');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1655, 215, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","TextMode Menu":"NO","TQMCaron":"NO","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"1000","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"NO"}', '2025-09-10 17:25:58');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1656, 215, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-10 17:25:58');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1657, 215, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:25:58');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1659, 216, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:26:26');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1660, 216, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","TextMode Menu":"NO","TQMCaron":"NO","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"1000","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"NO"}', '2025-09-10 17:26:26');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1661, 216, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-10 17:26:26');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1662, 216, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:26:26');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1663, 217, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:26:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1664, 217, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","TextMode Menu":"NO","TQMCaron":"NO","Port Id2":"COM3","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"1000","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"NO"}', '2025-09-10 17:26:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1665, 217, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-10 17:26:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1666, 217, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:26:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1667, 218, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:26:45');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1668, 218, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","TextMode Menu":"NO","TQMCaron":"NO","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"1000","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"NO"}', '2025-09-10 17:26:45');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1669, 218, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-10 17:26:45');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1670, 218, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:26:45');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1671, 219, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:26:58');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1672, 219, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","TextMode Menu":"NO","TQMCaron":"NO","Port Id2":"COM3","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"1000","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"NO"}', '2025-09-10 17:26:58');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1673, 219, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-10 17:26:58');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1674, 219, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:26:58');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1675, 190, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:27:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1676, 190, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","TextMode Menu":"NO","TQMCaron":"NO","Port Id2":"COM3","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"1000","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"NO"}', '2025-09-10 17:27:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1677, 190, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-10 17:27:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1678, 190, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:27:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1679, 191, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:27:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1680, 191, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","TextMode Menu":"NO","TQMCaron":"NO","Port Id2":"COM3","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"1000","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"NO"}', '2025-09-10 17:27:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1681, 191, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-10 17:27:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1682, 191, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:27:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1683, 185, 'Serial', 'COM2', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:30:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1684, 185, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"YES"}', '2025-09-10 17:30:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1685, 185, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"YES","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"2Line"}', '2025-09-10 17:30:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1686, 185, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:30:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1687, 186, 'Serial', 'COM2', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:30:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1688, 186, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"YES"}', '2025-09-10 17:30:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1689, 186, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"YES","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"2Line"}', '2025-09-10 17:30:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1690, 186, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:30:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1691, 187, 'Serial', 'COM2', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:30:48');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1692, 187, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"YES"}', '2025-09-10 17:30:48');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1693, 187, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"YES","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"2Line"}', '2025-09-10 17:30:48');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1694, 187, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:30:48');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1695, 242, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:31:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1696, 242, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"WJFMS3.ae.ge.com","TQMCaron":"NO","Secondary":"WJFMS3.ae.ge.com","SharePollUnits":"msec","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","MDMacroVar":"101","CycleStart Inhibits":"YES"}', '2025-09-10 17:31:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1697, 242, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"TMC400","Message Type":"V"}', '2025-09-10 17:31:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1698, 242, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-10 17:31:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1699, 195, 'Serial', 'COM2', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:31:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1700, 195, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"YES"}', '2025-09-10 17:31:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1701, 195, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"YES","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"2Line"}', '2025-09-10 17:31:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1702, 195, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-10 17:31:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1703, 196, 'Serial', 'COM6', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-10 17:31:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1704, 196, 'Mark', 'COM6', 9600, 8, '2', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"TMC420"}', '2025-09-10 17:31:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1705, 196, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '169.254.0.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":""}', '2025-09-10 17:31:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1762, 169, 'PPDCS', 'COM5', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-11 09:11:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1763, 169, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"Mark2D"}', '2025-09-11 09:11:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1764, 169, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-11 09:11:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1765, 170, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"YES"}', '2025-09-11 09:12:04');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1766, 170, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"Mark2D"}', '2025-09-11 09:12:04');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1767, 170, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-11 09:12:04');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1771, 167, 'Serial', 'COM2', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-11 09:14:00');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1772, 167, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"YES"}', '2025-09-11 09:14:00');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1773, 167, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"YES","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"2Line"}', '2025-09-11 09:14:00');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1774, 167, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-11 09:14:00');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1775, 168, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-11 09:14:13');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1776, 168, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-11 09:14:13');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1777, 168, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-11 09:14:13');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1778, 168, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-11 09:14:13');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1779, 174, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-11 09:14:43');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1780, 174, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-11 09:14:43');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1781, 174, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"Mill","Path1Name":"Lathe","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-11 09:14:43');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1782, 172, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-11 09:15:03');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1783, 172, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-11 09:15:03');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1784, 172, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"Mill","Path1Name":"Lathe","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-11 09:15:03');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1785, 173, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-11 09:15:16');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1786, 173, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-11 09:15:16');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1787, 173, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"Mill","Path1Name":"Lathe","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-11 09:15:16');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1788, 175, 'PPDCS', 'COM5', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-11 09:15:32');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1789, 175, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-11 09:15:32');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1790, 175, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"Mill","Path1Name":"Lathe","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-11 09:15:32');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1791, 177, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-11 09:15:47');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1792, 177, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-11 09:15:47');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1793, 177, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"Mill","Path1Name":"Lathe","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-11 09:15:47');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1794, 178, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-11 09:16:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1795, 178, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-11 09:16:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1796, 178, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"Mill","Path1Name":"Lathe","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-11 09:16:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1797, 176, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-11 09:16:29');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1798, 176, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-11 09:16:29');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1799, 176, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"Mill","Path1Name":"Lathe","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-11 09:16:29');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1856, 73, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-11 11:14:34');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1857, 73, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"dcp_shopwj","Password":"QSy1Go","TextMode Menu":"NO","Primary":"WJFMS3.ae.ge.com","TQMCaron":"NO","Secondary":"WJFMS3.ae.ge.com","SharePollUnits":"msec","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-11 11:14:34');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1858, 73, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-11 11:14:34');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1859, 73, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-11 11:14:34');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1896, 62, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 07:57:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1897, 62, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-12 07:57:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1898, 62, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 07:57:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1899, 63, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 07:57:48');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1900, 63, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"TMC400","Message Type":"V"}', '2025-09-12 07:57:48');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1901, 63, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"","Danobat":"NO","DualPath":"YES"}', '2025-09-12 07:57:48');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1902, 67, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 07:58:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1903, 67, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-12 07:58:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1904, 67, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 07:58:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1905, 64, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 07:58:15');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1906, 64, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-12 07:58:15');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1907, 64, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 07:58:15');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1909, 69, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 07:58:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1910, 69, 'Mark', 'COM1', 9600, 8, '2', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"TMC420"}', '2025-09-12 07:58:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1911, 69, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '169.254.0.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":""}', '2025-09-12 07:58:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1912, 66, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:00:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1913, 66, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"TMC400","Message Type":"V"}', '2025-09-12 08:00:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1914, 66, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 08:00:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1915, 68, 'Serial', 'COM2', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:00:56');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1916, 68, 'Mark', 'COM2', 9600, 8, '2', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"TMC420"}', '2025-09-12 08:00:56');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1917, 68, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '169.254.0.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":""}', '2025-09-12 08:00:56');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1918, 70, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:01:11');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1919, 70, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-12 08:01:11');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1920, 70, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"Mark2D","Message Type":"V"}', '2025-09-12 08:01:11');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1921, 70, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 08:01:11');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1922, 71, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:02:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1923, 71, 'Mark', 'COM1', 9600, 8, '2', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"TMC420"}', '2025-09-12 08:02:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1924, 71, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '169.254.0.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":""}', '2025-09-12 08:02:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1925, 72, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:02:12');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1926, 72, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-12 08:02:12');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1927, 72, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"Mark2D","Message Type":"V"}', '2025-09-12 08:02:12');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1928, 72, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 08:02:12');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1929, 75, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:02:57');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1930, 75, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:02:57');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1931, 75, 'PPDCS', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"WJFMS3.ae.ge.com","TQMCaron":"NO","Secondary":"WJFMS3.ae.ge.com","SharePollUnits":"msec","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","CycleStart Inhibits":"YES"}', '2025-09-12 08:02:57');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1932, 75, 'PPDCS', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"WJFMS3.ae.ge.com","TQMCaron":"NO","Secondary":"WJFMS3.ae.ge.com","SharePollUnits":"msec","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","CycleStart Inhibits":"YES"}', '2025-09-12 08:02:57');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1933, 75, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"TMC400","Message Type":"V"}', '2025-09-12 08:02:57');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1934, 75, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"TMC400","Message Type":"V"}', '2025-09-12 08:02:57');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1935, 75, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":"NO"}', '2025-09-12 08:02:57');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1936, 75, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":"NO"}', '2025-09-12 08:02:57');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1937, 98, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:03:29');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1938, 98, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-12 08:03:29');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1939, 98, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"Mark2D","Message Type":"V"}', '2025-09-12 08:03:29');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1940, 98, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 08:03:29');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1941, 99, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-12 08:03:44');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1942, 99, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"Mark2D"}', '2025-09-12 08:03:44');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1943, 99, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 08:03:44');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1944, 100, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:04:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1945, 100, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-12 08:04:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1946, 100, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"Mark2D","Message Type":"V"}', '2025-09-12 08:04:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1947, 100, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 08:04:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1948, 101, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"YES"}', '2025-09-12 08:04:13');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1949, 101, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"Mark2D"}', '2025-09-12 08:04:13');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1950, 101, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 08:04:13');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1951, 102, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:04:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1952, 102, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-12 08:04:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1953, 102, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"Mark2D","Message Type":"V"}', '2025-09-12 08:04:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1954, 102, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 08:04:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1956, 97, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:23');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1957, 97, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:23');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1958, 97, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:23');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1959, 97, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:23');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1960, 97, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:23');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1961, 97, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:23');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1962, 97, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:23');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1963, 97, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:23');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1964, 97, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:23');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1965, 97, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:23');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1966, 96, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1967, 96, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1968, 96, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1969, 96, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1970, 96, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1971, 96, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1972, 96, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1973, 96, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1974, 96, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1975, 96, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 08:14:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1976, 110, 'Serial', 'COM2', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:22:07');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1977, 110, 'Mark', 'COM2', 9600, 8, '2', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"TMC420"}', '2025-09-12 08:22:07');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(1978, 110, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '169.254.0.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":""}', '2025-09-12 08:22:07');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2114, 233, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-12 08:42:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2115, 233, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-12 08:42:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2116, 233, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 08:42:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2117, 121, 'Serial', 'COM2', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:45:41');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2118, 121, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"YES"}', '2025-09-12 08:45:41');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2119, 121, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"YES","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"2Line"}', '2025-09-12 08:45:41');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2120, 121, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":""}', '2025-09-12 08:45:41');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2122, 123, 'Serial', 'COM4', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:48:49');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2123, 123, 'Mark', 'COM4', 9600, 8, '2', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"TMC420"}', '2025-09-12 08:48:49');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2124, 123, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '169.254.0.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"","Danobat":"","DualPath":""}', '2025-09-12 08:48:49');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2125, 52, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:49:25');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2126, 52, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-12 08:49:25');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2127, 52, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-12 08:49:25');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2128, 52, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 08:49:25');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2129, 53, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:49:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2130, 53, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-12 08:49:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2131, 53, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-12 08:49:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2132, 53, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 08:49:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2133, 51, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"MC2000Dels":"NO","EOT":"NO","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"EOL Delay":"NO","EOL Delay msec":"0"}', '2025-09-12 08:49:52');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2134, 51, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:49:52');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2135, 51, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"WJFMS3","TQMCaron":"NO","Secondary":"WJFMS3","TQM9030":"NO","Wait Time":"250","HostType":"VMS","MDMacroVar":"101","CycleStart Inhibits":"YES"}', '2025-09-12 08:49:52');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2136, 51, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-12 08:49:52');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2137, 51, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-12 08:49:52');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2138, 51, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 08:49:52');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2139, 54, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:50:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2140, 54, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM2","CycleStart Inhibits":"YES"}', '2025-09-12 08:50:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2141, 54, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-12 08:50:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2142, 54, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 08:50:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2143, 55, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:50:29');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2144, 55, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-12 08:50:29');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2145, 55, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-12 08:50:29');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2146, 55, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 08:50:29');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2147, 56, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:51:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2148, 56, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-12 08:51:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2149, 56, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-12 08:51:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2150, 56, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 08:51:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2151, 57, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-12 08:52:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2152, 57, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-12 08:52:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2153, 57, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 08:52:02');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2154, 58, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-12 08:52:12');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2155, 58, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"Mark2D"}', '2025-09-12 08:52:12');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2156, 58, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 08:52:12');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2158, 60, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-12 08:52:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2159, 60, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"Mark2D"}', '2025-09-12 08:52:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2160, 60, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 08:52:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2161, 61, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM5","CycleStart Inhibits":"YES"}', '2025-09-12 08:53:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2162, 61, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"Mark2D"}', '2025-09-12 08:53:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2163, 61, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 08:53:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2164, 134, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:58:16');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2165, 134, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"TMC400","Message Type":"V"}', '2025-09-12 08:58:16');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2166, 134, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"","Danobat":"NO","DualPath":"YES"}', '2025-09-12 08:58:16');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2167, 133, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:58:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2168, 133, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"TMC400"}', '2025-09-12 08:58:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2169, 133, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"","Danobat":"NO","DualPath":"YES"}', '2025-09-12 08:58:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2170, 136, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:59:08');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2171, 136, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-12 08:59:08');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2172, 136, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"Mark2D","Message Type":"V"}', '2025-09-12 08:59:08');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2173, 136, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 08:59:08');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2174, 135, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 08:59:19');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2175, 135, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-12 08:59:19');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2176, 135, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-12 08:59:19');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2177, 135, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 08:59:19');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2179, 138, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 09:00:00');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2180, 138, 'PPDCS', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","Timeout":"10","TreeDisplay":"NO","CycleStart Inhibits":"NO","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"TextMode Menu":"NO","TQMCaron":"NO","Port Id2":"COM3","SharePollUnits":"msec","TQM9030":"NO","ManualDataBadge":"NO","HostType":"VMS","Wait Time":"250"}', '2025-09-12 09:00:00');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2181, 138, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"TMC400","Message Type":"V"}', '2025-09-12 09:00:00');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2182, 138, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 09:00:00');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2184, 141, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 09:00:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2185, 141, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-12 09:00:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2186, 141, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"Mark2D","Message Type":"V"}', '2025-09-12 09:00:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2187, 141, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 09:00:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2188, 142, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"MC2000Dels":"NO","EOT":"NO","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"EOL Delay":"NO","EOL Delay msec":"0"}', '2025-09-12 09:00:55');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2189, 142, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 09:00:55');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2190, 142, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"WJFMS3","TQMCaron":"NO","Secondary":"WJFMS3","TQM9030":"NO","Wait Time":"250","HostType":"VMS","MDMacroVar":"101","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-12 09:00:55');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2191, 142, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-12 09:00:55');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2192, 142, 'Mark', 'COM5', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"YES","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"MarkZebra"}', '2025-09-12 09:00:55');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2193, 142, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 09:00:55');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2194, 139, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 09:01:05');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2195, 139, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-12 09:01:05');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2196, 139, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"Mark2D","Message Type":"V"}', '2025-09-12 09:01:05');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2197, 139, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-12 09:01:05');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2199, 146, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 09:05:07');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2200, 146, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 09:05:07');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2201, 146, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 09:05:07');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2202, 146, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 09:05:07');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2203, 146, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 09:05:07');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2204, 146, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 09:05:07');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2205, 146, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 09:05:07');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2206, 146, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 09:05:07');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2207, 146, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 09:05:07');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2208, 146, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, '2025-09-12 09:05:07');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2209, 152, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-12 09:09:33');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2210, 152, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-12 09:09:33');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2211, 152, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.0.114', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 09:09:33');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2212, 153, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-12 09:09:53');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2213, 153, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-12 09:09:53');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2214, 153, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.0.114', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 09:09:53');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2215, 154, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-12 09:10:05');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2216, 154, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-12 09:10:05');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2217, 154, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.0.114', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 09:10:05');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2218, 155, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-12 09:10:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2219, 155, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-12 09:10:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2220, 155, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.0.114', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 09:10:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2221, 156, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-12 09:10:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2222, 156, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-12 09:10:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2223, 156, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.0.114', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-12 09:10:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2225, 157, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-12 09:11:10');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2226, 157, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"TMC400","Message Type":"V"}', '2025-09-12 09:11:10');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2227, 157, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"","Danobat":"NO","DualPath":"YES"}', '2025-09-12 09:11:10');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2228, 198, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","CycleStart Inhibits":"YES"}', '2025-09-16 08:54:33');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2229, 198, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-16 08:54:33');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2230, 198, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-16 08:54:33');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2234, 206, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"WJFMS3.ae.ge.com","TQMCaron":"NO","Secondary":"WJFMS3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 09:57:27');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2235, 206, 'Mark', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-18 09:57:27');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2236, 206, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.11', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 09:57:27');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2241, 41, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"MC2000Dels":"NO","EOT":"NO","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"EOL Delay":"NO","EOL Delay msec":"0"}', '2025-09-18 10:10:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2242, 41, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:10:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2243, 41, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"WJFMS3","TQMCaron":"NO","Secondary":"WJFMS3","TQM9030":"NO","Wait Time":"250","HostType":"VMS","MDMacroVar":"101","CycleStart Inhibits":"YES"}', '2025-09-18 10:10:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2244, 41, 'PPDCS', 'COM5', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-18 10:10:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2245, 41, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:10:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2246, 41, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:10:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2247, 42, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:10:44');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2248, 42, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM2","CycleStart Inhibits":"YES"}', '2025-09-18 10:10:44');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2249, 42, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:10:44');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2250, 42, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:10:44');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2251, 40, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:10:52');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2252, 40, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:10:52');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2253, 40, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:10:52');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2254, 40, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:10:52');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2255, 32, 'Serial', 'COM4', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:11:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2256, 32, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:11:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2257, 32, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:11:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2258, 32, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"YES","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO","MarkerType":"2Line"}', '2025-09-18 10:11:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2259, 32, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"YES","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"2Line"}', '2025-09-18 10:11:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2260, 32, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:11:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2261, 33, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:11:08');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2262, 33, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-18 10:11:08');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2263, 33, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:11:08');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2264, 33, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:11:08');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2265, 34, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:11:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2266, 34, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-18 10:11:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2267, 34, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:11:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2268, 34, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:11:21');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2269, 35, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:11:32');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2270, 35, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-18 10:11:32');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2271, 35, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:11:32');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2272, 35, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:11:32');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2273, 36, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:11:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2274, 36, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-18 10:11:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2275, 36, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:11:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2276, 36, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:11:40');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2277, 37, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:11:49');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2278, 37, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-18 10:11:49');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2279, 37, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:11:49');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2280, 37, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:11:49');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2281, 38, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:11:56');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2282, 38, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:11:56');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2283, 38, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"2Line"}', '2025-09-18 10:11:56');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2284, 38, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:11:56');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2285, 39, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:12:03');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2286, 39, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-18 10:12:03');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2287, 39, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:12:03');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2288, 39, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:12:03');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2289, 131, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:12:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2290, 131, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-18 10:12:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2291, 131, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:12:38');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2292, 129, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:12:56');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2293, 129, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-18 10:12:56');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2294, 129, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:12:56');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2295, 130, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:13:05');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2296, 130, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-18 10:13:05');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2297, 130, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:13:05');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2298, 118, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:13:22');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2299, 118, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-18 10:13:22');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2300, 118, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:13:22');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2301, 117, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:13:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2302, 117, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-18 10:13:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2303, 117, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:13:31');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2304, 116, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:13:48');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2305, 116, 'Mark', 'COM3', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"OFF","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"NO"}', '2025-09-18 10:13:48');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2306, 116, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:13:48');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2307, 82, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:14:19');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2308, 82, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:14:19');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2309, 82, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:14:19');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2310, 82, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:14:19');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2311, 83, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:14:25');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2312, 83, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-18 10:14:25');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2313, 83, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"Mark2D","Message Type":"V"}', '2025-09-18 10:14:25');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2314, 83, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:14:25');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2315, 84, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:14:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2316, 84, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-18 10:14:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2317, 84, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:14:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2318, 84, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:14:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2319, 85, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:14:44');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2320, 85, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:14:44');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2321, 85, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:14:44');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2322, 85, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:14:44');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2323, 87, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:14:55');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2324, 87, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM1","CycleStart Inhibits":"YES"}', '2025-09-18 10:14:55');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2325, 87, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:14:55');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2326, 87, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:14:55');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2327, 86, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:15:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2328, 86, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:15:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2329, 86, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:15:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2330, 86, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-18 10:15:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2331, 90, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:15:25');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2332, 90, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-18 10:15:25');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2333, 90, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:15:25');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2334, 90, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-18 10:15:25');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2335, 89, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:15:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2336, 89, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:15:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2337, 89, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"Mark2D","Message Type":"V"}', '2025-09-18 10:15:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2338, 89, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-18 10:15:36');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2339, 132, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:15:50');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2340, 132, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-18 10:15:50');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2341, 132, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:15:50');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2342, 132, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-18 10:15:50');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2343, 91, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:16:00');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2344, 91, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-18 10:16:00');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2345, 91, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"Mark2D","Message Type":"V"}', '2025-09-18 10:16:00');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2346, 91, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-18 10:16:00');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2347, 113, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:16:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2348, 113, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-18 10:16:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2349, 113, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:16:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2350, 113, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-18 10:16:30');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2351, 112, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:16:47');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2352, 112, 'PPDCS', 'COM2', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM4","CycleStart Inhibits":"YES"}', '2025-09-18 10:16:47');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2353, 112, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:16:47');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2354, 112, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-18 10:16:47');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2355, 111, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:17:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2356, 111, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM3","CycleStart Inhibits":"YES"}', '2025-09-18 10:17:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2357, 111, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-18 10:17:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2358, 111, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-18 10:17:01');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2359, 106, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:17:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2360, 106, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"TMC400","Message Type":"V"}', '2025-09-18 10:17:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2361, 106, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-18 10:17:35');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2362, 107, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:17:51');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2363, 107, 'PPDCS', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","Wait Time":"250","TreeDisplay":"NO","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"TextMode Menu":"NO","ManualDataBadge":"NO","TQM9030":"NO","SharePollUnits":"msec","Timeout":"10","TQMCaron":"NO","CycleStart Inhibits":"NO","HostType":"VMS"}', '2025-09-18 10:17:51');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2364, 107, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"TMC400","Message Type":"V"}', '2025-09-18 10:17:51');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2365, 107, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"","Danobat":"NO","DualPath":"YES"}', '2025-09-18 10:17:51');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2366, 108, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:17:59');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2367, 108, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"TMC400","Message Type":"V"}', '2025-09-18 10:17:59');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2368, 108, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-18 10:17:59');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2369, 109, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-18 10:18:09');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2370, 109, 'Mark', 'COM1', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Debug":"ON","DncPatterns":"YES","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"MarkerType":"TMC400","Message Type":"V"}', '2025-09-18 10:18:09');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2371, 109, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8193, '{"Path2Name":"RIGHT","Path1Name":"LEFT","DataServer":"NO","Danobat":"NO","DualPath":"YES"}', '2025-09-18 10:18:09');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2396, 43, 'Serial', 'COM1', 9600, 8, '1', 'None', 'NO', NULL, NULL, '{"EOL Delay":"NO","2Saddle":"NO","MC2000Dels":"NO","EOT":"NO","EOL Delay msec":"0","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null}}', '2025-09-24 17:11:16');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2397, 43, 'PPDCS', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Files Threshold":"5","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"FrontEnd":"PPMON","TreeDisplay":"YES","Start Char":"DC2","Timeout":"10","UserName":"DCP_SHOPWJ","Password":"QSy1Go","TextMode Menu":"NO","Primary":"wjfms3.ae.ge.com","TQMCaron":"NO","Secondary":"wjfms3.ae.ge.com","EnableSharePoll":"NO","TQM9030":"NO","Wait Time":"250","HostType":"VMS","ManualDataBadge":"NO","SharePollUnits":"msec","Port Id2":"COM2","CycleStart Inhibits":"YES"}', '2025-09-24 17:11:16');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2398, 43, 'Mark', 'COM4', 9600, 8, '1', 'None', NULL, NULL, NULL, '{"Message Type":"V","DisableBarcode":"NO","DisableWeight":"NO","Debug":"ON","PSDrive":{"CurrentLocation":"","Name":"HKLM","Provider":{"ImplementingType":"Microsoft.PowerShell.Commands.RegistryProvider","HelpFile":"System.Management.Automation.dll-Help.xml","Name":"Registry","PSSnapIn":"Microsoft.PowerShell.Core","ModuleName":"Microsoft.PowerShell.Core","Module":null,"Description":"","Capabilities":80,"Home":"","Drives":"HKLM HKCU"},"Root":"HKEY_LOCAL_MACHINE","Description":"The configuration settings for the local computer","MaximumSize":null,"Credential":{"UserName":null,"Password":null},"DisplayRoot":null},"DncPatterns":"YES","MarkerType":"Mark2D"}', '2025-09-24 17:11:16');
INSERT INTO `pc_comm_config` (`configid`, `pcid`, `configtype`, `portid`, `baud`, `databits`, `stopbits`, `parity`, `crlf`, `ipaddress`, `socketnumber`, `additionalsettings`, `lastupdated`) VALUES
(2399, 43, 'eFocas', NULL, NULL, NULL, NULL, NULL, NULL, '192.168.1.1', 8192, '{"Path2Name":"","Path1Name":"","DataServer":"NO","Danobat":"NO","DualPath":"NO"}', '2025-09-24 17:11:16');
-- Dumping structure for table shopdb.pc_dnc_config
CREATE TABLE IF NOT EXISTS `pc_dnc_config` (
`dncid` int(11) NOT NULL AUTO_INCREMENT,
`pcid` int(11) NOT NULL,
`site` varchar(100) DEFAULT NULL COMMENT 'WestJefferson, etc.',
`cnc` varchar(100) DEFAULT NULL COMMENT 'Fanuc 30, etc.',
`ncif` varchar(50) DEFAULT NULL COMMENT 'EFOCAS, etc.',
`machinenumber` varchar(50) DEFAULT NULL COMMENT 'Machine number from DNC config',
`hosttype` varchar(50) DEFAULT NULL COMMENT 'WILM, VMS, Windows',
`ftphostprimary` varchar(100) DEFAULT NULL,
`ftphostsecondary` varchar(100) DEFAULT NULL,
`ftpaccount` varchar(100) DEFAULT NULL,
`debug` varchar(10) DEFAULT NULL COMMENT 'ON/OFF',
`uploads` varchar(10) DEFAULT NULL COMMENT 'YES/NO',
`scanner` varchar(10) DEFAULT NULL COMMENT 'YES/NO',
`dripfeed` varchar(10) DEFAULT NULL COMMENT 'YES/NO',
`additionalsettings` text COMMENT 'JSON of other DNC settings',
`lastupdated` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`dualpath_enabled` tinyint(1) DEFAULT NULL COMMENT 'Whether DualPath is enabled from eFocas registry',
`path1_name` varchar(255) DEFAULT NULL COMMENT 'Path1Name from eFocas registry',
`path2_name` varchar(255) DEFAULT NULL COMMENT 'Path2Name from eFocas registry',
`ge_registry_32bit` tinyint(1) DEFAULT NULL COMMENT 'DNC service found in 32-bit GE Aircraft Engines registry',
`ge_registry_64bit` tinyint(1) DEFAULT NULL COMMENT 'DNC service found in 64-bit GE Aircraft Engines registry (WOW6432Node)',
`ge_registry_notes` text COMMENT 'Additional GE registry configuration data for this DNC service (JSON)',
PRIMARY KEY (`dncid`),
UNIQUE KEY `unique_pcid` (`pcid`),
KEY `idx_pc_dnc_dualpath` (`dualpath_enabled`),
KEY `idx_pc_dnc_ge_registry` (`ge_registry_32bit`,`ge_registry_64bit`),
CONSTRAINT `pc_dnc_config_ibfk_1` FOREIGN KEY (`pcid`) REFERENCES `pc` (`pcid`)
) ENGINE=InnoDB AUTO_INCREMENT=628 DEFAULT CHARSET=utf8 COMMENT='GE DNC configurations for shopfloor PCs';
-- Dumping data for table shopdb.pc_dnc_config: ~136 rows (approximately)
DELETE FROM `pc_dnc_config`;
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(1, 5, 'WestJefferson', 'MARKER', 'SERIAL', 'WJPRT', 'WILM', '', '', '', 'ON', 'NO', 'NO', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"NO","DvUpldDir":""}', '2025-08-22 15:16:45', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(54, 124, 'WestJefferson', 'PC', 'SERIAL', '6602', 'WILM', '', '', '', 'ON', 'NO', 'NO', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"NO","DvUpldDir":""}', '2025-09-03 09:36:26', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(55, 127, 'WestJefferson', 'PC', 'SERIAL', '6603', 'WILM', '', '', '', 'ON', 'NO', 'NO', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"NO","DvUpldDir":""}', '2025-09-03 09:38:05', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(56, 128, 'WestJefferson', 'PC', 'SERIAL', '6604', 'WILM', '', '', '', 'ON', 'NO', 'NO', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"NO","DvUpldDir":""}', '2025-09-03 09:38:26', NULL, NULL, NULL, NULL, NULL, NULL);
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(380, 163, 'WestJefferson', 'Fanuc 30', 'SERIAL', '0000', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:03:01', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:03:00","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(400, 147, 'WestJefferson', 'Fanuc 16', 'HSSB', '5002', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Toshiba"}', '2025-09-10 17:16:51', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-10 17:16:50","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"","DualPath":"NO","Danobat":"","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(401, 148, 'WestJefferson', 'MARKER', 'SERIAL', '0615', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:16:59', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, MarkDNC","Found":"2025-09-10 17:16:59","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(402, 184, 'WestJefferson', 'Fanuc 30', 'SERIAL', '0000', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:18:04', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:18:04","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(403, 199, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3122', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-10 17:18:59', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:18:59","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(404, 200, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3121', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-10 17:19:10', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:19:10","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(405, 197, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '8001', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:20:03', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:20:02","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(407, 202, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7801', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:20:38', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:20:38","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(409, 201, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '5010', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Toshiba"}', '2025-09-10 17:21:14', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:21:14","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(410, 203, 'WestJefferson', 'MARKER', 'SERIAL', '0614', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"NO","DvUpldDir":""}', '2025-09-10 17:21:30', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, Mark, MarkDNC","Found":"2025-09-10 17:21:29","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(411, 204, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '8002', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:21:46', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:21:46","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(412, 205, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7802', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"YES","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:21:59', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:21:59","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(414, 183, 'WestJefferson', 'MARKER', 'SERIAL', '0615', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:23:02', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, MarkDNC, PPDCS","Found":"2025-09-10 17:23:01","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(415, 208, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7804', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:23:41', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:23:40","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(416, 209, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '4103', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"YES","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:24:20', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:24:19","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.11","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(417, 240, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '4101', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"YES","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:24:37', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:24:37","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.11","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(418, 210, 'WestJefferson', 'OKUMA', 'NTSHR', '3201', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-10 17:25:11', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:25:11","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(419, 211, 'WestJefferson', 'OKUMA', 'NTSHR', '3203', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-10 17:25:19', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:25:19","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(420, 212, 'WestJefferson', 'OKUMA', 'NTSHR', '3202', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-10 17:25:28', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:25:27","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(421, 213, 'WestJefferson', 'OKUMA', 'NTSHR', '3204', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-10 17:25:38', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:25:38","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(422, 214, 'WestJefferson', 'OKUMA', 'NTSHR', '3205', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-10 17:25:49', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:25:48","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(423, 215, 'WestJefferson', 'OKUMA', 'NTSHR', '3206', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-10 17:25:58', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:25:58","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(425, 216, 'WestJefferson', 'OKUMA', 'NTSHR', '3207', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-10 17:26:26', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:26:26","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(426, 217, 'WestJefferson', 'OKUMA', 'NTSHR', '3208', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-10 17:26:35', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:26:35","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(427, 218, 'WestJefferson', 'OKUMA', 'NTSHR', '3209', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-10 17:26:45', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:26:45","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(428, 219, 'WestJefferson', 'OKUMA', 'NTSHR', '3210', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-10 17:26:58', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:26:57","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(429, 190, 'WestJefferson', 'OKUMA', 'NTSHR', '3212', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-10 17:27:30', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:27:29","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(430, 191, 'WestJefferson', 'OKUMA', 'NTSHR', '3213', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-10 17:27:31', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:27:31","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(431, 185, 'WestJefferson', 'Fanuc 30', 'SERIAL', '0000', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:30:21', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:30:21","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(432, 186, 'WestJefferson', 'Fanuc 30', 'SERIAL', '0000', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:30:36', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:30:36","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(433, 187, 'WestJefferson', 'Fanuc 30', 'SERIAL', '0000', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:30:48', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:30:48","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(434, 242, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '5006', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Toshiba"}', '2025-09-10 17:31:02', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:31:02","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(435, 195, 'WestJefferson', 'Fanuc 30', 'SERIAL', '0000', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:31:21', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-10 17:31:20","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(436, 196, 'WestJefferson', 'MARKER', 'SERIAL', '0615', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-10 17:31:35', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-10 17:31:34","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(453, 169, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '4007', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-11 09:11:30', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-11 09:11:29","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(454, 170, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '4008', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-11 09:12:03', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-11 09:12:03","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(456, 167, 'WestJefferson', 'Fanuc 30', 'SERIAL', '0000', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-11 09:14:00', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-11 09:14:00","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(457, 168, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3007', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-11 09:14:13', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-11 09:14:12","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(458, 174, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7607', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-11 09:14:43', 0, 'Lathe', 'Mill', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-11 09:14:42","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"Lathe","IpAddr":"192.168.1.1","Path2Name":"Mill"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(459, 172, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7608', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-11 09:15:03', 0, 'Lathe', 'Mill', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-11 09:15:03","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"Lathe","IpAddr":"192.168.1.1","Path2Name":"Mill"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(460, 173, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7605', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-11 09:15:16', 0, 'Lathe', 'Mill', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-11 09:15:16","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"Lathe","IpAddr":"192.168.1.1","Path2Name":"Mill"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(461, 175, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7606', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-11 09:15:32', 0, 'Lathe', 'Mill', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-11 09:15:31","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"Lathe","IpAddr":"192.168.1.1","Path2Name":"Mill"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(462, 177, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7604', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-11 09:15:47', 0, 'Lathe', 'Mill', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-11 09:15:46","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"Lathe","IpAddr":"192.168.1.1","Path2Name":"Mill"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(463, 178, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7601', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-11 09:16:01', 0, 'Lathe', 'Mill', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-11 09:16:00","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"Lathe","IpAddr":"192.168.1.1","Path2Name":"Mill"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(464, 176, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7603', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-11 09:16:29', 0, 'Lathe', 'Mill', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-11 09:16:28","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"Lathe","IpAddr":"192.168.1.1","Path2Name":"Mill"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(479, 73, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '5302', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA"}', '2025-09-11 11:14:33', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-11 11:14:33","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(491, 62, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '2018', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-12 07:57:38', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 07:57:38","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(492, 63, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '2021', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-12 07:57:48', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-12 07:57:47","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(493, 67, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '2008', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-12 07:58:01', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-12 07:58:01","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(494, 64, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '2024', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-12 07:58:15', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-12 07:58:14","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(496, 69, 'WestJefferson', 'MARKER', 'SERIAL', '0612', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 07:58:38', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, MarkDNC","Found":"2025-09-12 07:58:38","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(497, 66, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '2003', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-12 08:00:21', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-12 08:00:21","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(498, 68, 'WestJefferson', 'MARKER', 'SERIAL', '0615', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 08:00:56', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, MarkDNC","Found":"2025-09-12 08:00:56","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(499, 70, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3011', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 08:01:11', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:01:11","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(500, 71, 'WestJefferson', 'MARKER', 'SERIAL', '0613', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 08:02:01', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, MarkDNC","Found":"2025-09-12 08:02:01","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(501, 72, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3017', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 08:02:12', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:02:11","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(502, 75, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '5004', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Toshiba"}', '2025-09-12 08:02:57', 0, '', '', 1, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:02:56","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"32bit-eFocas":{"SocketNo":"8193","DataServer":"","DualPath":"NO","Danobat":"","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""},"32bit":{"SubKeys":"DNC","Found":"2025-09-12 08:02:56","BasePath":"HKLM:\\\\SOFTWARE\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"","DualPath":"NO","Danobat":"","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(503, 98, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3041', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 08:03:29', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:03:29","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(504, 99, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '4003', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 08:03:44', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:03:43","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(505, 100, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3039', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 08:04:02', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:04:02","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(506, 101, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '4002', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 08:04:13', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:04:13","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(507, 102, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3010', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 08:04:31', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:04:31","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(509, 78, 'WestJefferson', '', '', '9999', '', 'wifms1.ae.ge.com', 'wifms2.ae.ge.com', 'dcp_shop', 'OFF', 'NO', 'NO', '', '{"Ncedt":"NO","FMSHostSecondary":"wifms2.ae.ge.com","FMSHostPrimary":"wifms1.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"NO","DvUpldDir":""}', '2025-09-12 08:12:21', 0, '', '', 1, 0, '{"32bit":{"SubKeys":"DNC","Found":"2025-09-12 08:12:21","BasePath":"HKLM:\\\\SOFTWARE\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(510, 97, 'WestJefferson', 'Fidia', 'NTSHR', '4704', 'WILM', '', '', '', 'ON', 'NO', 'YES', '', '{"Ncedt":"YES","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"C:\\\\Dnc_Files"}', '2025-09-12 08:14:23', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-12 08:14:23","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(511, 96, 'WestJefferson', 'Fidia', 'NTSHR', '4701', 'WILM', '', '', '', 'ON', 'NO', 'YES', '', '{"Ncedt":"YES","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"C:\\\\Dnc_Files"}', '2025-09-12 08:14:40', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:14:39","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(512, 110, 'WestJefferson', 'MARKER', 'SERIAL', '0614', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"NO","DvUpldDir":""}', '2025-09-12 08:22:07', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, MarkDNC","Found":"2025-09-12 08:22:07","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(520, 92, 'WestJefferson', 'Fidia', 'NTSHR', '4703', 'WILM', '', '', '', 'ON', 'NO', 'YES', '', '{"Ncedt":"YES","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"C:\\\\Dnc_Files"}', '2025-09-12 08:26:22', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-12 08:26:22","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(549, 233, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7507', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 08:42:35', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:42:35","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(550, 121, 'WestJefferson', 'Fanuc 30', 'SERIAL', '0000', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 08:45:41', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:45:41","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(552, 123, 'WestJefferson', 'MARKER', 'SERIAL', '0615', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 08:48:49', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, MarkDNC","Found":"2025-09-12 08:48:49","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(553, 52, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3123', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 08:49:25', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:49:25","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(554, 53, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3120', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 08:49:36', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:49:35","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(555, 51, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3124', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 08:49:52', 0, '', '', 1, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:49:51","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"32bit":{"SubKeys":"DNC","Found":"2025-09-12 08:49:51","BasePath":"HKLM:\\\\SOFTWARE\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(556, 54, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3119', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 08:50:20', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:50:20","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(557, 55, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3118', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 08:50:29', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:50:29","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(558, 56, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3117', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 08:51:40', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:51:40","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(559, 57, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '4001', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 08:52:02', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:52:02","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(560, 58, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '4006', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 08:52:11', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:52:11","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(562, 60, 'WestJefferson', '', '', '123', '', 'wifms1.ae.ge.com', 'wifms2.ae.ge.com', 'dcp_shop', 'OFF', 'NO', 'NO', '', '{"Ncedt":"NO","FMSHostSecondary":"wifms2.ae.ge.com","FMSHostPrimary":"wifms1.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"NO","DvUpldDir":""}', '2025-09-12 08:52:40', 0, '', '', 1, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:52:40","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"32bit":{"SubKeys":"DNC","Found":"2025-09-12 08:52:40","BasePath":"HKLM:\\\\SOFTWARE\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(563, 61, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '4005', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 08:53:01', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:53:00","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(564, 134, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '2019', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-12 08:58:16', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:58:16","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(565, 133, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '2013', 'WILM', 'tsgwp00525us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-12 08:58:35', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-12 08:58:35","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(566, 136, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3015', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 08:59:07', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:59:07","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(567, 135, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3013', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 08:59:19', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 08:59:19","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(569, 138, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '3006', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 09:00:00', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-12 08:59:59","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(571, 141, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3043', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 09:00:31', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 09:00:31","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(572, 142, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3035', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 09:00:55', 1, 'LEFT', 'RIGHT', 1, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 09:00:54","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"32bit":{"SubKeys":"DNC","Found":"2025-09-12 09:00:54","BasePath":"HKLM:\\\\SOFTWARE\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(573, 139, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3033', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-12 09:01:05', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 09:01:05","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(575, 146, 'WestJefferson', 'Fidia', 'NTSHR', '4702', 'WILM', '', '', '', 'ON', 'NO', 'YES', '', '{"Ncedt":"YES","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.AE.GE.COM","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"C:\\\\Dnc_Files"}', '2025-09-12 09:05:07', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 09:05:06","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(576, 152, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7405', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 09:09:33', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 09:09:33","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.0.114","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(577, 153, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7404', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 09:09:53', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 09:09:53","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.0.114","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(578, 154, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7403', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 09:10:05', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 09:10:05","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.0.114","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(579, 155, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7402', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 09:10:21', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 09:10:20","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.0.114","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(580, 156, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7401', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-12 09:10:36', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-12 09:10:36","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.0.114","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(582, 157, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '2011', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-12 09:11:10', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-12 09:11:10","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(583, 198, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '8003', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-16 08:54:32', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-16 08:54:30","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(585, 206, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '4102', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"YES","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-18 09:57:27', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 09:57:26","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.11","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(587, 41, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3106', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:10:30', 0, '', '', 1, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:10:30","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"32bit":{"SubKeys":"DNC","Found":"2025-09-18 10:10:30","BasePath":"HKLM:\\\\SOFTWARE\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(588, 42, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3107', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:10:44', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:10:43","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(589, 40, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3108', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:10:52', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:10:52","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(590, 32, 'WestJefferson', 'MARKER', 'SERIAL', 'WJPRT', 'WILM', '', '', '', 'ON', 'NO', 'NO', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"NO","DvUpldDir":""}', '2025-09-18 10:11:01', 0, '', '', 1, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, MarkZebra, PPDCS","Found":"2025-09-18 10:11:01","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"32bit":{"SubKeys":"DNC","Found":"2025-09-18 10:11:01","BasePath":"HKLM:\\\\SOFTWARE\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(591, 33, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3110', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:11:08', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:11:08","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(592, 34, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3111', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:11:21', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:11:20","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(593, 35, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3112', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:11:32', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:11:32","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(594, 36, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3113', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:11:40', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:11:39","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(595, 37, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3114', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:11:49', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:11:49","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(596, 38, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3115', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:11:56', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, MarkZebra, PPDCS","Found":"2025-09-18 10:11:56","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(597, 39, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3116', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:12:03', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:12:03","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(598, 131, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7501', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-18 10:12:38', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:12:37","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(599, 129, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7505', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-18 10:12:56', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:12:55","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(600, 130, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7502', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-18 10:13:05', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:13:05","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(601, 118, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7506', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-18 10:13:22', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:13:22","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(602, 117, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7503', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-18 10:13:31', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:13:30","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(603, 116, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '7504', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"wjfms4.ae.ge.com","FMSHostPrimary":"wjfms3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":""}', '2025-09-18 10:13:47', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:13:47","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(604, 82, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3103', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:14:19', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:14:19","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(605, 83, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3104', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:14:25', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:14:25","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(606, 84, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3101', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:14:35', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:14:35","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(607, 85, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3102', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:14:44', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:14:43","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(608, 87, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3126', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:14:55', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:14:54","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(609, 86, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3125', 'WILM', 'tsgwp00525.rd.ds.ge.com', 'tsgwp00525.rd.ds.ge.com', 'logon\\lg672650sd', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:15:01', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:15:00","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(610, 90, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3037', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:15:25', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:15:24","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(611, 89, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3027', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:15:36', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:15:36","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(612, 132, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3029', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:15:50', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:15:49","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(613, 91, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3031', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:16:00', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:16:00","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(614, 113, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3019', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:16:30', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, Mark, MarkZebra, PPDCS","Found":"2025-09-18 10:16:30","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(615, 112, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3021', 'WILM', 'tsgwp00525.rd.ds.ge.com', 'tsgwp00525.rd.ds.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:16:47', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:16:46","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(616, 111, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3023', 'WILM', 'tsgwp00525.us.ae.ge.com', 'tsgwp00525.us.ae.ge.com', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3.ae.ge.com","FMSHostPrimary":"WJFMS3.ae.ge.com","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-18 10:17:01', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:17:00","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(617, 106, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '2032', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-18 10:17:35', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-18 10:17:34","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(618, 107, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '2027', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-18 10:17:51', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-18 10:17:50","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(619, 108, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '2029', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-18 10:17:59', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-18 10:17:59","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(620, 109, 'WestJefferson', 'Fanuc 16', 'EFOCAS', '2026', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS4","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Hwacheon"}', '2025-09-18 10:18:09', 1, 'LEFT', 'RIGHT', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC","Found":"2025-09-18 10:18:08","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8193","DataServer":"NO","DualPath":"YES","Danobat":"NO","Path1Name":"LEFT","IpAddr":"192.168.1.1","Path2Name":"RIGHT"}}');
INSERT INTO `pc_dnc_config` (`dncid`, `pcid`, `site`, `cnc`, `ncif`, `machinenumber`, `hosttype`, `ftphostprimary`, `ftphostsecondary`, `ftpaccount`, `debug`, `uploads`, `scanner`, `dripfeed`, `additionalsettings`, `lastupdated`, `dualpath_enabled`, `path1_name`, `path2_name`, `ge_registry_32bit`, `ge_registry_64bit`, `ge_registry_notes`) VALUES
(627, 43, 'WestJefferson', 'Fanuc 30', 'EFOCAS', '3105', 'WILM', 'tsgwp00525', 'tsgwp00525', 'geaeevendale\\sfwj0ashp', 'ON', 'NO', 'YES', 'NO', '{"Ncedt":"NO","FMSHostSecondary":"WJFMS3","FMSHostPrimary":"WJFMS3","Mode":"Small","ChangeWorkstation":"NO","Unit/Area":"","Maint":"YES","DvUpldDir":"..\\\\shared\\\\NC-DATA\\\\Okuma"}', '2025-09-24 17:11:16', 0, '', '', 0, 1, '{"64bit":{"SubKeys":"DNC, Enhanced DNC, PPDCS","Found":"2025-09-24 17:11:16","BasePath":"HKLM:\\\\SOFTWARE\\\\WOW6432Node\\\\GE Aircraft Engines"},"64bit-eFocas":{"SocketNo":"8192","DataServer":"NO","DualPath":"NO","Danobat":"NO","Path1Name":"","IpAddr":"192.168.1.1","Path2Name":""}}');
-- Dumping structure for table shopdb.pc_dualpath_assignments
CREATE TABLE IF NOT EXISTS `pc_dualpath_assignments` (
`dualpathid` int(11) NOT NULL AUTO_INCREMENT,
`pcid` int(11) NOT NULL,
`primary_machine` varchar(50) DEFAULT NULL,
`secondary_machine` varchar(50) DEFAULT NULL,
`lastupdated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`dualpathid`),
UNIQUE KEY `unique_pc_assignment` (`pcid`),
KEY `idx_primary_machine` (`primary_machine`),
KEY `idx_secondary_machine` (`secondary_machine`),
CONSTRAINT `pc_dualpath_assignments_ibfk_1` FOREIGN KEY (`pcid`) REFERENCES `pc` (`pcid`) ON DELETE CASCADE
) ENGINE=InnoDB AUTO_INCREMENT=32 DEFAULT CHARSET=utf8mb4 COMMENT='Tracks DualPath PC assignments to multiple machines';
-- Dumping data for table shopdb.pc_dualpath_assignments: ~31 rows (approximately)
DELETE FROM `pc_dualpath_assignments`;
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(1, 89, '3027', '3028', '2025-09-08 21:28:23');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(2, 66, '2003', '2004', '2025-09-10 11:20:37');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(3, 157, '2011', '2012', '2025-09-10 11:21:46');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(4, 133, '2013', '2014', '2025-09-10 11:24:08');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(5, 62, '2018', '2017', '2025-09-10 11:24:47');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(6, 134, '2019', '2020', '2025-09-10 11:25:26');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(7, 63, '2021', '2022', '2025-09-10 11:27:25');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(8, 64, '2024', '2023', '2025-09-10 11:27:53');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(9, 109, '2026', '2025', '2025-09-10 11:28:20');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(10, 107, '2027', '2028', '2025-09-10 11:28:39');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(11, 108, '2029', '2030', '2025-09-10 11:29:15');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(12, 106, '2032', '2031', '2025-09-10 11:31:14');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(13, 138, '3006', '3005', '2025-09-10 11:31:54');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(14, 168, '3007', '3008', '2025-09-10 11:33:01');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(15, 102, '3010', '3009', '2025-09-10 11:34:33');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(16, 70, '3011', '3012', '2025-09-10 11:34:56');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(17, 135, '3013', '3014', '2025-09-10 11:35:27');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(18, 136, '3015', '3016', '2025-09-10 11:35:46');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(19, 72, '3017', '3018', '2025-09-10 11:36:15');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(20, 113, '3019', '3020', '2025-09-10 11:36:34');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(21, 112, '3021', '3022', '2025-09-10 11:36:57');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(22, 111, '3023', '3024', '2025-09-10 11:37:13');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(23, 132, '3029', '3030', '2025-09-10 11:37:55');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(24, 91, '3031', '3032', '2025-09-10 11:38:13');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(25, 139, '3033', '3034', '2025-09-10 11:39:38');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(26, 142, '3035', '3036', '2025-09-10 11:39:55');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(27, 100, '3039', '3040', '2025-09-10 11:41:08');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(28, 98, '3041', '3042', '2025-09-10 11:41:23');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(29, 141, '3043', '3044', '2025-09-10 11:41:55');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(30, 67, '2008', '2007', '2025-09-10 11:42:16');
INSERT INTO `pc_dualpath_assignments` (`dualpathid`, `pcid`, `primary_machine`, `secondary_machine`, `lastupdated`) VALUES
(31, 90, '3037', '3038', '2025-09-10 11:42:36');
-- Dumping structure for table shopdb.pc_model_backup
CREATE TABLE IF NOT EXISTS `pc_model_backup` (
`pcid` int(11) NOT NULL DEFAULT '0',
`vendorid` int(11) DEFAULT NULL COMMENT 'Foreign key to vendors table',
`model` varchar(100) DEFAULT NULL COMMENT 'System model',
`backup_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
-- Dumping data for table shopdb.pc_model_backup: ~206 rows (approximately)
DELETE FROM `pc_model_backup`;
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(4, 12, 'Latitude 5450', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(5, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(6, 12, 'Precision 5690', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(7, 12, 'Precision 5690', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(8, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(9, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(10, 12, 'Precision 7680', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(11, 12, 'Precision 7680', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(12, 12, 'Precision 7875 Tower', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(13, 12, 'Precision 7780', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(14, 12, 'Precision 7875 Tower', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(15, 12, 'Precision 5690', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(16, 12, 'Precision 5690', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(17, 12, 'Precision 7680', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(18, 12, 'Precision 5680', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(19, 12, 'Precision 5680', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(20, 12, 'Precision 7680', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(21, 12, 'Precision 7680', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(22, 12, 'OptiPlex Micro 7020', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(23, 12, 'Dell Pro 14 Plus PB14250', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(24, 12, 'Precision 7680', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(25, 12, 'Dell Pro 13 Plus PB13250', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(26, 12, 'Latitude 5450', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(27, 12, 'Dell Pro 14 Plus PB14250', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(28, 12, 'Latitude 5350', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(29, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(30, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(31, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(32, 12, 'OptiPlex 7070', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(33, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(34, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(35, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(36, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(37, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(38, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(39, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(40, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(41, 12, 'OptiPlex 7070', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(42, 12, 'OptiPlex 7070', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(43, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(44, 12, 'Precision 5570', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(45, 12, 'Precision 7680', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(46, 12, 'Precision 7875 Tower', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(47, 12, 'Precision 5820 Tower', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(48, 12, 'Precision 7780', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(49, 12, 'Precision 7680', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(50, 12, 'Precision 7680', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(51, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(52, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(53, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(54, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(55, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(56, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(57, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(58, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(59, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(60, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(61, 12, 'OptiPlex 5050', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(62, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(63, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(64, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(65, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(66, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(67, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(68, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(69, 12, 'OptiPlex 5040', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(70, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(71, 12, 'OptiPlex 5050', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(72, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(73, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(74, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(75, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(77, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(78, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(79, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(80, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(81, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(82, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(83, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(84, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(85, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(86, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(87, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(88, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(89, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(90, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(91, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(92, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(93, 12, 'OptiPlex Tower Plus 7020', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(94, 12, 'OptiPlex Tower Plus 7020', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(95, 12, 'OptiPlex Tower Plus 7020', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(96, 12, 'OptiPlex 7070', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(97, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(98, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(99, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(100, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(101, 12, 'OptiPlex 7070', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(102, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(105, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(106, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(107, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(108, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(109, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(110, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(111, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(112, 12, 'OptiPlex 7070', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(113, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(114, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(115, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(116, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(117, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(118, 12, 'OptiPlex 7070', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(119, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(120, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(121, 12, 'OptiPlex 7070', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(123, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(124, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(125, 12, 'OptiPlex Tower Plus 7020', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(126, 12, 'OptiPlex 5040', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(127, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(128, 12, 'OptiPlex 5050', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(129, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(130, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(131, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(132, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(133, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(134, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(135, 12, 'OptiPlex 5050', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(136, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(138, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(139, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(141, 12, 'OptiPlex 7070', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(142, 12, 'OptiPlex 5050', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(144, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(145, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(146, 12, 'OptiPlex 7070', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(147, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(148, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(149, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(150, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(151, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(152, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(153, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(154, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(155, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(156, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(157, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(162, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(163, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(164, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(165, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(166, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(167, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(168, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(169, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(170, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(171, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(172, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(173, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(174, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(175, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(176, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(177, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(178, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(179, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(181, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(182, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(183, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(184, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(185, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(186, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(187, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(188, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(189, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(190, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(191, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(192, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(193, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(194, 12, 'OptiPlex Tower Plus 7020', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(195, 12, 'OptiPlex 7070', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(196, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(197, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(198, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(199, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(200, 12, 'OptiPlex 7070', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(201, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(202, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(203, 12, 'OptiPlex 5060', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(204, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(205, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(206, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(207, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(208, 12, 'OptiPlex Tower Plus 7010', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(209, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(210, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(211, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(212, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(213, 12, 'OptiPlex 7090', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(214, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(215, 12, 'OptiPlex 7070', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(216, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(217, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(218, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(219, 12, 'OptiPlex 7080', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(221, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
INSERT INTO `pc_model_backup` (`pcid`, `vendorid`, `model`, `backup_date`) VALUES
(222, 12, 'OptiPlex 7000', '2025-09-08 06:20:44');
-- Dumping structure for table shopdb.pc_network_interfaces
CREATE TABLE IF NOT EXISTS `pc_network_interfaces` (
`interfaceid` int(11) NOT NULL AUTO_INCREMENT,
`pcid` int(11) NOT NULL,
`interfacename` varchar(255) DEFAULT NULL COMMENT 'Network adapter name',
`ipaddress` varchar(45) DEFAULT NULL COMMENT 'IP address',
`subnetmask` varchar(45) DEFAULT NULL COMMENT 'Subnet mask',
`defaultgateway` varchar(45) DEFAULT NULL COMMENT 'Default gateway',
`macaddress` varchar(17) DEFAULT NULL COMMENT 'MAC address',
`isdhcp` tinyint(1) DEFAULT '0' COMMENT '1=DHCP, 0=Static',
`isactive` tinyint(1) DEFAULT '1' COMMENT '1=Active interface',
`ismachinenetwork` tinyint(1) DEFAULT '0' COMMENT '1=Machine network (192.168.*.*)',
`lastupdated` datetime DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`interfaceid`),
KEY `idx_pcid` (`pcid`),
KEY `idx_ipaddress` (`ipaddress`),
CONSTRAINT `pc_network_interfaces_ibfk_1` FOREIGN KEY (`pcid`) REFERENCES `pc` (`pcid`)
) ENGINE=InnoDB AUTO_INCREMENT=2754 DEFAULT CHARSET=utf8 COMMENT='Network interfaces for PCs';
-- Dumping data for table shopdb.pc_network_interfaces: ~705 rows (approximately)
DELETE FROM `pc_network_interfaces`;
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1, 5, 'Ethernet', '10.134.48.127', '23', '10.134.48.1', '20-88-10-E0-5B-F2', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(378, 124, 'DNC', '3.0.0.105', '24', NULL, '00-13-3B-12-3E-B3', 0, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(379, 124, 'Ethernet', '10.134.49.149', '23', '10.134.48.1', '8C-EC-4B-CA-A1-FF', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(388, 127, 'DNC', '3.0.0.135', '8', NULL, '00-13-3B-12-3E-AD', 0, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(389, 127, 'Ethernet', '10.134.49.90', '23', '10.134.48.1', '8C-EC-4B-CA-A2-38', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(390, 128, 'DNC', '3.0.0.135', '24', NULL, '00-13-3B-11-80-7B', 0, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(391, 128, 'Ethernet', '10.134.49.69', '23', '10.134.48.1', '8C-EC-4B-75-7D-82', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(888, 221, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:24');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(889, 221, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:24');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(890, 221, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:24');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(891, 221, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:24');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(892, 221, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:24');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(893, 221, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:24');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(894, 221, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:24');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(895, 221, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:24');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(896, 222, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(897, 222, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(898, 222, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(899, 222, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(900, 222, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(901, 222, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(902, 222, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(903, 222, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-05 08:01:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(932, 223, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-08 14:19:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(933, 223, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-08 14:19:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(934, 223, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-08 14:19:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(935, 223, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-08 14:19:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(936, 223, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-08 14:19:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(937, 223, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-08 14:19:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(938, 223, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-08 14:19:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(939, 223, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-08 14:19:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1494, 114, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 15:41:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1495, 114, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 15:41:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1496, 114, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 15:41:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1497, 114, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 15:41:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1498, 114, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 15:41:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1499, 114, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 15:41:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1500, 114, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 15:41:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1501, 114, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 15:41:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1750, 164, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:00:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1751, 164, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:00:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1752, 164, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:00:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1753, 164, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:00:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1754, 164, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:00:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1755, 164, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:00:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1756, 164, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:00:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1757, 164, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:00:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1758, 163, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:03:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1759, 163, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:03:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1760, 163, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:03:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1761, 163, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:03:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1762, 163, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:03:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1763, 163, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:03:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1764, 163, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:03:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1765, 163, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:03:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1824, 166, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:26');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1825, 166, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:26');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1826, 166, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:26');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1827, 166, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:26');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1828, 166, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:26');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1829, 166, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:26');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1830, 166, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:26');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1831, 166, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:26');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1832, 165, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1833, 165, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1834, 165, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1835, 165, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1836, 165, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1837, 165, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1838, 165, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1839, 165, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:15:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1840, 147, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:51');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1841, 147, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:51');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1842, 147, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:51');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1843, 147, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:51');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1844, 147, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:51');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1845, 147, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:51');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1846, 147, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:51');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1847, 147, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:51');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1848, 148, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:59');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1849, 148, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:59');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1850, 148, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:59');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1851, 148, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:59');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1852, 148, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:59');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1853, 148, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:59');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1854, 148, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:59');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1855, 148, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:16:59');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1856, 149, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:17:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1857, 149, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:17:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1858, 149, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:17:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1859, 149, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:17:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1860, 149, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:17:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1861, 149, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:17:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1862, 149, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:17:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1863, 149, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:17:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1864, 184, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:18:04');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1865, 184, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:18:04');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1866, 184, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:18:04');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1867, 184, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:18:04');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1868, 184, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:18:04');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1869, 184, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:18:04');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1870, 184, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:18:04');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1871, 184, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:18:04');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1872, 199, 'DNC', '192.168.1.2', '24', NULL, 'B4-B0-24-B2-21-71', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1873, 199, 'Ethernet 2', '10.134.48.116', '23', '10.134.48.1', '08-92-04-DE-A5-C5', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1874, 200, 'Ethernet', '10.134.48.110', '23', '10.134.48.1', '70-B5-E8-2A-AA-94', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1875, 200, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-A9', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1876, 197, 'Ethernet', '10.134.49.110', '23', '10.134.48.1', 'B0-4F-13-0B-4A-20', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1877, 197, 'DNC', '192.168.1.2', '24', NULL, 'C4-12-F5-30-68-B7', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1880, 202, 'Ethernet 2', '10.134.48.64', '23', '10.134.48.1', '20-88-10-DF-5F-84', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1881, 202, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-5D', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1890, 201, 'DNC', '192.168.0.3', '24', NULL, '00-13-3B-12-3E-FB', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1891, 201, 'Ethernet', '10.134.49.94', '23', '10.134.48.1', '8C-EC-4B-CA-E0-F7', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1892, 203, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:21:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1893, 203, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:21:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1894, 203, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:21:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1895, 203, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:21:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1896, 203, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:21:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1897, 203, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:21:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1898, 203, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:21:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1899, 203, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:21:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1900, 204, 'DNC', '192.168.1.2', '24', NULL, '10-62-EB-33-95-BE', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1901, 204, 'Ethernet', '10.134.48.142', '23', '10.134.48.1', 'A4-BB-6D-CF-67-D7', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1902, 205, 'Ethernet', '10.134.48.183', '23', '10.134.48.1', 'C4-5A-B1-D0-0C-52', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1903, 205, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-5A-39-01', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1906, 182, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:22:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1907, 182, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:22:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1908, 182, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:22:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1909, 182, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:22:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1910, 182, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:22:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1911, 182, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:22:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1912, 182, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:22:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1913, 182, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:22:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1914, 183, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1915, 183, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1916, 183, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1917, 183, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1918, 183, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1919, 183, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1920, 183, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1921, 183, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1922, 181, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:16');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1923, 181, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:16');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1924, 181, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:16');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1925, 181, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:16');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1926, 181, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:16');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1927, 181, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:16');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1928, 181, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:16');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1929, 181, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:23:16');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1930, 208, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3E-A9', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1931, 208, 'Ethernet', '10.134.49.68', '23', '10.134.48.1', 'C4-5A-B1-EB-8D-48', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1932, 209, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-5A-39-28', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1933, 209, 'Ethernet', '10.134.48.210', '23', '10.134.48.1', 'B0-4F-13-15-64-AD', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1934, 240, 'Ethernet', '192.168.1.1', '24', NULL, '00-13-3B-22-20-48', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1935, 240, 'Ethernet 2', '10.134.49.12', '23', '10.134.48.1', '8C-EC-4B-CE-C6-3D', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1936, 210, 'Ethernet', '10.134.49.163', '23', '10.134.48.1', 'A4-BB-6D-CE-C7-4A', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1937, 210, 'DNC', '192.168.1.8', '24', NULL, '10-62-EB-33-04-99', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1938, 211, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-5A-39-37', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1939, 211, 'Ethernet', '10.134.48.23', '23', '10.134.48.1', 'B0-4F-13-15-57-62', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1940, 212, 'Ethernet', '10.134.49.16', '23', '10.134.48.1', '08-92-04-E2-EC-CB', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1941, 212, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-57', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1942, 213, 'Ethernet', '10.134.49.151', '23', '10.134.48.1', 'D0-8E-79-0B-C9-E5', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1943, 213, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-4A-79-B2', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1944, 214, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-B9', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1945, 214, 'Ethernet', '10.134.48.87', '23', '10.134.48.1', 'A4-BB-6D-CE-AB-CD', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1946, 215, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-AD', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1947, 215, 'Ethernet', '10.134.49.3', '23', '10.134.48.1', 'E4-54-E8-DC-DA-72', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1956, 216, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-21-D3-04', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1957, 216, 'Ethernet', '10.134.48.54', '23', '10.134.48.1', '74-86-E2-2F-B1-B0', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1958, 217, 'Ethernet', '10.134.49.144', '23', '10.134.48.1', 'A4-BB-6D-CE-C3-A9', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1959, 217, 'Ethernet 2', '192.168.1.2', '24', NULL, '00-13-3B-5A-3E-3F', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1960, 218, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-6F', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1961, 218, 'Ethernet', '10.134.48.72', '23', '10.134.48.1', 'C4-5A-B1-D8-7F-98', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1962, 219, 'Ethernet', '10.134.48.21', '23', '10.134.48.1', 'A4-BB-6D-CE-BB-05', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1963, 219, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-B2', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1964, 192, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:08');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1965, 192, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:08');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1966, 192, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:08');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1967, 192, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:08');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1968, 192, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:08');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1969, 192, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:08');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1970, 192, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:08');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1971, 192, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:08');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1972, 190, 'Ethernet 2', '10.134.49.35', '23', '10.134.48.1', 'B0-4F-13-10-42-AD', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1973, 190, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-22-69', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1974, 191, 'Ethernet', '10.134.49.158', '23', '10.134.48.1', 'E4-54-E8-AC-BA-41', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1975, 191, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-5A-2A-FC', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1976, 194, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1977, 194, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1978, 194, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1979, 194, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1980, 194, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1981, 194, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1982, 194, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1983, 194, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1984, 193, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:54');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1985, 193, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:54');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1986, 193, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:54');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1987, 193, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:54');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1988, 193, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:54');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1989, 193, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:54');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1990, 193, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:54');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1991, 193, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:27:54');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1992, 189, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1993, 189, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1994, 189, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1995, 189, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1996, 189, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1997, 189, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1998, 189, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(1999, 189, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2000, 188, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2001, 188, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2002, 188, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2003, 188, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2004, 188, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2005, 188, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2006, 188, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2007, 188, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:28:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2008, 185, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2009, 185, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2010, 185, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2011, 185, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2012, 185, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2013, 185, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2014, 185, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2015, 185, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2016, 186, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:36');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2017, 186, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:36');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2018, 186, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:36');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2019, 186, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:36');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2020, 186, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:36');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2021, 186, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:36');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2022, 186, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:36');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2023, 186, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:36');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2024, 187, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:48');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2025, 187, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:48');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2026, 187, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:48');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2027, 187, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:48');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2028, 187, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:48');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2029, 187, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:48');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2030, 187, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:48');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2031, 187, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:30:48');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2032, 242, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2033, 242, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2034, 242, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2035, 242, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2036, 242, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2037, 242, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2038, 242, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2039, 242, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2040, 195, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2041, 195, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2042, 195, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2043, 195, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2044, 195, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2045, 195, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2046, 195, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2047, 195, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2048, 196, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:35');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2049, 196, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:35');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2050, 196, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:35');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2051, 196, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:35');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2052, 196, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:35');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2053, 196, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:35');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2054, 196, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:35');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2055, 196, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-10 17:31:35');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2100, 169, 'Ethernet 2', '10.134.49.154', '23', '10.134.48.1', '20-88-10-E5-50-82', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2101, 169, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-C0', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2102, 170, 'Ethernet', '10.134.48.154', '23', '10.134.48.1', 'D0-8E-79-0B-8C-68', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2103, 170, 'DNC', '192.168.1.2', '24', NULL, 'E4-6F-13-A8-E5-3B', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2106, 167, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2107, 167, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2108, 167, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2109, 167, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2110, 167, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2111, 167, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2112, 167, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2113, 167, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:00');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2114, 168, 'Ethernet', '10.134.48.160', '23', '10.134.48.1', 'D0-8E-79-0B-C8-E6', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2115, 168, 'DNC', '192.168.1.2', '24', NULL, '10-62-EB-33-04-96', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2116, 171, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2117, 171, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2118, 171, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2119, 171, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2120, 171, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2121, 171, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2122, 171, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2123, 171, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:14:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2124, 174, 'Ethernet', '10.134.48.107', '23', '10.134.48.1', 'C4-5A-B1-E3-8A-2C', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2125, 174, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-B0', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2126, 172, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-40', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2127, 172, 'Ethernet', '10.134.48.94', '23', '10.134.48.1', 'C4-5A-B1-E3-8C-7B', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2128, 173, 'DNC', '192.168.1.2', '24', NULL, 'B4-B0-24-B2-15-71', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2129, 173, 'Ethernet 2', '10.134.49.92', '23', '10.134.48.1', 'C4-5A-B1-E3-8A-B3', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2130, 175, 'Ethernet', '10.134.48.224', '23', '10.134.48.1', 'C4-5A-B1-E2-E1-C3', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2131, 175, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-4C', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2132, 177, 'Ethernet 2', '10.134.48.225', '23', '10.134.48.1', 'C4-5A-B1-DF-A9-D3', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2133, 177, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-6E', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2134, 178, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-59', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2135, 178, 'Ethernet', '10.134.49.50', '23', '10.134.48.1', 'C4-5A-B1-E2-D5-F0', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2136, 176, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:16:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2137, 176, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:16:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2138, 176, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:16:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2139, 176, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:16:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2140, 176, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:16:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2141, 176, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:16:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2142, 176, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:16:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2143, 176, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 09:16:29');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2172, 73, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 11:14:34');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2173, 73, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 11:14:34');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2174, 73, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 11:14:34');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2175, 73, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 11:14:34');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2176, 73, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 11:14:34');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2177, 73, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 11:14:34');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2178, 73, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 11:14:34');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2179, 73, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 11:14:34');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2194, 162, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 12:54:47');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2195, 162, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 12:54:47');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2196, 162, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 12:54:47');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2197, 162, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 12:54:47');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2198, 162, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 12:54:47');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2199, 162, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 12:54:47');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2200, 162, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 12:54:47');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2201, 162, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-11 12:54:47');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2232, 8, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:05');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2233, 8, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:05');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2234, 8, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:05');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2235, 8, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:05');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2236, 8, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:05');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2237, 8, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:05');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2238, 8, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:05');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2239, 8, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:05');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2240, 9, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2241, 9, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2242, 9, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2243, 9, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2244, 9, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2245, 9, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2246, 9, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2247, 9, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:31:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2250, 62, 'Ethernet', '10.134.49.81', '23', '10.134.48.1', 'B0-4F-13-0B-46-51', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2251, 62, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-4A-79-BC', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2252, 63, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-22-4E', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2253, 63, 'Ethernet', '10.134.49.4', '23', '10.134.48.1', 'C4-5A-B1-EB-8C-19', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2254, 67, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-21-D2-F9', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2255, 67, 'Ethernet 2', '10.134.48.165', '23', '10.134.48.1', 'C4-5A-B1-DD-F4-34', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2256, 64, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-53', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2257, 64, 'Ethernet', '10.134.48.182', '23', '10.134.48.1', 'C4-5A-B1-E2-FA-D8', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2260, 69, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:58:38');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2261, 69, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:58:38');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2262, 69, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:58:38');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2263, 69, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:58:38');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2264, 69, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:58:38');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2265, 69, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:58:38');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2266, 69, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:58:38');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2267, 69, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 07:58:38');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2268, 66, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-44', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2269, 66, 'Ethernet 2', '10.134.49.106', '23', '10.134.48.1', '08-92-04-EC-87-9D', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2270, 68, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:00:56');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2271, 68, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:00:56');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2272, 68, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:00:56');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2273, 68, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:00:56');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2274, 68, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:00:56');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2275, 68, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:00:56');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2276, 68, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:00:56');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2277, 68, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:00:56');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2278, 70, 'Ethernet', '10.134.49.188', '23', '10.134.48.1', '20-88-10-E1-56-19', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2279, 70, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-68', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2280, 71, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:02:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2281, 71, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:02:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2282, 71, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:02:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2283, 71, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:02:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2284, 71, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:02:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2285, 71, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:02:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2286, 71, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:02:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2287, 71, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:02:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2288, 72, 'Ethernet', '192.168.1.2', '24', NULL, 'A4-BB-6D-CF-67-F4', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2289, 72, 'DNC', '10.134.48.244', '23', '10.134.48.1', '10-62-EB-34-0E-8C', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2290, 75, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3E-A4', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2291, 75, 'Ethernet', '10.134.49.82', '23', '10.134.48.1', '8C-EC-4B-CA-A2-39', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2292, 98, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3E-F0', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2293, 98, 'Ethernet', '10.134.48.60', '23', '10.134.48.1', '8C-EC-4B-CA-E1-19', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2294, 99, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-21-D2-E9', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2295, 99, 'Ethernet', '10.134.49.115', '23', '10.134.48.1', '8C-EC-4B-BE-C1-0F', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2296, 100, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3E-A3', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2297, 100, 'Ethernet', '10.134.48.105', '23', '10.134.48.1', '8C-EC-4B-CA-A3-5D', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2298, 101, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-DF', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2299, 101, 'Ethernet', '10.134.49.56', '23', '10.134.48.1', 'E4-54-E8-AE-90-39', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2300, 102, 'Ethernet 2', '10.134.48.211', '23', '10.134.48.1', '08-92-04-DE-98-0F', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2301, 102, 'DNC', '192.168.1.2', '24', NULL, 'B4-B0-24-B2-2A-DA', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2310, 77, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2311, 77, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2312, 77, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2313, 77, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2314, 77, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2315, 77, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2316, 77, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2317, 77, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2318, 78, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2319, 78, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2320, 78, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2321, 78, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2322, 78, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2323, 78, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2324, 78, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2325, 78, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2326, 79, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2327, 79, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2328, 79, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2329, 79, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2330, 79, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2331, 79, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2332, 79, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2333, 79, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:12:50');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2334, 81, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:18');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2335, 81, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:18');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2336, 81, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:18');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2337, 81, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:18');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2338, 81, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:18');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2339, 81, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:18');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2340, 81, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:18');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2341, 81, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:18');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2342, 80, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:39');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2343, 80, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:39');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2344, 80, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:39');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2345, 80, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:39');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2346, 80, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:39');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2347, 80, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:39');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2348, 80, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:39');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2349, 80, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:13:39');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2350, 97, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-5A-39-0A', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2351, 97, 'Ethernet', '10.134.49.174', '23', '10.134.48.1', 'C4-5A-B1-D8-69-B7', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2352, 96, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-D0', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2353, 96, 'Ethernet', '10.134.48.191', '23', '10.134.48.1', 'E4-54-E8-DC-B2-7F', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2354, 94, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:20:47');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2355, 94, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:20:47');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2356, 94, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:20:47');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2357, 94, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:20:47');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2358, 94, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:20:47');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2359, 94, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:20:48');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2360, 94, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:20:48');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2361, 94, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:20:48');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2362, 95, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:21:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2363, 95, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:21:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2364, 95, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:21:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2365, 95, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:21:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2366, 95, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:21:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2367, 95, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:21:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2368, 95, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:21:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2369, 95, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:21:40');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2370, 110, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:22:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2371, 110, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:22:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2372, 110, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:22:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2373, 110, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:22:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2374, 110, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:22:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2375, 110, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:22:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2376, 110, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:22:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2377, 110, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:22:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2400, 92, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-4A-79-2C', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2401, 92, 'Ethernet', '10.134.49.6', '23', '10.134.48.1', '08-92-04-DE-A8-36', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2402, 115, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:26:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2403, 115, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:26:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2404, 115, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:26:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2405, 115, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:26:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2406, 115, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:26:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2407, 115, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:26:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2408, 115, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:26:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2409, 115, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:26:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2466, 233, 'Ethernet', '10.134.48.90', '23', '10.134.48.1', '70-B5-E8-2A-7B-5B', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2467, 233, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3B-C3', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2468, 119, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:43:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2469, 119, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:43:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2470, 119, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:43:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2471, 119, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:43:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2472, 119, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:43:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2473, 119, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:43:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2474, 119, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:43:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2475, 119, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:43:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2476, 120, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2477, 120, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2478, 120, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2479, 120, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2480, 120, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2481, 120, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2482, 120, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2483, 120, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2484, 121, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2485, 121, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2486, 121, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2487, 121, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2488, 121, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2489, 121, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2490, 121, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2491, 121, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:45:41');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2500, 123, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:48:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2501, 123, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:48:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2502, 123, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:48:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2503, 123, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:48:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2504, 123, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:48:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2505, 123, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:48:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2506, 123, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:48:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2507, 123, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:48:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2508, 52, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3E-A8', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2509, 52, 'Ethernet', '10.134.49.133', '23', '10.134.48.1', 'B0-4F-13-0B-42-19', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2510, 53, 'Ethernet', '10.134.48.241', '23', '10.134.48.1', '08-92-04-DE-A9-45', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2511, 53, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3E-FF', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2512, 51, 'Ethernet', '10.134.48.52', '23', '10.134.48.1', 'A4-BB-6D-BC-7C-EB', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2513, 51, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-22-5C', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2514, 54, 'DNC2', '192.168.1.2', '24', NULL, '00-13-3B-22-22-75', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2515, 54, 'Ethernet', '10.134.48.251', '23', '10.134.48.1', 'A4-BB-6D-C6-52-82', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2516, 55, 'Ethernet', '10.134.48.36', '23', '10.134.48.1', '08-92-04-E6-07-5F', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2517, 55, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-56', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2518, 56, 'Ethernet', '10.134.48.86', '23', '10.134.48.1', '08-92-04-DE-A2-D2', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2519, 56, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-21-D2-F5', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2520, 57, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-51', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2521, 57, 'Ethernet', '10.134.48.234', '23', '10.134.48.1', '8C-EC-4B-CA-A5-32', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2522, 58, 'logon', '10.134.48.233', '23', '10.134.48.1', '00-13-3B-21-D2-EB', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2523, 58, 'DNC', '192.168.1.2', '24', NULL, 'A4-BB-6D-CF-4A-0D', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2532, 60, 'Ethernet', '10.134.48.115', '23', '10.134.48.1', 'A4-BB-6D-C6-63-2D', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2533, 60, 'DNC', '192.168.1.2', '24', NULL, '10-62-EB-33-95-C1', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2534, 61, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-10-DC-2F', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2535, 61, 'Ethernet', '10.134.49.36', '23', '10.134.48.1', '50-9A-4C-15-55-19', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2536, 30, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:53:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2537, 30, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:53:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2538, 30, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:53:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2539, 30, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:53:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2540, 30, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:53:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2541, 30, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:53:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2542, 30, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:53:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2543, 30, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:53:01');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2544, 31, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:55:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2545, 31, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:55:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2546, 31, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:55:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2547, 31, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:55:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2548, 31, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:55:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2549, 31, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:55:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2550, 31, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:55:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2551, 31, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 08:55:02');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2552, 134, 'Ethernet', '10.134.49.1', '23', '10.134.48.1', 'B0-4F-13-15-64-AA', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2553, 134, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-10-89-C9', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2554, 133, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3E-F3', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2555, 133, 'Ethernet 2', '10.134.48.173', '23', '10.134.48.1', 'A8-3C-A5-26-10-00', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2556, 136, 'Ethernet', '10.134.48.41', '23', '10.134.48.1', 'B0-4F-13-0B-4A-A0', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2557, 136, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3E-AB', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2558, 135, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-10-DE-27', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2559, 135, 'Ethernet', '10.134.48.79', '23', '10.134.48.1', '8C-EC-4B-41-38-6C', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2562, 138, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-22-61', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2563, 138, 'Ethernet', '10.134.48.35', '23', '10.134.48.1', '8C-EC-4B-CC-C0-CD', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2566, 141, 'Ethernet', '10.134.48.85', '23', '10.134.48.1', 'E4-54-E8-DC-AE-9F', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2567, 141, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-4A-79-32', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2568, 142, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-11-80-72', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2569, 142, 'Ethernet', '10.134.48.49', '23', '10.134.48.1', '8C-EC-4B-75-27-13', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2570, 139, 'Ethernet', '10.134.49.171', '23', '10.134.48.1', 'A4-BB-6D-CF-76-42', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2571, 139, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-10-DC-3C', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2580, 144, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:01:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2581, 144, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:01:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2582, 144, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:01:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2583, 144, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:01:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2584, 144, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:01:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2585, 144, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:01:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2586, 144, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:01:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2587, 144, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:01:43');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2588, 145, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:04:37');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2589, 145, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:04:37');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2590, 145, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:04:37');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2591, 145, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:04:37');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2592, 145, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:04:37');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2593, 145, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:04:37');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2594, 145, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:04:37');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2595, 145, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:04:37');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2596, 146, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2597, 146, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2598, 146, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2599, 146, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2600, 146, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2601, 146, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2602, 146, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2603, 146, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:07');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2604, 151, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2605, 151, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2606, 151, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2607, 151, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2608, 151, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2609, 151, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2610, 151, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2611, 151, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:05:49');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2612, 150, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:08:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2613, 150, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:08:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2614, 150, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:08:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2615, 150, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:08:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2616, 150, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:08:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2617, 150, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:08:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2618, 150, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:08:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2619, 150, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-12 09:08:30');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2620, 152, 'Ethernet', '10.134.49.58', '23', '10.134.48.1', 'C4-5A-B1-E4-23-34', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2621, 152, 'DNC', '192.168.0.3', '24', NULL, '00-13-3B-22-20-6B', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2622, 153, 'Ethernet', '10.134.48.93', '23', '10.134.48.1', 'C4-5A-B1-E4-22-84', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2623, 153, 'DNC', '192.168.0.2', '24', NULL, '00-13-3B-22-22-7C', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2624, 154, 'DNC', '192.168.0.118', '24', NULL, '00-13-3B-22-20-52', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2625, 154, 'Ethernet', '10.134.49.51', '23', '10.134.48.1', 'C4-5A-B1-E2-FF-4F', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2626, 155, 'Ethernet', '10.134.48.102', '23', '10.134.48.1', 'C4-5A-B1-E4-22-36', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2627, 155, 'DNC', '192.168.0.2', '24', NULL, '00-13-3B-22-20-4D', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2628, 156, 'DNC', '192.168.0.112', '24', NULL, '00-13-3B-12-3E-F6', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2629, 156, 'Ethernet 2', '10.134.48.248', '23', '10.134.48.1', 'C4-5A-B1-E4-22-7E', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2632, 157, 'Ethernet', '10.134.48.164', '23', '10.134.48.1', '74-86-E2-2F-BC-E9', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2633, 157, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-6A', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2634, 125, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-15 09:54:16');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2635, 125, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-15 09:54:16');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2636, 125, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-15 09:54:17');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2637, 125, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-15 09:54:17');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2638, 125, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-15 09:54:17');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2639, 125, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-15 09:54:17');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2640, 125, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-15 09:54:17');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2641, 125, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-15 09:54:17');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2642, 198, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-4A-79-C2', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2643, 198, 'Ethernet', '10.134.48.30', '23', '10.134.48.1', 'E4-54-E8-AB-BD-DF', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2652, 206, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-63', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2653, 206, 'Ethernet', '10.134.48.219', '23', '10.134.48.1', 'A4-BB-6D-CF-6A-80', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2656, 41, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-9D', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2657, 41, 'Ethernet', '10.134.48.104', '23', '10.134.48.1', 'E4-54-E8-DC-DA-70', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2658, 42, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-DD', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2659, 42, 'Ethernet', '10.134.49.137', '23', '10.134.48.1', 'E4-54-E8-DC-B1-F0', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2660, 40, 'Ethernet', '10.134.48.71', '23', '10.134.48.1', 'A4-BB-6D-DE-5C-CD', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2661, 40, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-10-DC-37', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2662, 32, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-D4', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2663, 32, 'Ethernet', '10.134.48.67', '23', '10.134.48.1', '70-B5-E8-2A-AA-B1', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2664, 33, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-4E', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2665, 33, 'Ethernet 2', '10.134.48.254', '23', '10.134.48.1', '08-92-04-DE-AF-9E', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2666, 34, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-18-96', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2667, 34, 'Ethernet', '10.134.48.40', '23', '10.134.48.1', '08-92-04-DE-AB-9C', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2668, 35, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-21-D2-DC', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2669, 35, 'Ethernet 2', '10.134.49.175', '23', '10.134.48.1', '74-86-E2-2F-C5-BF', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2670, 36, 'Ethernet', '10.134.49.88', '23', '10.134.48.1', '08-92-04-DE-AA-C4', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2671, 36, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-5A-41-14', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2672, 37, 'Ethernet 2', '10.134.49.180', '23', '10.134.48.1', '74-86-E2-2F-C6-A7', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2673, 37, 'Ethernet', '192.168.1.2', '24', NULL, '00-13-3B-22-20-4B', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2674, 38, 'Ethernet', '10.134.49.155', '23', '10.134.48.1', 'A4-BB-6D-D1-5E-91', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2675, 38, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-11-80-5A', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2676, 39, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-5A-2A-F0', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2677, 39, 'Ethernet', '10.134.49.136', '23', '10.134.48.1', '08-92-04-DE-A8-FA', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2678, 131, 'Ethernet 2', '10.134.48.204', '23', '10.134.48.1', 'C4-5A-B1-DD-F4-19', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2679, 131, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3E-B0', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2680, 129, 'DNC', '192.168.1.2', '24', NULL, 'B4-B0-24-B2-21-67', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2681, 129, 'Ethernet 2', '10.134.49.101', '23', '10.134.48.1', 'C4-5A-B1-E2-E0-CF', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2682, 130, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3F-00', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2683, 130, 'Ethernet 2', '10.134.48.128', '23', '10.134.48.1', 'C4-5A-B1-DA-00-92', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2684, 118, 'Ethernet', '10.134.48.39', '23', '10.134.48.1', 'E4-54-E8-DC-AE-E5', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2685, 118, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-BA', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2686, 117, 'Ethernet 2', '10.134.49.25', '23', '10.134.48.1', 'C4-5A-B1-E2-D8-4B', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2687, 117, 'DNC', '192.168.1.2', '24', NULL, 'B4-B0-24-B2-21-5E', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2688, 116, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-11-80-5F', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2689, 116, 'Ethernet', '10.134.48.12', '23', '10.134.48.1', 'C4-5A-B1-E2-E1-9A', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2690, 82, 'Ethernet', '10.134.49.18', '23', '10.134.48.1', 'A4-BB-6D-C6-62-A1', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2691, 82, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-5F', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2692, 83, 'Ethernet 2', '10.134.48.33', '23', '10.134.48.1', '08-92-04-DE-AD-DF', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2693, 83, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-10-DE-2B', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2694, 84, 'Ethernet', '10.134.49.75', '23', '10.134.48.1', 'C4-5A-B1-D0-6E-29', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2695, 84, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-99', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2696, 85, 'Ethernet', '10.134.48.187', '23', '10.134.48.1', 'C4-5A-B1-DD-F3-63', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2697, 85, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-CC', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2698, 87, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-22-70', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2699, 87, 'Ethernet', '10.134.49.63', '23', '10.134.48.1', 'C4-5A-B1-D0-32-1C', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2700, 86, 'Ethernet', '10.134.49.98', '23', '10.134.48.1', 'C4-5A-B1-E0-14-01', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2701, 86, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-5C', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2702, 90, 'Ethernet', '10.134.49.26', '23', '10.134.48.1', 'C4-5A-B1-DD-F0-A9', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2703, 90, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-5A-3E-4A', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2704, 89, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-10-89-8C', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2705, 89, 'Ethernet', '10.134.48.118', '23', '10.134.48.1', 'A4-BB-6D-CF-7E-3E', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2706, 132, 'DNC PCIe', '192.168.1.2', '24', NULL, '00-13-3B-10-89-7F', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2707, 132, 'Ethernet', '10.134.49.152', '23', '10.134.48.1', 'A4-BB-6D-CF-21-25', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2708, 91, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-4F', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2709, 91, 'Ethernet', '10.134.48.29', '23', '10.134.48.1', 'B0-4F-13-15-64-A2', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2710, 113, 'Ethernet', '10.134.48.59', '23', '10.134.48.1', 'C4-5A-B1-D9-76-62', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2711, 113, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-11-80-51', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2712, 112, 'Ethernet', '10.134.48.37', '23', '10.134.48.1', 'E4-54-E8-DC-DA-7D', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2713, 112, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-A0', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2714, 111, 'Ethernet', '10.134.48.43', '23', '10.134.48.1', 'B0-7B-25-06-6A-33', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2715, 111, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-AC', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2716, 105, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-18 10:17:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2717, 105, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-18 10:17:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2718, 105, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-18 10:17:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2719, 105, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-18 10:17:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2720, 105, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-18 10:17:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2721, 105, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-18 10:17:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2722, 105, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-18 10:17:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2723, 105, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-18 10:17:21');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2724, 106, 'Ethernet 2', '192.168.1.2', '24', NULL, '00-13-3B-12-3C-CE', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2725, 106, 'Ethernet', '10.134.48.159', '23', '10.134.48.1', 'B0-7B-25-06-6B-06', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2726, 107, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-21-D3-0C', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2727, 107, 'Ethernet', '10.134.48.13', '23', '10.134.48.1', '8C-EC-4B-CA-A4-0E', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2728, 108, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-21-D3-01', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2729, 108, 'Ethernet', '10.134.48.75', '23', '10.134.48.1', '8C-EC-4B-CA-A4-C0', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2730, 109, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-12-3E-AC', 0, 1, 1, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2731, 109, 'Ethernet', '10.134.48.32', '23', '10.134.48.1', '8C-EC-4B-BE-20-E6', 1, 1, 0, '2025-09-22 12:24:58');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2732, 243, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-24 13:43:10');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2733, 243, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-24 13:43:11');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2734, 243, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-24 13:43:11');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2735, 243, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-24 13:43:11');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2736, 243, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-24 13:43:11');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2737, 243, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-24 13:43:11');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2738, 243, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-24 13:43:11');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2739, 243, NULL, NULL, NULL, NULL, NULL, 0, 1, 0, '2025-09-24 13:43:12');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2752, 43, 'Ethernet', '10.134.49.77', '23', '10.134.48.1', '08-92-04-DE-7D-63', 1, 1, 0, '2025-09-24 17:11:16');
INSERT INTO `pc_network_interfaces` (`interfaceid`, `pcid`, `interfacename`, `ipaddress`, `subnetmask`, `defaultgateway`, `macaddress`, `isdhcp`, `isactive`, `ismachinenetwork`, `lastupdated`) VALUES
(2753, 43, 'DNC', '192.168.1.2', '24', NULL, '00-13-3B-22-20-55', 0, 1, 1, '2025-09-24 17:11:16');
-- Dumping structure for table shopdb.printers
CREATE TABLE IF NOT EXISTS `printers` (
`printerid` int(11) NOT NULL AUTO_INCREMENT,
`modelid` int(11) DEFAULT '1',
`printerwindowsname` tinytext,
`printercsfname` tinytext,
`serialnumber` tinytext,
`fqdn` tinytext,
`ipaddress` tinytext,
`machineid` int(11) DEFAULT '1' COMMENT 'Which machine is this printer closet to\r\nCould be a location such as office/shipping if islocationonly bit is set in machines table',
`maptop` int(11) DEFAULT NULL,
`mapleft` int(11) DEFAULT NULL,
`iscsf` bit(1) DEFAULT b'0' COMMENT 'Does CSF print to this',
`installpath` varchar(100) DEFAULT NULL,
`isactive` bit(1) DEFAULT b'1',
`lastupdate` timestamp NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`printernotes` tinytext,
`printerpin` int(10) DEFAULT NULL,
PRIMARY KEY (`printerid`)
) ENGINE=InnoDB AUTO_INCREMENT=51 DEFAULT CHARSET=utf8;
-- Dumping data for table shopdb.printers: ~45 rows (approximately)
DELETE FROM `printers`;
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(1, 13, 'TBD', '', '4HX732754', 'Printer-10-80-92-70.printer.geaerospace.net', '10.80.92.70', 27, NULL, NULL, b'1', '', b'0', '2025-09-30 15:59:33', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(2, 15, 'Southern Office HP Color LaserJet CP2025', '', 'CNGSC23135', 'Printer-10-80-92-63.printer.geaerospace.net', '10.80.92.63', 28, NULL, NULL, b'1', './installers/printers/HP-CP2025-Installer.exe', b'0', '2025-10-02 12:05:49', NULL, 1851850);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(3, 20, 'Southern Office Versalink B7125', 'NONE', 'QPA084128', 'Printer-10-80-92-48.printer.geaerospace.net', '10.80.92.48', 28, 2056, 662, b'1', './installers/printers/Printer-Coaching-CopyRoom-Versalink-B7125.exe', b'1', '2025-11-07 15:04:20', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(4, 19, 'Coaching Office 115 Versalink C7125', '', 'QPH230489', 'Printer-10-80-92-69.printer.geaerospace.net', '10.80.92.69', 30, 1902, 1379, b'1', './installers/printers/Printer-Coaching-115-Versalink-C7125.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(6, 18, 'Coaching 112 LaserJet M254dw', '', 'VNB3N34504', 'Printer-10-80-92-52.printer.geaerospace.net', '10.80.92.52', 31, 2036, 1417, b'1', './installers/printers/Printer-Coaching-112-LaserJet-M254dw.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(7, 21, 'Materials Xerox EC8036', 'CSF01', 'QMK003729', 'Printer-10-80-92-62.printer.geaerospace.net', '10.80.92.62', 32, 1921, 1501, b'1', './installers/printers/Materials-Xerox-EC8036.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(8, 22, 'PE Office Versalink C8135', '', 'ELQ587561', 'Printer-10-80-92-49.printer.geaerospace.net', '10.80.92.49', 33, 1995, 934, b'1', './installers/printers/Printer-PE-Office-Altalink-C8135.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(9, 18, 'WJWT05-HP-Laserjet', 'CSF04', 'VNB3T19380', 'Printer-10-80-92-67.printer.geaerospace.net', '10.80.92.67', 34, 1267, 536, b'0', './installers/printers/Printer-WJWT05.exe', b'1', '2025-11-13 12:34:19', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(10, 24, 'CSF11-CMM07-HP-LaserJet', 'CSF11', 'PHBBG65860', 'Printer-10-80-92-55.printer.geaerospace.net', '10.80.92.55', 13, 942, 474, b'1', '', b'1', '2025-11-07 20:14:25', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(11, 19, 'Router Room Printer', '', 'QPH233211', 'Printer-10-80-92-20.printer.geaerospace.net', '10.80.92.20', 35, 810, 1616, b'1', './installers/printers/Printer-RouterRoom-Versalink-C7125.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(12, 28, 'TBD 4250tn', 'HP4250_IMPACT', 'CNRXL93253', 'Printer-10-80-92-61.printer.geaerospace.net', '10.80.92.61', 37, 806, 1834, b'0', '', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(13, 27, 'CSF09-2022-HP-LaserJet', 'CSF09', 'CNBCN2J1RQ', 'Printer-10-80-92-57.printer.geaerospace.net', '10.80.92.57', 38, 777, 665, b'1', './installers/printers/Printer-2022.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(14, 28, 'CSF06-3037-HP-LaserJet', 'CSF06', 'USBXX23084', 'Printer-10-80-92-54.printer.geaerospace.net', '10.80.92.54', 39, 1752, 1087, b'1', './installers/printers/Printer-3037.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(16, 21, 'EC8036', '', 'QMK002012', 'Printer-10-80-92-253.printer.geaerospace.net', '10.80.92.253', 37, 806, 1834, b'0', '', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(17, 25, 'CSF18-Blisk-Inspection-HP-LaserJet', 'CSF18', 'VNB0200170', 'Printer-10-80-92-23.printer.geaerospace.net', '10.80.92.23', 41, 889, 1287, b'1', './installers/printers/Printer-Blisk-Inspection-LaserJet-4100n.exe', b'1', '2025-11-03 17:45:45', NULL, 727887799);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(18, 20, 'Blisk Inspection Versalink B7125', '', 'QPA084129', 'Printer-10-80-92-45.printer.geaerospace.net', '10.80.92.45', 41, 889, 1287, b'0', './installers/printers/Printer-Blisk-Inspection-Versalink-B7125.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(20, 26, 'Near Wax trace 7', 'CSF22', 'PHDCB09198', 'Printer-10-80-92-28.printer.geaerospace.net', '10.80.92.28', 18, 1740, 1506, b'1', './installers/printers/Printer-WJWT07-LaserJet-M404n.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(21, 27, 'DT-Office-HP-Laserjet', '', 'CNBCN2J1RQ', 'Printer-10-80-92-68.printer.geaerospace.net', '10.80.92.68', 42, NULL, NULL, b'0', './installers/printers/Printer-DT-Office.exe', b'0', '2025-09-16 13:38:41', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(22, 27, 'CSF02-LocationTBD', 'CSF02', 'CNBCMD60NM', 'Printer-10-80-92-65.printer.geaerospace.net', '10.80.92.65', 1, NULL, NULL, b'0', '', b'1', '2025-11-03 17:32:40', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(23, 19, 'Office Admins Versalink C7125', '', 'QPH230648', 'Printer-10-80-92-25.printer.geaerospace.net', '10.80.92.25', 45, 1976, 1415, b'0', './installers/printers/Printer-Office-Admins-Versalink-C7125.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(24, 21, 'Southern Office Xerox EC8036', '', 'QMK002217', 'Printer-10-80-92-252.printer.geaerospace.net', '10.80.92.252', 28, 2043, 1797, b'0', './installers/printers/Printer-Office-CopyRoom-EC8036.exe', b'1', '2025-11-10 21:00:03', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(26, 30, 'USB - Zebra ZT411', '', '', '', '10.48.173.222', 37, 806, 1834, b'0', './installers/printers/zddriver-v1062228271-certified.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(28, 31, 'USB LaserJet M506', '', '', '', 'USB', 49, 2143, 1630, b'0', './installers/printers/Printer-GuardDesk-LaserJet-M506.zip', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(29, 32, 'USB Epson TM-C3500', '', '', '', 'USB', 49, 2143, 1630, b'0', './installers/printers/TMC3500_x64_v2602.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(30, 34, 'USB LaserJet M255dw', '', 'VNB33212344', '', 'USB', 50, 506, 2472, b'0', '', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(31, 18, 'USB LaserJet M254dw', '', 'VNBNM718PD', '', 'USB', 51, 450, 2524, b'0', '', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(32, 25, 'CSF07-3001-LaserJet-4001n', 'CSF07', 'VNB0200168', 'Printer-10-80-92-46.printer.geaerospace.net', '10.80.92.46', 52, 1417, 1802, b'1', './installers/printers/Printer-CSF07-3005-LaserJet-4100n.exe', b'1', '2025-10-23 19:27:06', NULL, 58737718);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(33, 26, 'FPI Inpection', 'CSF13', 'PHDCC20486', 'Printer-10-80-92-53.printer.geaerospace.net', '10.80.92.53', 53, 832, 1937, b'0', '', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(34, 19, '1364-Xerox-Versalink-C405', '', '4HX732754', 'Printer-10-80-92-70.printer.geaerospace.net', '10.80.92.70', 54, 346, 208, b'0', './installers/printers/Printer-1364-Xerox-Versalink-C405.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(35, 35, 'CSF15 6502 LaserJet M602', 'CSF15', 'JPBCD850FT', 'Printer-10-80-92-26.printer.geaerospace.net', '10.80.92.26', 48, 1139, 1715, b'1', '', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(36, 36, 'Lean Office Plotter', '', 'CN91P7H00J', 'Printer-10-80-92-24.printer.geaerospace.net', '10.80.92.24', 56, 2171, 1241, b'0', './installers/printers/Printer-Lean-Office-Plotter.exe', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(37, 13, '4007-Versalink', '', '4HX732754', 'Printer-10-80-92-70.printer.geaerospace.net', '10.80.92.70', 27, 1090, 2163, b'1', '', b'1', '2025-11-13 15:49:55', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(38, 72, 'TBD', '', '9HB669334', 'Printer-10-80-92-251.printer.geaerospace.net', '10.80.92.251', 224, 1221, 464, b'1', '', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(39, 73, 'CSF21-7701-HP-Laserjet', 'CSF21', 'VNB3C56224', 'Printer-10-80-92-51.printer.geaerospace.net', '10.80.92.51', 225, 573, 2181, b'0', '', b'1', '2025-10-28 13:20:14', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(40, 74, 'Blisk Clean Room Near Shipping', 'CSF12', 'JPDDS15219', 'Printer-10-80-92-56.printer.geaerospace.net', '10.80.92.56', 225, 523, 2135, b'0', NULL, b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(41, 28, 'TBD', 'CSF05', '4HX732754', 'Printer-10-80-92-71.printer.geaerospace.net', '10.80.92.71', 27, 972, 1978, b'1', '', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(42, 25, 'TBD', 'HP4001_SPOOLSHWACHEON', 'VNL0616417', 'Printer-10-80-92-22.printer.geaerospace.net', '10.80.92.22', 228, 1642, 2024, b'1', '', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(43, 25, 'TBD', '', 'VNL0303159', 'Printer-10-80-92-63.printer.geaerospace.net', '10.80.92.63', 258, 1792, 1916, b'1', '', b'1', '2025-11-07 15:05:51', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(44, 28, 'Gage Lab Printer', 'gage lab ', '4HX732754', '', '10.80.92.59', 27, 972, 1978, b'0', '', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(45, 35, 'Venture Clean Room', 'CSF08', '4HX732754', '', '10.80.92.58', 27, 972, 1978, b'1', '', b'1', '2025-10-23 19:27:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(46, 84, 'GuardDesk-HID-DTC-4500', '', 'B8021700', 'Printer-10-49-215-10.printer.geaerospace.net', '10.49.215.10', 49, 2155, 1639, b'0', '', b'1', '2025-10-29 00:56:37', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(47, 90, 'USB-6502-HP-LaserJect', '', 'VNB3C40601', '', '1.1.1.1', 48, 50, 50, b'0', NULL, b'1', '2025-11-03 18:00:43', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(48, 91, 'TBD', '', 'VNB3D55060', '', '10.80.92.60', 27, 50, 50, b'0', NULL, b'1', '2025-11-13 12:59:45', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(49, 96, '6502-LaserJet', '', 'VNB3C40601', 'Printer-10-49-215-13.printer.geaerospace.net', '10.49.215.13', 48, 1221, 1779, b'0', NULL, b'1', '2025-11-12 21:39:06', NULL, NULL);
INSERT INTO `printers` (`printerid`, `modelid`, `printerwindowsname`, `printercsfname`, `serialnumber`, `fqdn`, `ipaddress`, `machineid`, `maptop`, `mapleft`, `iscsf`, `installpath`, `isactive`, `lastupdate`, `printernotes`, `printerpin`) VALUES
(50, 97, '6503-LaserJet', '', 'VNB3F14243', 'Printer-10-49-215-14.printer.geaerospace.net', '10.49.215.14', 47, 1059, 1768, b'0', NULL, b'1', '2025-11-12 21:42:19', NULL, NULL);
-- Dumping structure for table shopdb.servers
CREATE TABLE IF NOT EXISTS `servers` (
`serverid` int(11) NOT NULL AUTO_INCREMENT,
`servername` varchar(100) DEFAULT NULL,
`modelid` int(11) DEFAULT NULL,
`serialnumber` varchar(100) DEFAULT NULL,
`ipaddress` varchar(45) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`isactive` bit(1) DEFAULT b'1',
`fqdn` varchar(50) DEFAULT NULL,
PRIMARY KEY (`serverid`),
KEY `idx_serialnumber` (`serialnumber`),
KEY `idx_ipaddress` (`ipaddress`),
KEY `idx_isactive` (`isactive`),
KEY `idx_servers_modelid` (`modelid`),
KEY `idx_servers_servername` (`servername`),
CONSTRAINT `fk_servers_model` FOREIGN KEY (`modelid`) REFERENCES `models` (`modelnumberid`) ON DELETE SET NULL
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8mb4 COMMENT='Servers';
-- Dumping data for table shopdb.servers: ~3 rows (approximately)
DELETE FROM `servers`;
INSERT INTO `servers` (`serverid`, `servername`, `modelid`, `serialnumber`, `ipaddress`, `description`, `isactive`, `fqdn`) VALUES
(1, 'AVEWP1760v02', NULL, '', '10.233.113.138', 'Historian Server', b'1', 'AVEWP1760v02.rd.ds.ge.com');
INSERT INTO `servers` (`serverid`, `servername`, `modelid`, `serialnumber`, `ipaddress`, `description`, `isactive`, `fqdn`) VALUES
(2, 'avewp4420v01 ', NULL, NULL, '10.233.113.137', 'Shop Floor Connect', b'1', 'avewp4420v01.rd.ds.ge.com');
INSERT INTO `servers` (`serverid`, `servername`, `modelid`, `serialnumber`, `ipaddress`, `description`, `isactive`, `fqdn`) VALUES
(3, 'NVR6-31RHVEFV4K', NULL, '31RHVEFV4K', ' 10.49.155.183 ', 'Avigilon CCTV', b'1', NULL);
-- Dumping structure for table shopdb.skilllevels
CREATE TABLE IF NOT EXISTS `skilllevels` (
`skilllevelid` tinyint(4) NOT NULL AUTO_INCREMENT,
`skilllevel` tinytext,
`isactive` bit(1) DEFAULT b'1',
PRIMARY KEY (`skilllevelid`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8;
-- Dumping data for table shopdb.skilllevels: ~2 rows (approximately)
DELETE FROM `skilllevels`;
INSERT INTO `skilllevels` (`skilllevelid`, `skilllevel`, `isactive`) VALUES
(1, 'Lead Technical Machinist ', b'1');
INSERT INTO `skilllevels` (`skilllevelid`, `skilllevel`, `isactive`) VALUES
(2, 'Advanced Technical Machinist', b'1');
-- Dumping structure for table shopdb.subnets
CREATE TABLE IF NOT EXISTS `subnets` (
`subnetid` tinyint(4) NOT NULL AUTO_INCREMENT,
`vlan` smallint(6) DEFAULT NULL,
`description` varchar(300) DEFAULT NULL,
`ipstart` int(10) DEFAULT NULL,
`ipend` int(10) DEFAULT NULL,
`cidr` tinytext,
`isactive` bit(1) DEFAULT b'1',
`subnettypeid` tinyint(4) DEFAULT NULL,
PRIMARY KEY (`subnetid`)
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8;
-- Dumping data for table shopdb.subnets: ~38 rows (approximately)
DELETE FROM `subnets`;
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(9, 101, 'User Vlan', 170951168, 170951679, '/23', b'1', 1);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(11, 852, 'OAVfeMUSwesj001-OT - Bond2.852 - Blisk A', 169632320, 169632383, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(12, 853, 'OAVfeMUSwesj001-OT - Bond2.853 - Blisk B', 169632384, 169632447, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(13, 635, 'Zscaler PSE (Private Service Edge)', 169709024, 169709031, '/29', b'1', 1);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(14, 632, 'Vault Untrust', 170960336, 170960351, '/28', b'1', 1);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(15, 2040, 'Wireless Machine Auth', 170981632, 170981695, '/26', b'1', 2);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(16, 633, 'Vault User Vlan', 172108800, 172109313, '/23', b'1', 1);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(17, 250, 'Wireless Users Blue SSO', 173038976, 173039039, '/26', b'1', 1);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(18, 2035, 'Wired Machine Auth', 176566272, 176566785, '/23', b'1', 2);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(19, 253, 'OAVfeMUSwesj001-SegIT - Bond2.253 - RFID', 170962368, 170962399, '/27', b'1', 5);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(20, 252, 'OAVfeMUSwesj001-SegIT - Bond2.252', 170961424, 170961439, '/28', b'1', 5);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(21, 866, 'OAVfeMUSwesj001-OT - Bond2.866 Turn/Burn B', 171033280, 171033343, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(22, 865, 'OAVfeMUSwesj001-OT - Bond2.866 Turn/Burn A', 171033216, 171033279, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(23, 850, 'OAVfeMUSwesj001-OT - Bond2.850 Inspection', 171026816, 171026879, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(24, 851, 'OAVfeMUSwesj001-OT - Bond2.851 - Watchdog', 171026736, 171026751, '/28', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(25, 864, 'OAVfeMUSwesj001-OT - Bond2.864 OT Manager', 171026704, 171026711, '/29', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(26, 1001, 'OAVfeMUSwesj001-OT - Bond2.1001 - Access Panels', 171023280, 171023295, '/28', b'0', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(27, 2090, 'OAVfeMUSwesj001-OT - Bond2.2090 - CCTV', 171023280, 171023295, '/28', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(28, 863, 'OAVfeMUSwesj001-OT - Bond2.863 - Venture B', 169633088, 169633151, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(29, 862, 'OAVfeMUSwesj001-OT - Bond2.862 - Venture A', 169633024, 169633087, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(30, 861, 'OAVfeMUSwesj001-OT - Bond2.861 - Spools B', 169632960, 169633023, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(31, 860, 'OAVfeMUSwesj001-OT - Bond2.860 - Spools A', 169632896, 169632959, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(32, 858, 'OAVfeMUSwesj001-OT - Bond2.858 - HPT A', 169632832, 169632895, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(33, 859, 'OAVfeMUSwesj001-OT - Bond2.859 - HPT B', 169632768, 169632831, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(34, 290, 'Printer Vlan', 171038464, 171038717, '/24', b'1', 1);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(35, 101, 'Legacy Printer Vlan', 173038592, 173038845, '24', b'1', 1);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(36, 857, 'OAVfeMUSwesj001-OT - Bond2.857 - Turbulence B', 169632640, 169632703, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(37, 856, 'OAVfeMUSwesj001-OT - Bond2.857 - Turbulence A', 169632640, 169632703, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(38, 855, 'OAVfeMUSwesj001-OT - Bond2.855 - Fab Shop B', 169632512, 169632575, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(39, 854, 'OAVfeMUSwesj001-OT - Bond2.854 - Fab Shop A', 169632576, 169632639, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(40, 853, 'OAVfeMUSwesj001-OT - Bond2.853 - Blisk B', 169632448, 169632511, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(41, 852, 'OAVfeMUSwesj001-OT - Bond2.852 - Blisk A', 169632320, 169632383, '/26', b'1', 3);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(42, 705, 'VAVfeXUSwesj001 - ETH8.705 - Zscaler', 183071168, 183071199, '/27', b'1', 4);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(43, 730, 'VAVfeXUSwesj001 - ETH8.730 - EC-Compute', 183071104, 183071167, '/26', b'1', 4);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(44, 740, 'VAVfeXUSwesj001 - ETH8.740 - EC-Compute-Mgt', 183071040, 183071071, '/27', b'1', 4);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(45, 720, 'VAVfeXUSwesj001 - ETH8.720 - EC-Network-MGT', 183071008, 183071023, '/28', b'1', 4);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(46, 710, 'VAVfeXUSwesj001 - ETH8.710 - EC-Security', 183070992, 183071007, '/28', b'1', 4);
INSERT INTO `subnets` (`subnetid`, `vlan`, `description`, `ipstart`, `ipend`, `cidr`, `isactive`, `subnettypeid`) VALUES
(47, 700, 'VAVfeXUSwesj001 - ETH8.700 - EC Transit', 183070976, 183070983, '/29', b'1', 4);
-- Dumping structure for table shopdb.subnettypes
CREATE TABLE IF NOT EXISTS `subnettypes` (
`subnettypeid` tinyint(4) NOT NULL AUTO_INCREMENT,
`subnettype` tinytext,
`isactive` bigint(20) DEFAULT '1',
`bgcolor` tinytext,
PRIMARY KEY (`subnettypeid`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8;
-- Dumping data for table shopdb.subnettypes: ~5 rows (approximately)
DELETE FROM `subnettypes`;
INSERT INTO `subnettypes` (`subnettypeid`, `subnettype`, `isactive`, `bgcolor`) VALUES
(1, 'IT', 1, NULL);
INSERT INTO `subnettypes` (`subnettypeid`, `subnettype`, `isactive`, `bgcolor`) VALUES
(2, 'Machine Auth', 1, NULL);
INSERT INTO `subnettypes` (`subnettypeid`, `subnettype`, `isactive`, `bgcolor`) VALUES
(3, 'OT', 1, NULL);
INSERT INTO `subnettypes` (`subnettypeid`, `subnettype`, `isactive`, `bgcolor`) VALUES
(4, 'Vault', 1, NULL);
INSERT INTO `subnettypes` (`subnettypeid`, `subnettype`, `isactive`, `bgcolor`) VALUES
(5, 'Seg-IT', 1, NULL);
-- Dumping structure for table shopdb.supportteams
CREATE TABLE IF NOT EXISTS `supportteams` (
`supporteamid` int(11) NOT NULL AUTO_INCREMENT,
`teamname` char(50) DEFAULT NULL,
`teamurl` tinytext,
`appownerid` int(11) DEFAULT '1',
`isactive` bit(1) DEFAULT b'1',
PRIMARY KEY (`supporteamid`)
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=utf8;
-- Dumping data for table shopdb.supportteams: ~18 rows (approximately)
DELETE FROM `supportteams`;
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(1, '@AEROSPACE SOS NAMER USA NC WEST JEFFERSON', 'https://geit.service-now.com/now/nav/ui/classic/params/target/sys_user_group.do%3Fsys_id%3Deba582dfdba91348514e5d6e5e961957', 1, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(2, '@Aerospace UDC Support', 'https://geit.service-now.com/now/nav/ui/classic/params/target/cmdb_ci_appl.do%3Fsys_id%3D0b54012d4730515077587738436d436d%26sysparm_view%3D', 2, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(3, '@Aerospace UDC Support (DODA)', 'https://geit.service-now.com/now/nav/ui/classic/params/target/cmdb_ci_appl.do%3Fsys_id%3D0b54012d4730515077587738436d436d%26sysparm_view%3D', 3, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(4, '@AEROSPACE Lenel OnGuard Support', 'https://geit.service-now.com/now/nav/ui/classic/params/target/sys_user_group.do%3Fsys_id%3D9eecad259743a194390576b71153af07', 5, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(5, '@AEROSPACE ZIA Support', 'https://geit.service-now.com/now/nav/ui/classic/params/target/sys_user_group.do%3Fsys_id%3D6cde9ba13bc7ce505be7736aa5e45a84%26sysparm_view%3D', 6, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(6, '@L2 AV SCIT CSF App Spt', 'https://geit.service-now.com/now/nav/ui/classic/params/target/sys_user_group.do%3Fsys_id%3Da5210946db4bf2005e305f2e5e96190a%26sysparm_view%3D', 7, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(7, '@L2 AV SCIT Quality Web App Spt', 'https://geit.service-now.com/now/nav/ui/classic/params/target/u_cmdb_ci_app_environment.do%3Fsys_id%3Db6f242addbe54b00ba6c57e25e96193b%26sysparm_view%3D', 15, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(8, 'Hexagon Software', 'https://support.hexagonmi.com/s/', 1, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(9, 'Shopfloor Connect', '', 9, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(10, '@AEROSPACE OpsVision-Support', 'https://geit.service-now.com/now/nav/ui/classic/params/target/u_cmdb_ci_business_app.do%3Fsys_id%3D871ec8d0dbe66b80c12359d25e9619ac%26sysparm_view%3D', 10, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(11, '@GE CTCR Endpoint Security L3', 'https://geit.service-now.com/now/nav/ui/classic/params/target/sys_user_group.do%3Fsys_id%3Dd5f0f5f8db3185908f1eb3b2ba9619cf%26sysparm_view%3D', 11, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(12, '@AEROSPACE IT ERP Centerpiece - SYSOPS', 'https://geit.service-now.com/now/nav/ui/classic/params/target/sys_user_group.do%3Fsys_id%3De4430d0edb8bf2005e305f2e5e961901%26sysparm_view%3D', 12, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(13, '@AEROSPACE Everbridge Support', 'https://geit.service-now.com/now/nav/ui/classic/params/target/sys_user_group.do%3Fsys_id%3D1d8212833b2fde1073651f50c5e45a44%26sysparm_view%3D', 13, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(14, '@Aerospace L2 ETQ Application Support Team', 'https://geit.service-now.com/now/nav/ui/classic/params/target/sys_user_group.do%3Fsys_id%3Ddac4c186db0ff2005e305f2e5e961944%26sysparm_view%3D', 14, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(15, '@AEROSPACE AG DW Software Engineering', 'https://geit.service-now.com/now/nav/ui/classic/params/target/sys_user_group.do%3Fsys_id%3D9397143b939a1698a390fded1dba10da%26sysparm_view%3D', 16, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(16, '@L2 AV SCIT Maximo App Spt', 'https://geit.service-now.com/now/nav/ui/classic/params/target/u_cmdb_ci_app_environment.do%3Fsys_id%3D155b02e9dba94b00ba6c57e25e9619b4%26sysparm_view%3D', 17, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(17, '@Aerospace eMXSupportGroup', 'https://geit.service-now.com/now/nav/ui/classic/params/target/sys_user_group.do%3Fsys_id%3Dabf1cd8edb4bf2005e305f2e5e9619d1%26sysparm_view%3D', 18, b'1');
INSERT INTO `supportteams` (`supporteamid`, `teamname`, `teamurl`, `appownerid`, `isactive`) VALUES
(18, '@Aerospace IT PlantApps-US Prod Spt', 'https://geit.service-now.com/now/nav/ui/classic/params/target/sys_user_group.do%3Fsys_id%3D947c8babdb860110332c20c913961975%26sysparm_view%3D', 19, b'1');
-- Dumping structure for table shopdb.switches
CREATE TABLE IF NOT EXISTS `switches` (
`switchid` int(11) NOT NULL AUTO_INCREMENT,
`switchname` varchar(100) DEFAULT NULL,
`modelid` int(11) DEFAULT NULL,
`serialnumber` varchar(100) DEFAULT NULL,
`ipaddress` varchar(45) DEFAULT NULL,
`description` varchar(255) DEFAULT NULL,
`maptop` int(11) DEFAULT NULL,
`mapleft` int(11) DEFAULT NULL,
`isactive` bit(1) DEFAULT b'1',
PRIMARY KEY (`switchid`),
KEY `idx_serialnumber` (`serialnumber`),
KEY `idx_ipaddress` (`ipaddress`),
KEY `idx_isactive` (`isactive`),
KEY `idx_switches_modelid` (`modelid`),
KEY `idx_switches_switchname` (`switchname`),
CONSTRAINT `fk_switches_model` FOREIGN KEY (`modelid`) REFERENCES `models` (`modelnumberid`) ON DELETE SET NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Network switches';
-- Dumping data for table shopdb.switches: ~0 rows (approximately)
DELETE FROM `switches`;
-- Dumping structure for table shopdb.topics
CREATE TABLE IF NOT EXISTS `topics` (
`appid` tinyint(4) NOT NULL AUTO_INCREMENT,
`appname` char(50) NOT NULL,
`appdescription` char(50) DEFAULT NULL,
`supportteamid` int(11) NOT NULL DEFAULT '1',
`applicationnotes` varchar(255) DEFAULT NULL,
`installpath` varchar(255) DEFAULT NULL,
`documentationpath` varchar(512) DEFAULT NULL,
`isactive` bit(1) DEFAULT b'1',
`ishidden` bit(1) DEFAULT b'0' COMMENT 'Should this be displayed in all apps or not',
PRIMARY KEY (`appid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=29 DEFAULT CHARSET=utf8 ROW_FORMAT=COMPACT;
-- Dumping data for table shopdb.topics: ~27 rows (approximately)
DELETE FROM `topics`;
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(1, 'West Jefferson', 'TBD', 1, 'Place Holder for Base Windows Installs', NULL, NULL, b'0', b'1');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(2, 'UDC', 'Universal Data Collector', 2, NULL, NULL, 'https://ge.sharepoint.us/sites/UniversalDataCollection-28UDC-29/SitePages/Home.aspx', b'1', b'0');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(3, 'DODA', 'CMM Related', 3, NULL, 'https://ge.ent.box.com/folder/178044137180?amp;box_action=go_to_item&box_source=legacy-folder_collab_auto_accept_new&s=esxd09f65qrwjh497opk6losnnrwk3p1', NULL, b'1', b'0');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(4, 'CLM', 'Legacy UDC', 2, 'This was replaced by UDC, but can be used as a failsafe', NULL, NULL, b'1', b'0');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(5, '3 of 9 Fonts', 'Barcode Fonts', 1, 'This is required for Weld Data Sheets', './installers/3of9Barcode.exe', '', b'1', b'0');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(6, 'PC - DMIS', NULL, 1, NULL, NULL, NULL, b'1', b'0');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(7, 'Oracle 10.2', 'Required for Defect Tracker', 1, 'Required for to Fix Defect Tracker After PBR', NULL, NULL, b'1', b'0');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(8, 'eMX', 'Eng Laptops', 2, 'This is required for Engineering Devices', NULL, NULL, b'1', b'0');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(9, 'Adobe Logon Fix', '', 1, 'REBOOT REQUIRED: Stops Adobe Acrobat From Asking you to Logon after PBR', './installers/AdobeFix.exe', NULL, b'1', b'0');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(10, 'Lenel OnGuard', 'Badging', 4, 'Required for Badging / Access Panel Contol', 'https://ge.ent.box.com/s/j1l0urjg80q0ltsvishq4i873fud2mk7', 'https://ge-my.sharepoint.us/:p:/r/personal/270002508_geaerospace_com/_layouts/15/doc2.aspx?sourcedoc=%7B65412AFE-2E2C-4525-BCDA-DD66E5EBAD16%7D&file=PBR%20-%20GE%20OnGurard%20Enterprise%208.0.4%20Installation%20Instructions%20AMERICAS.pptx&action=edit&mobileredirect=true&isSPOFile=1&ovuser=86b871ed-f0e7-4126-9bf4-5ee5cf19e256%2C270002508%40geaerospace.com&clickparams=eyJBcHBOYW1lIjoiVGVhbXMtRGVza3RvcCIsIkFwcFZlcnNpb24iOiI0OS8yNTA3MDMxODgwNiIsIkhhc0ZlZGVyYXRlZFVzZXIiOmZhbHNlfQ%3D%3D', b'1', b'0');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(11, 'EssBase', 'Excel to Oracle DB Plugin', 1, 'Required for some Finance Operations / Excel', NULL, NULL, b'0', b'0');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(12, 'PE Office Plotter Drivers', 'PE Office Plotter Drivers', 1, '', './installers/PlotterInstaller.exe', NULL, b'1', b'0');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(13, 'Zscaler', 'Zscaler ZPA Client', 5, '', 'https://ge.sharepoint.us/:u:/r/sites/DougsProductivityTeam_m/Shared%20Documents/General/1%20-%20Projects/Site%20PBR%20Project/GE%20Software%20-%20Post%20PBR/ZscalerInc._Zscaler_4.5.0.337_v2.EXE?csf=1&web=1&e=afesVD', NULL, b'1', b'0');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(14, 'Network', '', 5, '', 'https://ge.sharepoint.us/:u:/r/sites/DougsProductivityTeam_m/Shared%20Documents/General/1%20-%20Projects/Site%20PBR%20Project/GE%20Software%20-%20Post%20PBR/ZscalerInc._Zscaler_4.5.0.337_v2.EXE?csf=1&web=1&e=afesVD', NULL, b'1', b'1');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(15, 'Maximo', 'For site maintenence from Southern', 1, NULL, NULL, NULL, b'1', b'1');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(16, 'RightCrowd', 'Vistor Requests Replaced HID in 2025', 1, NULL, NULL, NULL, b'1', b'1');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(17, 'Printers', '', 1, NULL, NULL, NULL, b'1', b'1');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(18, 'Process', '', 1, NULL, NULL, NULL, b'1', b'1');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(19, 'Media Creator Lite', '', 1, NULL, './installers/GEAerospace_MediaCreatorLite_Latest.EXE', NULL, b'1', b'0');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(20, 'CMMC', '', 1, NULL, NULL, NULL, b'1', b'1');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(21, 'Shopfloor PC', '', 1, NULL, NULL, NULL, b'1', b'1');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(22, 'CSF', 'Common Shop Floor', 6, NULL, NULL, NULL, b'1', b'1');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(23, 'Plantapps', '', 1, NULL, NULL, NULL, b'1', b'1');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(24, 'Everbridge', '', 1, NULL, NULL, NULL, b'1', b'1');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(26, 'PBR', '', 1, NULL, NULL, NULL, b'1', b'1');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(27, 'Bitlocker', '', 1, NULL, NULL, NULL, b'1', b'1');
INSERT INTO `topics` (`appid`, `appname`, `appdescription`, `supportteamid`, `applicationnotes`, `installpath`, `documentationpath`, `isactive`, `ishidden`) VALUES
(28, 'FlowXpert', 'Waterjet Software Req License File', 1, 'License file needs to be KBd', './installers/FlowXpert.zip', NULL, b'1', b'0');
-- Dumping structure for table shopdb.vendors
CREATE TABLE IF NOT EXISTS `vendors` (
`vendorid` int(11) NOT NULL AUTO_INCREMENT,
`vendor` char(50) DEFAULT NULL,
`isactive` char(50) DEFAULT '1',
`isprinter` bit(1) DEFAULT b'0',
`ispc` bit(1) DEFAULT b'0',
`ismachine` bit(1) DEFAULT b'0',
`isserver` bit(1) DEFAULT b'0',
`isswitch` bit(1) DEFAULT b'0',
`iscamera` bit(1) DEFAULT b'0',
PRIMARY KEY (`vendorid`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8 COMMENT='Who Makes the Machine this PC Front Ends';
-- Dumping data for table shopdb.vendors: ~32 rows (approximately)
DELETE FROM `vendors`;
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(1, 'WJDT', '1', b'0', b'0', b'0', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(2, 'Toshulin', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(3, 'Grob', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(4, 'Okuma', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(5, 'Campbell', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(6, 'Hwacheon', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(7, 'Hexagon', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(8, 'Brown/Sharpe', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(9, 'Xerox', '1', b'1', b'0', b'0', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(10, 'Mitutoyo', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(11, 'HP', '1', b'1', b'0', b'0', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(12, 'Dell Inc.', '1', b'0', b'1', b'0', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(13, 'DMG Mori', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(14, 'Zebra', '1', b'1', b'0', b'0', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(15, 'Epson', '1', b'1', b'0', b'0', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(16, 'Eddy', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(17, 'OKK', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(18, 'LaPointe', '1', b'0', NULL, b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(19, 'Fidia', '1', b'0', NULL, b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(20, 'GM Enterprises', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(21, 'Makino', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(22, 'TBD', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(23, 'Gleason-Pfauter', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(24, 'Broach', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(25, 'Fanuc', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(26, 'Doosan', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(27, 'HID', '1', b'1', b'0', b'0', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(28, 'Progessive', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(29, 'Zoller', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(31, 'MTI', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(32, 'Phoenix Inc', '1', b'0', b'0', b'1', b'0', b'0', b'0');
INSERT INTO `vendors` (`vendorid`, `vendor`, `isactive`, `isprinter`, `ispc`, `ismachine`, `isserver`, `isswitch`, `iscamera`) VALUES
(33, 'Ransohoff', '1', b'0', b'0', b'1', b'0', b'0', b'0');
-- Dumping structure for view shopdb.vw_active_pcs
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_active_pcs` (
`pcid` INT(11) NOT NULL,
`hostname` VARCHAR(1) NULL COMMENT 'Computer hostname' COLLATE 'utf8_general_ci',
`serialnumber` VARCHAR(1) NULL COMMENT 'System serial number from BIOS' COLLATE 'utf8_general_ci',
`manufacturer` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`model` TINYTEXT NULL COLLATE 'utf8_general_ci',
`loggedinuser` VARCHAR(1) NULL COMMENT 'Currently logged in user' COLLATE 'utf8_general_ci',
`machinenumber` VARCHAR(1) NULL COMMENT 'GE Aircraft Engines Machine Number if available' COLLATE 'utf8_general_ci',
`operatingsystem` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`pctype` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`typedescription` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`warrantystatus` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`warrantyenddate` DATE NULL COMMENT 'Warranty expiration date',
`warrantydaysremaining` BIGINT(11) NULL,
`lastupdated` DATETIME NULL COMMENT 'Last update timestamp',
`daysold` INT(7) NULL
);
-- Dumping structure for view shopdb.vw_dnc_config
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_dnc_config` (
`Hostname` VARCHAR(1) NULL COMMENT 'Computer hostname' COLLATE 'utf8_general_ci',
`PC_MachineNo` VARCHAR(1) NULL COMMENT 'GE Aircraft Engines Machine Number if available' COLLATE 'utf8_general_ci',
`DNC_MachineNo` VARCHAR(1) NULL COMMENT 'Machine number from DNC config' COLLATE 'utf8_general_ci',
`Site` VARCHAR(1) NULL COMMENT 'WestJefferson, etc.' COLLATE 'utf8_general_ci',
`CNC` VARCHAR(1) NULL COMMENT 'Fanuc 30, etc.' COLLATE 'utf8_general_ci',
`NcIF` VARCHAR(1) NULL COMMENT 'EFOCAS, etc.' COLLATE 'utf8_general_ci',
`HostType` VARCHAR(1) NULL COMMENT 'WILM, VMS, Windows' COLLATE 'utf8_general_ci',
`FtpHostPrimary` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`FtpHostSecondary` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`FtpAccount` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`Debug` VARCHAR(1) NULL COMMENT 'ON/OFF' COLLATE 'utf8_general_ci',
`Uploads` VARCHAR(1) NULL COMMENT 'YES/NO' COLLATE 'utf8_general_ci',
`Scanner` VARCHAR(1) NULL COMMENT 'YES/NO' COLLATE 'utf8_general_ci',
`Dripfeed` VARCHAR(1) NULL COMMENT 'YES/NO' COLLATE 'utf8_general_ci',
`AdditionalSettings` TEXT NULL COMMENT 'JSON of other DNC settings' COLLATE 'utf8_general_ci',
`DualPath_Enabled` TINYINT(1) NULL COMMENT 'Whether DualPath is enabled from eFocas registry',
`Path1_Name` VARCHAR(1) NULL COMMENT 'Path1Name from eFocas registry' COLLATE 'utf8_general_ci',
`Path2_Name` VARCHAR(1) NULL COMMENT 'Path2Name from eFocas registry' COLLATE 'utf8_general_ci',
`GE_Registry_32bit` TINYINT(1) NULL COMMENT 'DNC service found in 32-bit GE Aircraft Engines registry',
`GE_Registry_64bit` TINYINT(1) NULL COMMENT 'DNC service found in 64-bit GE Aircraft Engines registry (WOW6432Node)',
`GE_Registry_Notes` TEXT NULL COMMENT 'Additional GE registry configuration data for this DNC service (JSON)' COLLATE 'utf8_general_ci',
`LastUpdated` DATETIME NULL,
`PCID` INT(11) NOT NULL,
`DNCID` INT(11) NOT NULL
);
-- Dumping structure for view shopdb.vw_dualpath_management
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_dualpath_management` (
`pc_hostname` VARCHAR(1) NULL COMMENT 'Computer hostname' COLLATE 'utf8_general_ci',
`pcid` INT(11) NOT NULL,
`pc_type` VARCHAR(1) NOT NULL COMMENT 'Type name (Standard, Engineer, Shopfloor, etc.)' COLLATE 'utf8_general_ci',
`primary_machine` VARCHAR(1) NULL COMMENT 'GE Aircraft Engines Machine Number if available' COLLATE 'utf8_general_ci',
`dualpath_enabled` TINYINT(1) NULL COMMENT 'Whether DualPath is enabled from eFocas registry',
`path1_name` VARCHAR(1) NULL COMMENT 'Path1Name from eFocas registry' COLLATE 'utf8_general_ci',
`path2_name` VARCHAR(1) NULL COMMENT 'Path2Name from eFocas registry' COLLATE 'utf8_general_ci',
`secondary_machine` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci',
`assignment_updated` TIMESTAMP NULL,
`primary_machine_alias` TINYTEXT NULL COMMENT 'Alternate Machine Name for dual Spindle\r\nHuman readable name for searching\r\n' COLLATE 'utf8_general_ci',
`secondary_machine_alias` TINYTEXT NULL COMMENT 'Alternate Machine Name for dual Spindle\r\nHuman readable name for searching\r\n' COLLATE 'utf8_general_ci',
`dualpath_status` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci'
);
-- Dumping structure for view shopdb.vw_engineer_pcs
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_engineer_pcs` (
`pcid` INT(11) NOT NULL,
`hostname` VARCHAR(1) NULL COMMENT 'Computer hostname' COLLATE 'utf8_general_ci',
`serialnumber` VARCHAR(1) NULL COMMENT 'System serial number from BIOS' COLLATE 'utf8_general_ci',
`manufacturer` CHAR(50) NULL COLLATE 'utf8_general_ci',
`model` TINYTEXT NULL COLLATE 'utf8_general_ci',
`loggedinuser` VARCHAR(1) NULL COMMENT 'Currently logged in user' COLLATE 'utf8_general_ci',
`machinenumber` VARCHAR(1) NULL COMMENT 'GE Aircraft Engines Machine Number if available' COLLATE 'utf8_general_ci',
`operatingsystem` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`lastupdated` DATETIME NULL COMMENT 'Last update timestamp'
);
-- Dumping structure for view shopdb.vw_ge_machines
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_ge_machines` (
`machinenumber` VARCHAR(1) NULL COMMENT 'GE Aircraft Engines Machine Number if available' COLLATE 'utf8_general_ci',
`pccount` BIGINT(21) NOT NULL,
`assignedpcs` TEXT NULL COLLATE 'utf8_general_ci'
);
-- Dumping structure for view shopdb.vw_idf_inventory
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_idf_inventory` (
`idfid` INT(11) NOT NULL,
`idfname` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci',
`description` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci',
`maptop` INT(11) NULL,
`mapleft` INT(11) NULL,
`camera_count` BIGINT(21) NOT NULL,
`isactive` BIT(1) NULL
);
-- Dumping structure for view shopdb.vw_infrastructure_summary
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_infrastructure_summary` (
`device_type` VARCHAR(1) NOT NULL COLLATE 'utf8mb4_general_ci',
`total_count` BIGINT(21) NOT NULL,
`active_count` DECIMAL(23,0) NULL
);
-- Dumping structure for view shopdb.vw_machinetype_comparison
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_machinetype_comparison` (
`machineid` INT(11) NOT NULL,
`machinenumber` TINYTEXT NULL COMMENT 'May be 0 padded for sorting' COLLATE 'utf8_general_ci',
`modelnumber` TINYTEXT NOT NULL COLLATE 'utf8_general_ci',
`vendor` CHAR(50) NULL COLLATE 'utf8_general_ci',
`machine_type_id` INT(11) NOT NULL,
`machine_type_name` CHAR(50) NULL COLLATE 'utf8_general_ci',
`model_type_id` INT(11) NULL,
`model_type_name` CHAR(50) NULL COLLATE 'utf8_general_ci',
`status` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci'
);
-- Dumping structure for view shopdb.vw_machine_assignments
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_machine_assignments` (
`machineid` INT(11) NOT NULL,
`machinenumber` TINYTEXT NULL COLLATE 'utf8_general_ci',
`pcid` INT(11) NULL,
`hostname` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`assignment_type` VARCHAR(1) NOT NULL COLLATE 'utf8mb4_general_ci',
`is_primary` BIGINT(20) NOT NULL,
`has_dualpath` BIGINT(20) NULL
);
-- Dumping structure for view shopdb.vw_machine_assignment_status
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_machine_assignment_status` (
`machineid` INT(11) NOT NULL,
`machinenumber` TINYTEXT NULL COMMENT 'May be 0 padded for sorting' COLLATE 'utf8_general_ci',
`alias` TINYTEXT NULL COMMENT 'Alternate Machine Name for dual Spindle\r\nHuman readable name for searching\r\n' COLLATE 'utf8_general_ci',
`machinetype` CHAR(50) NOT NULL COLLATE 'utf8_general_ci',
`machinedescription` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`assignment_status` VARCHAR(1) NOT NULL COLLATE 'utf8mb4_general_ci',
`hostname` VARCHAR(1) NULL COMMENT 'Computer hostname' COLLATE 'utf8_general_ci',
`pcid` INT(11) NULL,
`pc_type` VARCHAR(1) NULL COMMENT 'Type name (Standard, Engineer, Shopfloor, etc.)' COLLATE 'utf8_general_ci',
`pc_manufacturer` CHAR(50) NULL COLLATE 'utf8_general_ci',
`pc_last_updated` DATETIME NULL COMMENT 'Last update timestamp',
`has_dualpath` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci',
`path1_name` VARCHAR(1) NULL COMMENT 'Path1Name from eFocas registry' COLLATE 'utf8_general_ci',
`path2_name` VARCHAR(1) NULL COMMENT 'Path2Name from eFocas registry' COLLATE 'utf8_general_ci'
);
-- Dumping structure for view shopdb.vw_machine_type_stats
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_machine_type_stats` (
`machinetype` CHAR(50) NOT NULL COLLATE 'utf8_general_ci',
`machinedescription` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`total_machines` BIGINT(21) NOT NULL,
`machines_with_pcs` DECIMAL(23,0) NULL,
`machines_without_pcs` DECIMAL(23,0) NULL,
`assignment_percentage` DECIMAL(29,2) NULL,
`machine_assignments` TEXT NULL COLLATE 'utf8_general_ci'
);
-- Dumping structure for view shopdb.vw_multi_pc_machines
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_multi_pc_machines` (
`machinenumber` VARCHAR(1) NULL COMMENT 'GE Aircraft Engines Machine Number if available' COLLATE 'utf8_general_ci',
`pc_count` BIGINT(21) NOT NULL,
`hostnames` TEXT NULL COLLATE 'utf8_general_ci',
`pcids` TEXT NULL COLLATE 'utf8mb4_general_ci'
);
-- Dumping structure for view shopdb.vw_network_devices
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_network_devices`
);
-- Dumping structure for view shopdb.vw_pcs_by_hardware
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_pcs_by_hardware` (
`manufacturer` CHAR(50) NULL COLLATE 'utf8_general_ci',
`model` TINYTEXT NULL COLLATE 'utf8_general_ci',
`totalcount` BIGINT(21) NOT NULL,
`standardcount` DECIMAL(23,0) NULL,
`engineercount` DECIMAL(23,0) NULL,
`shopfloorcount` DECIMAL(23,0) NULL
);
-- Dumping structure for view shopdb.vw_pctype_config
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_pctype_config` (
`pctypeid` INT(11) NOT NULL,
`TypeName` VARCHAR(1) NOT NULL COMMENT 'Type name (Standard, Engineer, Shopfloor, etc.)' COLLATE 'utf8_general_ci',
`Description` VARCHAR(1) NULL COMMENT 'Description of this PC type' COLLATE 'utf8_general_ci',
`DisplayOrder` INT(11) NULL COMMENT 'Order for display in reports',
`Status` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci'
);
-- Dumping structure for view shopdb.vw_pc_network_summary
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_pc_network_summary` (
`Hostname` VARCHAR(1) NULL COMMENT 'Computer hostname' COLLATE 'utf8_general_ci',
`SerialNumber` VARCHAR(1) NULL COMMENT 'System serial number from BIOS' COLLATE 'utf8_general_ci',
`PCType` VARCHAR(1) NULL COMMENT 'Type name (Standard, Engineer, Shopfloor, etc.)' COLLATE 'utf8_general_ci',
`InterfaceCount` BIGINT(21) NOT NULL,
`IPAddresses` TEXT NULL COLLATE 'utf8_general_ci'
);
-- Dumping structure for view shopdb.vw_pc_resolved_machines
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_pc_resolved_machines` (
`pcid` INT(11) NOT NULL,
`hostname` VARCHAR(1) NULL COMMENT 'Computer hostname' COLLATE 'utf8_general_ci',
`registry_machinenumber` VARCHAR(1) NULL COMMENT 'GE Aircraft Engines Machine Number if available' COLLATE 'utf8_general_ci',
`override_machinenumber` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`resolved_machinenumber` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`machine_source` VARCHAR(1) NOT NULL COLLATE 'utf8mb4_general_ci',
`shared_machine_count` BIGINT(21) NULL,
`requires_manual_machine_config` TINYINT(1) NULL COMMENT 'TRUE when this PC shares machine number with other PCs'
);
-- Dumping structure for view shopdb.vw_pc_summary
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_pc_summary` (
`PCType` VARCHAR(1) NOT NULL COMMENT 'Type name (Standard, Engineer, Shopfloor, etc.)' COLLATE 'utf8_general_ci',
`Description` VARCHAR(1) NULL COMMENT 'Description of this PC type' COLLATE 'utf8_general_ci',
`Count` BIGINT(21) NOT NULL,
`Percentage` DECIMAL(26,2) NULL
);
-- Dumping structure for view shopdb.vw_recent_updates
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_recent_updates` (
`hostname` VARCHAR(1) NULL COMMENT 'Computer hostname' COLLATE 'utf8_general_ci',
`serialnumber` VARCHAR(1) NULL COMMENT 'System serial number from BIOS' COLLATE 'utf8_general_ci',
`manufacturer` CHAR(50) NULL COLLATE 'utf8_general_ci',
`pctype` VARCHAR(1) NULL COMMENT 'Type name (Standard, Engineer, Shopfloor, etc.)' COLLATE 'utf8_general_ci',
`loggedinuser` VARCHAR(1) NULL COMMENT 'Currently logged in user' COLLATE 'utf8_general_ci',
`lastupdated` DATETIME NULL COMMENT 'Last update timestamp'
);
-- Dumping structure for view shopdb.vw_shopfloor_applications_summary
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_shopfloor_applications_summary` (
`appname` CHAR(50) NOT NULL COLLATE 'utf8_general_ci',
`appdescription` CHAR(255) NULL COLLATE 'utf8_general_ci',
`machine_count` BIGINT(21) NOT NULL,
`pc_count` BIGINT(21) NOT NULL,
`machine_numbers` TEXT NULL COLLATE 'utf8_general_ci',
`pc_hostnames` TEXT NULL COLLATE 'utf8_general_ci'
);
-- Dumping structure for view shopdb.vw_shopfloor_comm_config
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_shopfloor_comm_config` (
`hostname` VARCHAR(1) NULL COMMENT 'Computer hostname' COLLATE 'utf8_general_ci',
`machinenumber` VARCHAR(1) NULL COMMENT 'GE Aircraft Engines Machine Number if available' COLLATE 'utf8_general_ci',
`configtype` VARCHAR(1) NULL COMMENT 'Serial, Mark, PPDCS, eFocas, etc.' COLLATE 'utf8_general_ci',
`portid` VARCHAR(1) NULL COMMENT 'COM1, COM2, etc.' COLLATE 'utf8_general_ci',
`baud` INT(11) NULL COMMENT 'Baud rate',
`databits` INT(11) NULL COMMENT 'Data bits (7,8)',
`stopbits` VARCHAR(1) NULL COMMENT 'Stop bits (1,1.5,2)' COLLATE 'utf8_general_ci',
`parity` VARCHAR(1) NULL COMMENT 'None, Even, Odd' COLLATE 'utf8_general_ci',
`ipaddress` VARCHAR(1) NULL COMMENT 'For eFocas and network configs' COLLATE 'utf8_general_ci',
`socketnumber` INT(11) NULL COMMENT 'Socket number for network protocols'
);
-- Dumping structure for view shopdb.vw_shopfloor_pcs
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_shopfloor_pcs` (
`pcid` INT(11) NOT NULL,
`hostname` VARCHAR(1) NULL COMMENT 'Computer hostname' COLLATE 'utf8_general_ci',
`serialnumber` VARCHAR(1) NULL COMMENT 'System serial number from BIOS' COLLATE 'utf8_general_ci',
`manufacturer` CHAR(50) NULL COLLATE 'utf8_general_ci',
`model` TINYTEXT NULL COLLATE 'utf8_general_ci',
`loggedinuser` VARCHAR(1) NULL COMMENT 'Currently logged in user' COLLATE 'utf8_general_ci',
`machinenumber` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci',
`operatingsystem` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`lastupdated` DATETIME NULL COMMENT 'Last update timestamp'
);
-- Dumping structure for view shopdb.vw_standard_pcs
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_standard_pcs` (
`pcid` INT(11) NOT NULL,
`hostname` VARCHAR(1) NULL COMMENT 'Computer hostname' COLLATE 'utf8_general_ci',
`serialnumber` VARCHAR(1) NULL COMMENT 'System serial number from BIOS' COLLATE 'utf8_general_ci',
`manufacturer` CHAR(50) NULL COLLATE 'utf8_general_ci',
`model` TINYTEXT NULL COLLATE 'utf8_general_ci',
`loggedinuser` VARCHAR(1) NULL COMMENT 'Currently logged in user' COLLATE 'utf8_general_ci',
`operatingsystem` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`lastupdated` DATETIME NULL COMMENT 'Last update timestamp'
);
-- Dumping structure for view shopdb.vw_unmapped_machines
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_unmapped_machines` (
`machineid` INT(11) NOT NULL,
`machinenumber` TINYTEXT NULL COMMENT 'May be 0 padded for sorting' COLLATE 'utf8_general_ci',
`alias` TINYTEXT NULL COMMENT 'Alternate Machine Name for dual Spindle\r\nHuman readable name for searching\r\n' COLLATE 'utf8_general_ci',
`ipaddress1` CHAR(50) NULL COLLATE 'utf8_general_ci',
`ipaddress2` CHAR(50) NULL COLLATE 'utf8_general_ci',
`machine_type` CHAR(50) NULL COLLATE 'utf8_general_ci',
`mapleft` SMALLINT(6) NULL,
`maptop` SMALLINT(6) NULL,
`isactive` INT(11) NULL,
`map_status` VARCHAR(1) NOT NULL COLLATE 'utf8mb4_general_ci'
);
-- Dumping structure for view shopdb.vw_vendor_summary
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_vendor_summary` (
`manufacturer` CHAR(50) NULL COLLATE 'utf8_general_ci',
`totalpcs` BIGINT(21) NOT NULL,
`standardpcs` DECIMAL(23,0) NULL,
`engineerpcs` DECIMAL(23,0) NULL,
`shopfloorpcs` DECIMAL(23,0) NULL,
`lastseen` DATETIME NULL COMMENT 'Last update timestamp'
);
-- Dumping structure for view shopdb.vw_warranties_expiring
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_warranties_expiring` (
`hostname` VARCHAR(1) NULL COMMENT 'Computer hostname' COLLATE 'utf8_general_ci',
`serialnumber` VARCHAR(1) NULL COMMENT 'System serial number from BIOS' COLLATE 'utf8_general_ci',
`manufacturer` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`model` TINYTEXT NULL COLLATE 'utf8_general_ci',
`pctype` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`warrantyenddate` DATE NULL COMMENT 'Warranty expiration date',
`warrantydaysremaining` BIGINT(11) NULL,
`warrantyservicelevel` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`loggedinuser` VARCHAR(1) NULL COMMENT 'Currently logged in user' COLLATE 'utf8_general_ci',
`machinenumber` VARCHAR(1) NULL COMMENT 'GE Aircraft Engines Machine Number if available' COLLATE 'utf8_general_ci'
);
-- Dumping structure for view shopdb.vw_warranty_status
-- Creating temporary table to overcome VIEW dependency errors
CREATE TABLE `vw_warranty_status` (
`hostname` VARCHAR(1) NULL COMMENT 'Computer hostname' COLLATE 'utf8_general_ci',
`serialnumber` VARCHAR(1) NULL COMMENT 'System serial number from BIOS' COLLATE 'utf8_general_ci',
`manufacturer` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`model` TINYTEXT NULL COLLATE 'utf8_general_ci',
`pctype` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`warrantystatus` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`warrantyenddate` DATE NULL COMMENT 'Warranty expiration date',
`warrantydaysremaining` BIGINT(11) NULL,
`warrantyservicelevel` VARCHAR(1) NULL COLLATE 'utf8_general_ci',
`warrantylastchecked` DATETIME NULL COMMENT 'When warranty was last checked',
`warrantyalert` VARCHAR(1) NULL COLLATE 'utf8mb4_general_ci',
`lastupdated` DATETIME NULL COMMENT 'Last update timestamp'
);
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_active_pcs`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_active_pcs` AS select `p`.`pcid` AS `pcid`,`p`.`hostname` AS `hostname`,`p`.`serialnumber` AS `serialnumber`,coalesce(`v`.`vendor`,'Unknown') AS `manufacturer`,`m`.`modelnumber` AS `model`,`p`.`loggedinuser` AS `loggedinuser`,`p`.`machinenumber` AS `machinenumber`,coalesce(`os`.`operatingsystem`,'Unknown') AS `operatingsystem`,coalesce(`pt`.`typename`,'Unknown') AS `pctype`,coalesce(`pt`.`description`,'Unknown') AS `typedescription`,(case when (`p`.`warrantystatus` is not null) then `p`.`warrantystatus` when isnull(`p`.`warrantyenddate`) then 'Unknown' when (`p`.`warrantyenddate` < curdate()) then 'Expired' else 'Active' end) AS `warrantystatus`,`p`.`warrantyenddate` AS `warrantyenddate`,(case when (`p`.`warrantydaysremaining` is not null) then `p`.`warrantydaysremaining` when isnull(`p`.`warrantyenddate`) then NULL else (to_days(`p`.`warrantyenddate`) - to_days(curdate())) end) AS `warrantydaysremaining`,`p`.`lastupdated` AS `lastupdated`,(to_days(now()) - to_days(`p`.`lastupdated`)) AS `daysold` from ((((`pc` `p` left join `models` `m` on((`p`.`modelnumberid` = `m`.`modelnumberid`))) left join `vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`))) left join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) left join `operatingsystems` `os` on((`p`.`osid` = `os`.`osid`))) where (`p`.`lastupdated` > (now() - interval 30 day))
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_dnc_config`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_dnc_config` AS select `p`.`hostname` AS `Hostname`,`p`.`machinenumber` AS `PC_MachineNo`,`d`.`machinenumber` AS `DNC_MachineNo`,`d`.`site` AS `Site`,`d`.`cnc` AS `CNC`,`d`.`ncif` AS `NcIF`,`d`.`hosttype` AS `HostType`,`d`.`ftphostprimary` AS `FtpHostPrimary`,`d`.`ftphostsecondary` AS `FtpHostSecondary`,`d`.`ftpaccount` AS `FtpAccount`,`d`.`debug` AS `Debug`,`d`.`uploads` AS `Uploads`,`d`.`scanner` AS `Scanner`,`d`.`dripfeed` AS `Dripfeed`,`d`.`additionalsettings` AS `AdditionalSettings`,`d`.`dualpath_enabled` AS `DualPath_Enabled`,`d`.`path1_name` AS `Path1_Name`,`d`.`path2_name` AS `Path2_Name`,`d`.`ge_registry_32bit` AS `GE_Registry_32bit`,`d`.`ge_registry_64bit` AS `GE_Registry_64bit`,`d`.`ge_registry_notes` AS `GE_Registry_Notes`,`d`.`lastupdated` AS `LastUpdated`,`p`.`pcid` AS `PCID`,`d`.`dncid` AS `DNCID` from (`pc` `p` join `pc_dnc_config` `d` on((`p`.`pcid` = `d`.`pcid`))) order by `p`.`hostname`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_dualpath_management`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_dualpath_management` AS select `p`.`hostname` AS `pc_hostname`,`p`.`pcid` AS `pcid`,`pt`.`typename` AS `pc_type`,`p`.`machinenumber` AS `primary_machine`,`dc`.`dualpath_enabled` AS `dualpath_enabled`,`dc`.`path1_name` AS `path1_name`,`dc`.`path2_name` AS `path2_name`,`dpa`.`secondary_machine` AS `secondary_machine`,`dpa`.`lastupdated` AS `assignment_updated`,`m1`.`alias` AS `primary_machine_alias`,`m2`.`alias` AS `secondary_machine_alias`,(case when ((`dc`.`dualpath_enabled` = 1) and (`dpa`.`secondary_machine` is not null)) then 'Fully Configured' when ((`dc`.`dualpath_enabled` = 1) and isnull(`dpa`.`secondary_machine`)) then 'Enabled - No Assignment' when ((`dc`.`dualpath_enabled` = 0) and (`dpa`.`secondary_machine` is not null)) then 'Assignment Without Enable' else 'Not Configured' end) AS `dualpath_status` from (((((`pc` `p` join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) left join `pc_dnc_config` `dc` on((`p`.`pcid` = `dc`.`pcid`))) left join `pc_dualpath_assignments` `dpa` on((`p`.`pcid` = `dpa`.`pcid`))) left join `machines` `m1` on((`p`.`machinenumber` = `m1`.`machinenumber`))) left join `machines` `m2` on((`dpa`.`secondary_machine` = convert(`m2`.`machinenumber` using utf8mb4)))) where ((`p`.`isactive` = 1) and ((`dc`.`dualpath_enabled` = 1) or (`dpa`.`secondary_machine` is not null))) order by (case when ((`dc`.`dualpath_enabled` = 1) and (`dpa`.`secondary_machine` is not null)) then 'Fully Configured' when ((`dc`.`dualpath_enabled` = 1) and isnull(`dpa`.`secondary_machine`)) then 'Enabled - No Assignment' when ((`dc`.`dualpath_enabled` = 0) and (`dpa`.`secondary_machine` is not null)) then 'Assignment Without Enable' else 'Not Configured' end) desc,`p`.`hostname`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_engineer_pcs`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_engineer_pcs` AS select `p`.`pcid` AS `pcid`,`p`.`hostname` AS `hostname`,`p`.`serialnumber` AS `serialnumber`,`v`.`vendor` AS `manufacturer`,`m`.`modelnumber` AS `model`,`p`.`loggedinuser` AS `loggedinuser`,`p`.`machinenumber` AS `machinenumber`,coalesce(`os`.`operatingsystem`,'Unknown') AS `operatingsystem`,`p`.`lastupdated` AS `lastupdated` from ((((`pc` `p` left join `models` `m` on((`p`.`modelnumberid` = `m`.`modelnumberid`))) left join `vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`))) left join `operatingsystems` `os` on((`p`.`osid` = `os`.`osid`))) join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) where ((`pt`.`typename` = 'Engineer') and (`p`.`lastupdated` > (now() - interval 30 day))) order by `p`.`hostname`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_ge_machines`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_ge_machines` AS select `p`.`machinenumber` AS `machinenumber`,count(0) AS `pccount`,group_concat(concat(`p`.`hostname`,' (',`pt`.`typename`,'/',ifnull(`v`.`vendor`,'Unknown'),')') order by `p`.`hostname` ASC separator ', ') AS `assignedpcs` from (((`pc` `p` left join `models` `m` on((`p`.`modelnumberid` = `m`.`modelnumberid`))) left join `vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`))) left join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) where ((`p`.`machinenumber` is not null) and (`p`.`machinenumber` <> '') and (`p`.`lastupdated` > (now() - interval 30 day))) group by `p`.`machinenumber` order by `p`.`machinenumber`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_idf_inventory`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_idf_inventory` AS select `i`.`idfid` AS `idfid`,`i`.`idfname` AS `idfname`,`i`.`description` AS `description`,`i`.`maptop` AS `maptop`,`i`.`mapleft` AS `mapleft`,count(distinct `cam`.`cameraid`) AS `camera_count`,`i`.`isactive` AS `isactive` from (`idfs` `i` left join `cameras` `cam` on(((`i`.`idfid` = `cam`.`idfid`) and (`cam`.`isactive` = 1)))) where (`i`.`isactive` = 1) group by `i`.`idfid`,`i`.`idfname`,`i`.`description`,`i`.`maptop`,`i`.`mapleft`,`i`.`isactive`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_infrastructure_summary`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_infrastructure_summary` AS select 'Switches' AS `device_type`,count(0) AS `total_count`,sum((case when (`switches`.`isactive` = 1) then 1 else 0 end)) AS `active_count` from `switches` union all select 'Access Points' AS `device_type`,count(0) AS `total_count`,sum((case when (`accesspoints`.`isactive` = 1) then 1 else 0 end)) AS `active_count` from `accesspoints` union all select 'Servers' AS `device_type`,count(0) AS `total_count`,sum((case when (`servers`.`isactive` = 1) then 1 else 0 end)) AS `active_count` from `servers` union all select 'Cameras' AS `device_type`,count(0) AS `total_count`,sum((case when (`cameras`.`isactive` = 1) then 1 else 0 end)) AS `active_count` from `cameras` union all select 'IDFs' AS `device_type`,count(0) AS `total_count`,sum((case when (`idfs`.`isactive` = 1) then 1 else 0 end)) AS `active_count` from `idfs`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_machinetype_comparison`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_machinetype_comparison` AS select `m`.`machineid` AS `machineid`,`m`.`machinenumber` AS `machinenumber`,`mo`.`modelnumber` AS `modelnumber`,`v`.`vendor` AS `vendor`,`m`.`machinetypeid` AS `machine_type_id`,`mt1`.`machinetype` AS `machine_type_name`,`mo`.`machinetypeid` AS `model_type_id`,`mt2`.`machinetype` AS `model_type_name`,(case when (`m`.`machinetypeid` = `mo`.`machinetypeid`) then 'MATCH' when ((`m`.`machinetypeid` = 1) and (`mo`.`machinetypeid` <> 1)) then 'MACHINE_WAS_PLACEHOLDER' when ((`m`.`machinetypeid` <> 1) and (`mo`.`machinetypeid` = 1)) then 'MODEL_IS_PLACEHOLDER' else 'MISMATCH' end) AS `status` from ((((`machines` `m` join `models` `mo` on((`m`.`modelnumberid` = `mo`.`modelnumberid`))) left join `machinetypes` `mt1` on((`m`.`machinetypeid` = `mt1`.`machinetypeid`))) left join `machinetypes` `mt2` on((`mo`.`machinetypeid` = `mt2`.`machinetypeid`))) left join `vendors` `v` on((`mo`.`vendorid` = `v`.`vendorid`))) where (`m`.`isactive` = 1) order by (case when (`m`.`machinetypeid` = `mo`.`machinetypeid`) then 1 else 0 end),`mo`.`modelnumber`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_machine_assignments`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_machine_assignments` AS select `m`.`machineid` AS `machineid`,`m`.`machinenumber` AS `machinenumber`,`p`.`pcid` AS `pcid`,`p`.`hostname` AS `hostname`,'Primary' AS `assignment_type`,1 AS `is_primary`,(case when (`dc`.`dualpath_enabled` = 1) then 1 else 0 end) AS `has_dualpath` from ((`machines` `m` left join `pc` `p` on((`m`.`machinenumber` = `p`.`machinenumber`))) left join `pc_dnc_config` `dc` on((`p`.`pcid` = `dc`.`pcid`))) union all select `m`.`machineid` AS `machineid`,`m`.`machinenumber` AS `machinenumber`,`p`.`pcid` AS `pcid`,`p`.`hostname` AS `hostname`,'DualPath' AS `assignment_type`,0 AS `is_primary`,1 AS `has_dualpath` from ((`machines` `m` join `pc_dualpath_assignments` `dpa` on((convert(`m`.`machinenumber` using utf8mb4) = `dpa`.`secondary_machine`))) join `pc` `p` on((`dpa`.`pcid` = `p`.`pcid`)))
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_machine_assignment_status`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_machine_assignment_status` AS select `m`.`machineid` AS `machineid`,`m`.`machinenumber` AS `machinenumber`,`m`.`alias` AS `alias`,`mt`.`machinetype` AS `machinetype`,`mt`.`machinedescription` AS `machinedescription`,(case when (`p`.`pcid` is not null) then 'Assigned' else 'Unassigned' end) AS `assignment_status`,`p`.`hostname` AS `hostname`,`p`.`pcid` AS `pcid`,`pt`.`typename` AS `pc_type`,`v`.`vendor` AS `pc_manufacturer`,`p`.`lastupdated` AS `pc_last_updated`,(case when (`dc`.`dualpath_enabled` = 1) then 'Yes' else 'No' end) AS `has_dualpath`,`dc`.`path1_name` AS `path1_name`,`dc`.`path2_name` AS `path2_name` from ((((((`machines` `m` join `machinetypes` `mt` on((`m`.`machinetypeid` = `mt`.`machinetypeid`))) left join `pc` `p` on(((`m`.`machinenumber` = `p`.`machinenumber`) and (`p`.`isactive` = 1)))) left join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) left join `models` `mo` on((`p`.`modelnumberid` = `mo`.`modelnumberid`))) left join `vendors` `v` on((`mo`.`vendorid` = `v`.`vendorid`))) left join `pc_dnc_config` `dc` on((`p`.`pcid` = `dc`.`pcid`))) where (`m`.`isactive` = 1) order by `m`.`machinenumber`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_machine_type_stats`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_machine_type_stats` AS select `mt`.`machinetype` AS `machinetype`,`mt`.`machinedescription` AS `machinedescription`,count(0) AS `total_machines`,sum((case when (`p`.`pcid` is not null) then 1 else 0 end)) AS `machines_with_pcs`,sum((case when isnull(`p`.`pcid`) then 1 else 0 end)) AS `machines_without_pcs`,round(((sum((case when (`p`.`pcid` is not null) then 1 else 0 end)) * 100.0) / count(0)),2) AS `assignment_percentage`,group_concat(distinct concat(`m`.`machinenumber`,':',ifnull(`p`.`hostname`,'Unassigned')) order by `m`.`machinenumber` ASC separator ', ') AS `machine_assignments` from ((`machines` `m` join `machinetypes` `mt` on((`m`.`machinetypeid` = `mt`.`machinetypeid`))) left join `pc` `p` on(((`m`.`machinenumber` = `p`.`machinenumber`) and (`p`.`isactive` = 1)))) where (`m`.`isactive` = 1) group by `mt`.`machinetypeid`,`mt`.`machinetype`,`mt`.`machinedescription` order by `total_machines` desc
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_multi_pc_machines`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_multi_pc_machines` AS select `pc`.`machinenumber` AS `machinenumber`,count(0) AS `pc_count`,group_concat(distinct `pc`.`hostname` order by `pc`.`hostname` ASC separator ', ') AS `hostnames`,group_concat(distinct `pc`.`pcid` order by `pc`.`pcid` ASC separator ', ') AS `pcids` from `pc` where ((`pc`.`machinenumber` is not null) and (`pc`.`machinenumber` <> '') and (`pc`.`machinenumber` <> 'NULL')) group by `pc`.`machinenumber` having (count(0) > 1)
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_network_devices`;
CREATE VIEW `vw_network_devices` AS select 'IDF' AS `device_type`,`i`.`idfid` AS `device_id`,`i`.`idfname` AS `device_name`,NULL AS `modelid`,NULL AS `modelnumber`,NULL AS `vendor`,NULL AS `serialnumber`,NULL AS `ipaddress`,`i`.`description` AS `description`,`i`.`maptop` AS `maptop`,`i`.`mapleft` AS `mapleft`,`i`.`isactive` AS `isactive`,NULL AS `idfid`,NULL AS `idfname`,NULL AS `macaddress` from `shopdb`.`idfs` `i` union all select 'Server' AS `device_type`,`s`.`serverid` AS `device_id`,`s`.`servername` AS `device_name`,`s`.`modelid` AS `modelid`,`m`.`modelnumber` AS `modelnumber`,`v`.`vendor` AS `vendor`,`s`.`serialnumber` AS `serialnumber`,`s`.`ipaddress` AS `ipaddress`,`s`.`description` AS `description`,`s`.`maptop` AS `maptop`,`s`.`mapleft` AS `mapleft`,`s`.`isactive` AS `isactive`,NULL AS `idfid`,NULL AS `idfname`,NULL AS `macaddress` from ((`shopdb`.`servers` `s` left join `shopdb`.`models` `m` on((`s`.`modelid` = `m`.`modelnumberid`))) left join `shopdb`.`vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`))) union all select 'Switch' AS `device_type`,`sw`.`switchid` AS `device_id`,`sw`.`switchname` AS `device_name`,`sw`.`modelid` AS `modelid`,`m`.`modelnumber` AS `modelnumber`,`v`.`vendor` AS `vendor`,`sw`.`serialnumber` AS `serialnumber`,`sw`.`ipaddress` AS `ipaddress`,`sw`.`description` AS `description`,`sw`.`maptop` AS `maptop`,`sw`.`mapleft` AS `mapleft`,`sw`.`isactive` AS `isactive`,NULL AS `idfid`,NULL AS `idfname`,NULL AS `macaddress` from ((`shopdb`.`switches` `sw` left join `shopdb`.`models` `m` on((`sw`.`modelid` = `m`.`modelnumberid`))) left join `shopdb`.`vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`))) union all select 'Camera' AS `device_type`,`c`.`cameraid` AS `device_id`,`c`.`cameraname` AS `device_name`,`c`.`modelid` AS `modelid`,`m`.`modelnumber` AS `modelnumber`,`v`.`vendor` AS `vendor`,`c`.`serialnumber` AS `serialnumber`,`c`.`ipaddress` AS `ipaddress`,`c`.`description` AS `description`,`c`.`maptop` AS `maptop`,`c`.`mapleft` AS `mapleft`,`c`.`isactive` AS `isactive`,`c`.`idfid` AS `idfid`,`i`.`idfname` AS `idfname`,`c`.`macaddress` AS `macaddress` from (((`shopdb`.`cameras` `c` left join `shopdb`.`models` `m` on((`c`.`modelid` = `m`.`modelnumberid`))) left join `shopdb`.`vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`))) left join `shopdb`.`idfs` `i` on((`c`.`idfid` = `i`.`idfid`))) union all select 'Access Point' AS `device_type`,`a`.`apid` AS `device_id`,`a`.`apname` AS `device_name`,`a`.`modelid` AS `modelid`,`m`.`modelnumber` AS `modelnumber`,`v`.`vendor` AS `vendor`,`a`.`serialnumber` AS `serialnumber`,`a`.`ipaddress` AS `ipaddress`,`a`.`description` AS `description`,`a`.`maptop` AS `maptop`,`a`.`mapleft` AS `mapleft`,`a`.`isactive` AS `isactive`,NULL AS `idfid`,NULL AS `idfname`,NULL AS `macaddress` from ((`shopdb`.`accesspoints` `a` left join `shopdb`.`models` `m` on((`a`.`modelid` = `m`.`modelnumberid`))) left join `shopdb`.`vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`))) union all select 'Printer' AS `device_type`,`p`.`printerid` AS `device_id`,`p`.`printerwindowsname` AS `device_name`,`p`.`modelid` AS `modelid`,`m`.`modelnumber` AS `modelnumber`,`v`.`vendor` AS `vendor`,`p`.`serialnumber` AS `serialnumber`,`p`.`ipaddress` AS `ipaddress`,NULL AS `description`,`p`.`maptop` AS `maptop`,`p`.`mapleft` AS `mapleft`,`p`.`isactive` AS `isactive`,NULL AS `idfid`,NULL AS `idfname`,NULL AS `macaddress` from ((`shopdb`.`printers` `p` left join `shopdb`.`models` `m` on((`p`.`modelid` = `m`.`modelnumberid`))) left join `shopdb`.`vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`)))
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_pcs_by_hardware`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_pcs_by_hardware` AS select `v`.`vendor` AS `manufacturer`,`m`.`modelnumber` AS `model`,count(0) AS `totalcount`,sum((case when (`pt`.`typename` = 'Standard') then 1 else 0 end)) AS `standardcount`,sum((case when (`pt`.`typename` = 'Engineer') then 1 else 0 end)) AS `engineercount`,sum((case when (`pt`.`typename` = 'Shopfloor') then 1 else 0 end)) AS `shopfloorcount` from (((`pc` `p` left join `models` `m` on((`p`.`modelnumberid` = `m`.`modelnumberid`))) left join `vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`))) left join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) where (`p`.`lastupdated` > (now() - interval 30 day)) group by `v`.`vendor`,`m`.`modelnumber` order by `totalcount` desc
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_pctype_config`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_pctype_config` AS select `pctype`.`pctypeid` AS `pctypeid`,`pctype`.`typename` AS `TypeName`,`pctype`.`description` AS `Description`,`pctype`.`displayorder` AS `DisplayOrder`,(case `pctype`.`isactive` when '1' then 'Active' else 'Inactive' end) AS `Status` from `pctype` order by `pctype`.`displayorder`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_pc_network_summary`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_pc_network_summary` AS select `p`.`hostname` AS `Hostname`,`p`.`serialnumber` AS `SerialNumber`,`pt`.`typename` AS `PCType`,count(distinct `ni`.`interfaceid`) AS `InterfaceCount`,group_concat(concat(`ni`.`ipaddress`,convert((case when (`ni`.`ismachinenetwork` = 1) then ' (Machine)' else ' (Network)' end) using utf8)) separator ', ') AS `IPAddresses` from ((`pc` `p` left join `pc_network_interfaces` `ni` on(((`p`.`pcid` = `ni`.`pcid`) and (`ni`.`isactive` = 1)))) left join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) where (`p`.`lastupdated` > (now() - interval 30 day)) group by `p`.`pcid`,`p`.`hostname`,`p`.`serialnumber`,`pt`.`typename` having (`InterfaceCount` > 0) order by `InterfaceCount` desc,`p`.`hostname`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_pc_resolved_machines`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_pc_resolved_machines` AS select `p`.`pcid` AS `pcid`,`p`.`hostname` AS `hostname`,`p`.`machinenumber` AS `registry_machinenumber`,`mo`.`machinenumber` AS `override_machinenumber`,coalesce(`mo`.`machinenumber`,`p`.`machinenumber`) AS `resolved_machinenumber`,(case when (`mo`.`machinenumber` is not null) then 'override' else 'registry' end) AS `machine_source`,`mpm`.`pc_count` AS `shared_machine_count`,`p`.`requires_manual_machine_config` AS `requires_manual_machine_config` from ((`pc` `p` left join `machine_overrides` `mo` on((`p`.`pcid` = `mo`.`pcid`))) left join `vw_multi_pc_machines` `mpm` on((`p`.`machinenumber` = `mpm`.`machinenumber`)))
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_pc_summary`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_pc_summary` AS select `pt`.`typename` AS `PCType`,`pt`.`description` AS `Description`,count(`p`.`pcid`) AS `Count`,round(((count(`p`.`pcid`) * 100.0) / nullif((select count(0) from `pc` where (`pc`.`lastupdated` > (now() - interval 30 day))),0)),2) AS `Percentage` from (`pctype` `pt` left join `pc` `p` on(((`pt`.`pctypeid` = `p`.`pctypeid`) and (`p`.`lastupdated` > (now() - interval 30 day))))) where (`pt`.`isactive` = '1') group by `pt`.`pctypeid`,`pt`.`typename`,`pt`.`description`,`pt`.`displayorder` order by `pt`.`displayorder`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_recent_updates`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_recent_updates` AS select `p`.`hostname` AS `hostname`,`p`.`serialnumber` AS `serialnumber`,`v`.`vendor` AS `manufacturer`,`pt`.`typename` AS `pctype`,`p`.`loggedinuser` AS `loggedinuser`,`p`.`lastupdated` AS `lastupdated` from (((`pc` `p` left join `models` `m` on((`p`.`modelnumberid` = `m`.`modelnumberid`))) left join `vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`))) left join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) where (`p`.`lastupdated` > (now() - interval 30 day)) order by `p`.`lastupdated` desc limit 50
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_shopfloor_applications_summary`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_shopfloor_applications_summary` AS select `a`.`appname` AS `appname`,`a`.`appdescription` AS `appdescription`,count(distinct `ia`.`machineid`) AS `machine_count`,count(distinct `p`.`pcid`) AS `pc_count`,group_concat(distinct `m`.`machinenumber` order by `m`.`machinenumber` ASC separator ', ') AS `machine_numbers`,group_concat(distinct `p`.`hostname` order by `p`.`hostname` ASC separator ', ') AS `pc_hostnames` from (((`installedapps` `ia` join `applications` `a` on((`ia`.`appid` = `a`.`appid`))) join `machines` `m` on((`ia`.`machineid` = `m`.`machineid`))) left join `pc` `p` on(((`m`.`machinenumber` = `p`.`machinenumber`) and (`p`.`isactive` = 1)))) where ((`a`.`appid` in (2,4)) and (`m`.`isactive` = 1)) group by `a`.`appid`,`a`.`appname`,`a`.`appdescription` order by `machine_count` desc
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_shopfloor_comm_config`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_shopfloor_comm_config` AS select `p`.`hostname` AS `hostname`,`p`.`machinenumber` AS `machinenumber`,`cc`.`configtype` AS `configtype`,`cc`.`portid` AS `portid`,`cc`.`baud` AS `baud`,`cc`.`databits` AS `databits`,`cc`.`stopbits` AS `stopbits`,`cc`.`parity` AS `parity`,`cc`.`ipaddress` AS `ipaddress`,`cc`.`socketnumber` AS `socketnumber` from ((`pc` `p` join `pc_comm_config` `cc` on((`p`.`pcid` = `cc`.`pcid`))) join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) where (`pt`.`typename` = 'Shopfloor') order by `p`.`hostname`,`cc`.`configtype`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_shopfloor_pcs`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_shopfloor_pcs` AS select `p`.`pcid` AS `pcid`,`p`.`hostname` AS `hostname`,`p`.`serialnumber` AS `serialnumber`,`v`.`vendor` AS `manufacturer`,`m`.`modelnumber` AS `model`,`p`.`loggedinuser` AS `loggedinuser`,coalesce(convert(`mo`.`machinenumber` using utf8mb4),convert(`p`.`machinenumber` using utf8mb4)) AS `machinenumber`,coalesce(`os`.`operatingsystem`,'Unknown') AS `operatingsystem`,`p`.`lastupdated` AS `lastupdated` from (((((`pc` `p` left join `machine_overrides` `mo` on((`p`.`pcid` = `mo`.`pcid`))) left join `models` `m` on((`p`.`modelnumberid` = `m`.`modelnumberid`))) left join `vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`))) left join `operatingsystems` `os` on((`p`.`osid` = `os`.`osid`))) join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) where ((`pt`.`typename` = 'Shopfloor') and (`p`.`lastupdated` > (now() - interval 30 day))) order by coalesce(convert(`mo`.`machinenumber` using utf8mb4),convert(`p`.`machinenumber` using utf8mb4)),`p`.`hostname`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_standard_pcs`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_standard_pcs` AS select `p`.`pcid` AS `pcid`,`p`.`hostname` AS `hostname`,`p`.`serialnumber` AS `serialnumber`,`v`.`vendor` AS `manufacturer`,`m`.`modelnumber` AS `model`,`p`.`loggedinuser` AS `loggedinuser`,coalesce(`os`.`operatingsystem`,'Unknown') AS `operatingsystem`,`p`.`lastupdated` AS `lastupdated` from ((((`pc` `p` left join `models` `m` on((`p`.`modelnumberid` = `m`.`modelnumberid`))) left join `vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`))) left join `operatingsystems` `os` on((`p`.`osid` = `os`.`osid`))) join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) where ((`pt`.`typename` = 'Standard') and (`p`.`lastupdated` > (now() - interval 30 day))) order by `p`.`hostname`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_unmapped_machines`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_unmapped_machines` AS select `m`.`machineid` AS `machineid`,`m`.`machinenumber` AS `machinenumber`,`m`.`alias` AS `alias`,`m`.`ipaddress1` AS `ipaddress1`,`m`.`ipaddress2` AS `ipaddress2`,`mt`.`machinetype` AS `machine_type`,`m`.`mapleft` AS `mapleft`,`m`.`maptop` AS `maptop`,`m`.`isactive` AS `isactive`,(case when (isnull(`m`.`mapleft`) and isnull(`m`.`maptop`)) then 'No coordinates' when isnull(`m`.`mapleft`) then 'Missing left coordinate' when isnull(`m`.`maptop`) then 'Missing top coordinate' else 'Mapped' end) AS `map_status` from (`machines` `m` left join `machinetypes` `mt` on((`m`.`machinetypeid` = `mt`.`machinetypeid`))) where ((isnull(`m`.`mapleft`) or isnull(`m`.`maptop`)) and (`m`.`isactive` = 1)) order by `m`.`machinenumber`
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_vendor_summary`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_vendor_summary` AS select `v`.`vendor` AS `manufacturer`,count(`p`.`pcid`) AS `totalpcs`,sum((case when (`pt`.`typename` = 'Standard') then 1 else 0 end)) AS `standardpcs`,sum((case when (`pt`.`typename` = 'Engineer') then 1 else 0 end)) AS `engineerpcs`,sum((case when (`pt`.`typename` = 'Shopfloor') then 1 else 0 end)) AS `shopfloorpcs`,max(`p`.`lastupdated`) AS `lastseen` from (((`vendors` `v` left join `models` `m` on((`v`.`vendorid` = `m`.`vendorid`))) left join `pc` `p` on(((`m`.`modelnumberid` = `p`.`modelnumberid`) and (`p`.`lastupdated` > (now() - interval 30 day))))) left join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) where (`v`.`isactive` = '1') group by `v`.`vendorid`,`v`.`vendor` having (count(`p`.`pcid`) > 0) order by `totalpcs` desc
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_warranties_expiring`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_warranties_expiring` AS select `p`.`hostname` AS `hostname`,`p`.`serialnumber` AS `serialnumber`,coalesce(`v`.`vendor`,'Unknown') AS `manufacturer`,`m`.`modelnumber` AS `model`,coalesce(`pt`.`typename`,'Unknown') AS `pctype`,`p`.`warrantyenddate` AS `warrantyenddate`,(case when (`p`.`warrantydaysremaining` is not null) then `p`.`warrantydaysremaining` when isnull(`p`.`warrantyenddate`) then NULL else (to_days(`p`.`warrantyenddate`) - to_days(curdate())) end) AS `warrantydaysremaining`,coalesce(`p`.`warrantyservicelevel`,'Unknown') AS `warrantyservicelevel`,`p`.`loggedinuser` AS `loggedinuser`,`p`.`machinenumber` AS `machinenumber` from (((`pc` `p` left join `models` `m` on((`p`.`modelnumberid` = `m`.`modelnumberid`))) left join `vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`))) left join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) where ((`p`.`lastupdated` > (now() - interval 30 day)) and (((`p`.`warrantydaysremaining` is not null) and (`p`.`warrantydaysremaining` between 0 and 90)) or (isnull(`p`.`warrantydaysremaining`) and (`p`.`warrantyenddate` is not null) and (`p`.`warrantyenddate` between curdate() and (curdate() + interval 90 day))))) order by (case when (`p`.`warrantydaysremaining` is not null) then `p`.`warrantydaysremaining` when isnull(`p`.`warrantyenddate`) then 9999 else (to_days(`p`.`warrantyenddate`) - to_days(curdate())) end)
;
-- Removing temporary table and create final VIEW structure
DROP TABLE IF EXISTS `vw_warranty_status`;
CREATE ALGORITHM=UNDEFINED SQL SECURITY DEFINER VIEW `vw_warranty_status` AS select `p`.`hostname` AS `hostname`,`p`.`serialnumber` AS `serialnumber`,coalesce(`v`.`vendor`,'Unknown') AS `manufacturer`,`m`.`modelnumber` AS `model`,coalesce(`pt`.`typename`,'Unknown') AS `pctype`,(case when (`p`.`warrantystatus` is not null) then `p`.`warrantystatus` when isnull(`p`.`warrantyenddate`) then 'Unknown' when (`p`.`warrantyenddate` < curdate()) then 'Expired' when (`p`.`warrantyenddate` between curdate() and (curdate() + interval 90 day)) then 'Expiring Soon' else 'Active' end) AS `warrantystatus`,`p`.`warrantyenddate` AS `warrantyenddate`,(case when (`p`.`warrantydaysremaining` is not null) then `p`.`warrantydaysremaining` when isnull(`p`.`warrantyenddate`) then NULL else (to_days(`p`.`warrantyenddate`) - to_days(curdate())) end) AS `warrantydaysremaining`,coalesce(`p`.`warrantyservicelevel`,'Unknown') AS `warrantyservicelevel`,`p`.`warrantylastchecked` AS `warrantylastchecked`,(case when isnull(`p`.`warrantyenddate`) then 'Unknown' when (`p`.`warrantyenddate` < curdate()) then 'Expired' when ((to_days(`p`.`warrantyenddate`) - to_days(curdate())) < 30) then 'Expiring Soon' when ((to_days(`p`.`warrantyenddate`) - to_days(curdate())) < 90) then 'Warning' else 'OK' end) AS `warrantyalert`,`p`.`lastupdated` AS `lastupdated` from (((`pc` `p` left join `models` `m` on((`p`.`modelnumberid` = `m`.`modelnumberid`))) left join `vendors` `v` on((`m`.`vendorid` = `v`.`vendorid`))) left join `pctype` `pt` on((`p`.`pctypeid` = `pt`.`pctypeid`))) where (`p`.`lastupdated` > (now() - interval 30 day)) order by (case when (`p`.`warrantydaysremaining` is not null) then `p`.`warrantydaysremaining` when isnull(`p`.`warrantyenddate`) then 9999 else (to_days(`p`.`warrantyenddate`) - to_days(curdate())) end)
;
/*!40103 SET TIME_ZONE=IFNULL(@OLD_TIME_ZONE, 'system') */;
/*!40101 SET SQL_MODE=IFNULL(@OLD_SQL_MODE, '') */;
/*!40014 SET FOREIGN_KEY_CHECKS=IFNULL(@OLD_FOREIGN_KEY_CHECKS, 1) */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40111 SET SQL_NOTES=IFNULL(@OLD_SQL_NOTES, 1) */;