Issue
Windows XP clients are not installing the drivers added to HII.
Incorrect drivers are getting installed when using HII.
Cause
Forward slashes (/) were used in the path for the drivers instead of back slashes (\).
Resolution
1. Run the following SQL statement against the HII driver database (drivers.db3) located in the directory specified for HII:
update inffiles set FilePath = replace(FilePath, '/', '\') where FilePath like '%/%'
The database is a SQLITE database. Use any tool that can run SQL statements for SQLITE such as SQLite Browser.
2. Save the changes to the database after running the SQL statement.
Note: The SQL statement will need to be run against the HII database after each time the Save button is clicked in the "HII Driver Repository Manager" window.