Initial commit: Inno Setup installer packages
Installer packages for GE manufacturing tools: - BlueSSOFix: Blue SSO authentication fix - HIDCardPrinter: HID card printer setup - HPOfflineInstaller: HP printer offline installer - MappedDrive: Network drive mapping - PrinterInstaller: General printer installer - ShopfloorConnect: Shopfloor connectivity tool - XeroxOfflineInstaller: Xerox printer offline installer 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -0,0 +1,50 @@
|
||||
HID FARGO DTC4500e Driver Files
|
||||
================================
|
||||
|
||||
Place the HID FARGO DTC4500e driver files in this directory.
|
||||
|
||||
STEPS TO ADD DRIVER:
|
||||
-------------------
|
||||
|
||||
1. Download the driver from:
|
||||
- HID Global: https://www.hidglobal.com/support/downloads
|
||||
- Or use the driver CD that came with your printer
|
||||
|
||||
2. Extract the driver package
|
||||
|
||||
3. Copy ALL driver files to this directory:
|
||||
- INF file (e.g., dtc4500e.inf, hidcard.inf)
|
||||
- CAT files (driver signature catalogs)
|
||||
- SYS files (system drivers)
|
||||
- DLL files (libraries)
|
||||
- All supporting files
|
||||
|
||||
4. Update HIDCardPrinter.iss:
|
||||
- Find line 61
|
||||
- Update: AvailableModels[0].InfFile := 'your_actual_inf_filename.inf';
|
||||
- Replace 'your_actual_inf_filename.inf' with the actual INF filename
|
||||
|
||||
5. Build the installer with Inno Setup
|
||||
|
||||
FINDING THE INF FILE:
|
||||
--------------------
|
||||
|
||||
Look for files with .inf extension. Common names:
|
||||
- dtc4500e.inf
|
||||
- hidcard.inf
|
||||
- fargo.inf
|
||||
- hidglobal.inf
|
||||
|
||||
The INF file is the main driver installation file that Windows uses.
|
||||
|
||||
EXAMPLE DRIVER STRUCTURE:
|
||||
------------------------
|
||||
|
||||
HID_DTC4500e/
|
||||
├── dtc4500e.inf <- Main INF file (update script with this name)
|
||||
├── dtc4500e.cat <- Catalog file (signature)
|
||||
├── hidprint.sys <- System driver
|
||||
├── hidusb.dll <- USB library
|
||||
└── ... (other files)
|
||||
|
||||
After adding driver files, you can delete this instruction file.
|
||||
Reference in New Issue
Block a user