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"