FYI:
I just renamed the file to the short name in the inf file and it worked.
Quote:
Originally Posted by Brandon
I don't think editing the inf worked but I can't remember. Either way if it isn't a crucial driver, just call a vbscript to rename it once Windows loads up. After a reboot or two it will auto install with the new hardware wizard:
Code:
'fix for rp5700 dislpay driver
Dim oFSO
set oFSO = CreateObject("Scripting.FileSystemObject")
If oFSO.FileExists("c:\drivers\video\igmedc~1.dll") Then
oFSO.moveFile "c:\drivers\video\igmedc~1.dll", "c:\drivers\video\igmedcompkrn.dll"
End If
set oFSO = nothing
In the end, I did switch to Linux as my pre-boot environment.
|