I'm also using linux automation, but I have a new laptop model (EliteBootk 6930P) that works in dos only. I've updated the drivers for linux automation, but didn't have any luck. I'm running 6.9.
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.
|