Windows – How to uninstall AMD Display Driver from other install of Windows

bootdriversgraphics carduninstallwindows 7

So my Windows 7 had a BSOD from an Ati driver file then restarting only gives me some wierd coloured lines at the top of the screen. Starting in safe mode causes the boot up to freeze at AtiPcie.sys and overlays the same coloured lines on the safe mode start up display.

It seems to be a problem with the display driver but I can't get into the OS at all to uninstall it. Luckily I have an old install of Windows 7 from when I moved to a SSD still on my HDD and that runs just fine so I'm pretty sure its a software problem (Maybe the SSD corrupted a driver file or something).

So does anyone know how I can uninstall the driver files from another Windows 7 install on the same PC?

EDIT: What I mean is, I'm running on the broken PC right now but using a different HDD's windows install. I have full access to the not booting up OS drive with the Windows so I can delete any files/load the registry etc…

Best Answer

Change the bolded area to match the drive letter of the offline copy of windows.

dism /Image:C:\test\offline /Get-Drivers /format:Table |find "Advanced Micro Devices" |find "Display"

Make note of the second column. Replace the bolded area with each of the listed .inf files from the previous command.

DISM.exe /Image:C:\test\offline /Remove-Driver /Driver:oem1.inf

Drivers are now removed.

Related Question