View Single Post
  #24 (permalink)  
Old 02-20-2007, 03:12 AM
verizonguy's Avatar
verizonguy
Regular 'Geeker
Offline
Threadstarter
Location: US
 
Join Date: Feb 2007
Posts: 487
Reputation: 47
verizonguy is becoming a great contributor
Mentioned: 0 Post(s)
Tagged: 0 Thread(s)
Quote:
Originally Posted by colonel
So, what exactly was the issue? I am very curious about this. I guess I am confused about why you had to seperate lines.
After breaking the hive down into a text file, editing it, and then running the bat file to make the hive again it complained about not being able to parse it.

The problem was any registry key that had more than one value. For example.

Code:
[HKEY_LOCAL_MACHINE\Drivers\USB\FunctionDrivers\RNDIS]
  "Manufacturer"="HTC"   "Product"="PocketPC USB Sync"
needed to be changed to

Code:
[HKEY_LOCAL_MACHINE\Drivers\USB\FunctionDrivers\RNDIS]
  "Manufacturer"="HTC"
  "Product"="PocketPC USB Sync"
Reply With Quote