• Welcome to TechPowerUp Forums, Guest! Please check out our forum guidelines for info related to our community.

whats going on with core 2 quad and windows?

Aquinus

Resident Wat-man
Joined
Jan 28, 2012
Messages
13,199 (2.73/day)
Location
Concord, NH, USA
System Name Apollo
Processor Intel Core i9 9880H
Motherboard Some proprietary Apple thing.
Memory 64GB DDR4-2667
Video Card(s) AMD Radeon Pro 5600M, 8GB HBM2
Storage 1TB Apple NVMe, 2TB external SSD, 4TB external HDD for backup.
Display(s) 32" Dell UHD, 27" LG UHD, 28" LG 5k
Case MacBook Pro (16", 2019)
Audio Device(s) AirPods Pro, Sennheiser HD 380s w/ FIIO Alpen 2, or Logitech 2.1 Speakers
Power Supply Display or Thunderbolt 4 Hub
Mouse Logitech G502
Keyboard Logitech G915, GL Clicky
Software MacOS 15.3.1
ExceptionText = "ILLEGAL_INSTRUCTION"
This means that the CPU tried executing an instruction that was not supported. You'd need to do a lot of gymnastics to figure out exactly what instruction is causing it. I found a StackOverflow article regarding how to find it if you were on a Linux machine, but I don't think that helps you at all. However, the example in that article boils down to a lack of AVX support on the target machine when an AVX instruction was invoked. Perhaps something similar is happening to you, such as needing SSE4.2 when you only support 4.1 or something like that. I can't seem to find any information on what CPU instructions are required for R15.

FWIW, it may not be a R15 issue. The stack trace suggests that it's something in nVidia's drivers that might require a certain instruction that your CPU doesn't support. It appears to be failing within this DLL function.
Code:
nvoglv64.dll: 00007FFCE39499A3 DrvValidateVersion
Is it about the POPCNT instruction?
nVidia drivers do require this instruction, do they not?
https://nvidia.custhelp.com/app/ans...ort-for-older-cpus-without-popcnt-instruction
 
Last edited:
Joined
Apr 12, 2021
Messages
161 (0.11/day)
The downgrade to the last Nvidia driver was successful, and MSI Kombustor launches but closes when attempting to run any test other than the CPU burner. The Windows admin error report indicates that the application can't access a file, which may be missing or corrupted, despite it being a fresh install. Additionally, running the SFC and CHKDSK commands did not reveal any problems. Another point of interest is that in GPUZ, the OpenGL box is unchecked. When I opened Cinebench R15 with the Microsoft basic adapter, GPUZ showed only OpenGL 1.1 as checked. After installing the previous Nvidia driver with Cinebench running in the background, the OpenGL test reported that the graphics card doesn't support this feature. It seems that OpenGL is being blocked from installing, which could be the root of the issue. Any suggestions would be appreciated.
 
Joined
May 8, 2016
Messages
2,023 (0.62/day)
System Name BOX
Processor Core i7 6950X @ 4,26GHz (1,28V)
Motherboard X99 SOC Champion (BIOS F23c + bifurcation mod)
Cooling Thermalright Venomous-X + 2x Delta 38mm PWM (Push-Pull)
Memory Patriot Viper Steel 4000MHz CL16 4x8GB (@3240MHz CL12.12.12.24 CR2T @ 1,48V)
Video Card(s) Titan V (~1650MHz @ 0.77V, HBM2 1GHz, Forced P2 state [OFF])
Storage WD SN850X 2TB + Samsung EVO 2TB (SATA) + Seagate Exos X20 20TB (4Kn mode)
Display(s) LG 27GP950-B
Case Fractal Design Meshify 2 XL
Audio Device(s) Motu M4 (audio interface) + ATH-A900Z + Behringer C-1
Power Supply Seasonic X-760 (760W)
Mouse Logitech RX-250
Keyboard HP KB-9970
Software Windows 10 Pro x64
Which driver versions you tried ?
 
Joined
Apr 12, 2021
Messages
161 (0.11/day)
Which driver versions you tried ?
The machine is currently disassembled sorting out a noisy PSU fan, but I attempted to install the Microsoft-provided Nvidia drivers via Windows Update, which resulted in a BSOD. Both the latest and previous Nvidia drivers install, yet they fail to install the Vulkan and OpenGL drivers, which is the root of the problem as these applications depend on them. When I initially assembled this machine in 2018, there were no issues running these applications.
 

Attachments

  • GPU.gif
    GPU.gif
    24 KB · Views: 59
  • Screenshot (1).png
    Screenshot (1).png
    1.1 MB · Views: 56
  • IMG_20241118_122538881.jpg
    IMG_20241118_122538881.jpg
    1.5 MB · Views: 59

eidairaman1

The Exiled Airman
Joined
Jul 2, 2007
Messages
44,273 (6.80/day)
Location
Republic of Texas (True Patriot)
System Name PCGOD
Processor AMD FX 8350@ 5.0GHz
Motherboard Asus TUF 990FX Sabertooth R2 2901 Bios
Cooling Scythe Ashura, 2×BitFenix 230mm Spectre Pro LED (Blue,Green), 2x BitFenix 140mm Spectre Pro LED
Memory 16 GB Gskill Ripjaws X 2133 (2400 OC, 10-10-12-20-20, 1T, 1.65V)
Video Card(s) AMD Radeon 290 Sapphire Vapor-X
Storage Samsung 840 Pro 256GB, WD Velociraptor 1TB
Display(s) NEC Multisync LCD 1700V (Display Port Adapter)
Case AeroCool Xpredator Evil Blue Edition
Audio Device(s) Creative Labs Sound Blaster ZxR
Power Supply Seasonic 1250 XM2 Series (XP3)
Mouse Roccat Kone XTD
Keyboard Roccat Ryos MK Pro
Software Windows 7 Pro 64
The downgrade to the last Nvidia driver was successful, and MSI Kombustor launches but closes when attempting to run any test other than the CPU burner. The Windows admin error report indicates that the application can't access a file, which may be missing or corrupted, despite it being a fresh install. Additionally, running the SFC and CHKDSK commands did not reveal any problems. Another point of interest is that in GPUZ, the OpenGL box is unchecked. When I opened Cinebench R15 with the Microsoft basic adapter, GPUZ showed only OpenGL 1.1 as checked. After installing the previous Nvidia driver with Cinebench running in the background, the OpenGL test reported that the graphics card doesn't support this feature. It seems that OpenGL is being blocked from installing, which could be the root of the issue. Any suggestions would be appreciated.
Dism
 
Joined
Apr 12, 2021
Messages
161 (0.11/day)
This means that the CPU tried executing an instruction that was not supported. You'd need to do a lot of gymnastics to figure out exactly what instruction is causing it. I found a StackOverflow article regarding how to find it if you were on a Linux machine, but I don't think that helps you at all. However, the example in that article boils down to a lack of AVX support on the target machine when an AVX instruction was invoked. Perhaps something similar is happening to you, such as needing SSE4.2 when you only support 4.1 or something like that. I can't seem to find any information on what CPU instructions are required for R15.

FWIW, it may not be a R15 issue. The stack trace suggests that it's something in nVidia's drivers that might require a certain instruction that your CPU doesn't support. It appears to be failing within this DLL function.
Code:
nvoglv64.dll: 00007FFCE39499A3 DrvValidateVersion

nVidia drivers do require this instruction, do they not?
https://nvidia.custhelp.com/app/ans...ort-for-older-cpus-without-popcnt-instruction
yes, it's not loading Vulcan or OpenGL drivers i tried installing the Nvidia driver on this HDD and GPU in another X58 board and GPUZ shows them checked but when I placed them back in the OptiPlex neither were present according to GPUZ any idea what might be happening? seems like a CFG file in windows or the registry is blocking them from loading on this system as they previously worked without issue

what DISM CMD should I run?
 

Attachments

  • GPU.gif
    GPU.gif
    24 KB · Views: 46
Joined
Aug 27, 2023
Messages
302 (0.50/day)
You'd need to do a lot of gymnastics to figure out exactly what instruction is causing it.
Not really as the OP provided plenty of info in the first post attachment, although missing nvidia driver version. You know the address where the fault happened in nvidia OGL library nvoglv64.dll and the base address it was loaded so can know the offset address of the offending instruction. Already posted it was popcnt earlier.

IIRC that was supposed to be due to Microsofts compiler update compiling using popcnt instead of one of the earlier compatible functions and fixed up accordingly, at least for the main driver. Seems though the OGL department didn't get the memo. IMO needs to be taken up with nvidia or find an earlier driver that doesn't use popcnt.
 
Joined
May 8, 2016
Messages
2,023 (0.62/day)
System Name BOX
Processor Core i7 6950X @ 4,26GHz (1,28V)
Motherboard X99 SOC Champion (BIOS F23c + bifurcation mod)
Cooling Thermalright Venomous-X + 2x Delta 38mm PWM (Push-Pull)
Memory Patriot Viper Steel 4000MHz CL16 4x8GB (@3240MHz CL12.12.12.24 CR2T @ 1,48V)
Video Card(s) Titan V (~1650MHz @ 0.77V, HBM2 1GHz, Forced P2 state [OFF])
Storage WD SN850X 2TB + Samsung EVO 2TB (SATA) + Seagate Exos X20 20TB (4Kn mode)
Display(s) LG 27GP950-B
Case Fractal Design Meshify 2 XL
Audio Device(s) Motu M4 (audio interface) + ATH-A900Z + Behringer C-1
Power Supply Seasonic X-760 (760W)
Mouse Logitech RX-250
Keyboard HP KB-9970
Software Windows 10 Pro x64
The machine is currently disassembled sorting out a noisy PSU fan, but I attempted to install the Microsoft-provided Nvidia drivers via Windows Update, which resulted in a BSOD. Both the latest and previous Nvidia drivers install, yet they fail to install the Vulkan and OpenGL drivers, which is the root of the problem as these applications depend on them. When I initially assembled this machine in 2018, there were no issues running these applications.
Actually... this looks somewhat like a "dead" GPU to me (failed memory/GPU chip pad issue).
Could you put it in another PC and check (just to be sure it works) ?
 
Joined
Apr 12, 2021
Messages
161 (0.11/day)
Actually... this looks somewhat like a "dead" GPU to me (failed memory/GPU chip pad issue).
Could you put it in another PC and check (just to be sure it works) ?
GPU is good tried it in my X58 machine Vulcan and OpenGL lode up fine I even used the SSD windows install from the OptiPlex as is in the X58 machine to try and get it to save the install but once I returned it into the OptiPlex problem persists it won't load OpenGL or Vulcan API's
 

Frick

Fishfaced Nincompoop
Joined
Feb 27, 2006
Messages
20,047 (2.86/day)
Location
norr
System Name Black MC in Tokyo
Processor Ryzen 5 7600
Motherboard MSI X670E Gaming Plus Wifi
Cooling Be Quiet! Pure Rock 2
Memory 2 x 16GB Corsair Vengeance @ 6000Mhz
Video Card(s) XFX 6950XT Speedster MERC 319
Storage Kingston KC3000 1TB | WD Black SN750 2TB |WD Blue 1TB x 2 | Toshiba P300 2TB | Seagate Expansion 8TB
Display(s) Samsung U32J590U 4K + BenQ GL2450HT 1080p
Case Fractal Design Define R4
Audio Device(s) Plantronics 5220, Nektar SE61 keyboard
Power Supply Corsair RM850x v3
Mouse Logitech G602
Keyboard Dell SK3205
Software Windows 10 Pro
Benchmark Scores Rimworld 4K ready!
Did you test drivers from 2018?
 
Joined
Apr 12, 2021
Messages
161 (0.11/day)
Ok so I actually had the original windows 10 64 1803 burnt to cd from back when I built this machine for my nephew I downloaded the oldest Nvidia driver I could get from there website and what do you know I open GPUZ and there it is Vulcan Physics and OpenGL 4.6 all present this driver would crash on the latest version of 10 from Micro#uket and this was no easy process but I think we're making some headway now time to see if windows update tries to break it again fingers crossed
 

Attachments

  • gpuz.gif
    gpuz.gif
    23.6 KB · Views: 45
Last edited:

Frick

Fishfaced Nincompoop
Joined
Feb 27, 2006
Messages
20,047 (2.86/day)
Location
norr
System Name Black MC in Tokyo
Processor Ryzen 5 7600
Motherboard MSI X670E Gaming Plus Wifi
Cooling Be Quiet! Pure Rock 2
Memory 2 x 16GB Corsair Vengeance @ 6000Mhz
Video Card(s) XFX 6950XT Speedster MERC 319
Storage Kingston KC3000 1TB | WD Black SN750 2TB |WD Blue 1TB x 2 | Toshiba P300 2TB | Seagate Expansion 8TB
Display(s) Samsung U32J590U 4K + BenQ GL2450HT 1080p
Case Fractal Design Define R4
Audio Device(s) Plantronics 5220, Nektar SE61 keyboard
Power Supply Corsair RM850x v3
Mouse Logitech G602
Keyboard Dell SK3205
Software Windows 10 Pro
Benchmark Scores Rimworld 4K ready!
Ok so I actually had the original windows 10 64 1803 burnt to cd from back when I built this machine for my nephew I downloaded the oldest Nvidia driver I could get from there website and what do you know I open GPUZ and there it is Vulcan Physics and OpenGL 4.6 all present this driver would crash on the latest version of 10 from Micro#uket and this was no easy process but I think we're making some headroom now time to see if windows update tries to break it again fingers crossed

Did you try new Windows with old driver?
 
Joined
Apr 12, 2021
Messages
161 (0.11/day)
Did you try new Windows with old driver?
Yes, I utilized DDU and then attempted to install driver 466.11 on an updated Windows 10 but I encountered a BSOD. runs fine on windows 10 1802 fully updated I had to use show hide updates troubleshooter to keep windows from updating to the latest Nvidia driver as well as windows 10 22H2
 
Last edited:

Aquinus

Resident Wat-man
Joined
Jan 28, 2012
Messages
13,199 (2.73/day)
Location
Concord, NH, USA
System Name Apollo
Processor Intel Core i9 9880H
Motherboard Some proprietary Apple thing.
Memory 64GB DDR4-2667
Video Card(s) AMD Radeon Pro 5600M, 8GB HBM2
Storage 1TB Apple NVMe, 2TB external SSD, 4TB external HDD for backup.
Display(s) 32" Dell UHD, 27" LG UHD, 28" LG 5k
Case MacBook Pro (16", 2019)
Audio Device(s) AirPods Pro, Sennheiser HD 380s w/ FIIO Alpen 2, or Logitech 2.1 Speakers
Power Supply Display or Thunderbolt 4 Hub
Mouse Logitech G502
Keyboard Logitech G915, GL Clicky
Software MacOS 15.3.1
Yes, I utilized DDU and then attempted to install driver 466.11 on an updated Windows 10 but I encountered a BSOD.
What's the exception in the BSOD? Is it the same illegal instruction exception?
 
Joined
Apr 12, 2021
Messages
161 (0.11/day)
What's the exception in the BSOD? Is it the same illegal instruction exception?
Yes, it was. After rolling back to the older Windows 10 version 1802 and hiding the Windows Nvidia driver update, I'm now on the current Windows 10 version and can update drivers without experiencing BSOD. So far, I have tested three of the latest Nvidia drivers, and they all cause issues with OpenGL. However, the latest driver that works without issues is 546.33 from 2023. I am still going through the list, saving the working drivers, and deleting the broken ones from the device manager.
 

Attachments

  • Screenshot (1).png
    Screenshot (1).png
    917.9 KB · Views: 46

freeagent

Moderator
Staff member
Joined
Sep 16, 2018
Messages
10,368 (4.29/day)
Location
Winnipeg, Canada
System Name Step_sis Rodeo
Processor AMD R9 9900X @ booost
Motherboard Asus Strix X670E-F
Cooling Thermalright Frost Commander 140, TY-143. T30
Memory 2x 16GB Lexar Ares @ 6200 28-36-36-68 1.45v
Video Card(s) Zotac 4070 Ti Trinity OC @ 3045/1500
Storage WD SN850 1TB, SN850X 2TB, 2x SN770 1TB
Display(s) LG 50UP7100
Case Asus ProArt PA602
Audio Device(s) JBL Bar 700
Power Supply Seasonic Vertex GX-1000, Monster HDP1800
Mouse Logitech G502 Hero
Keyboard Logitech G213
VR HMD Oculus 3
Software Yes
Benchmark Scores Yes
For my GTX 580 to work properly with its software, I need to scoot all the way back to the 300 series drivers, from like 2008 or 2009. Its a pita, I feel ya.
 
Joined
Apr 12, 2021
Messages
161 (0.11/day)
For my GTX 580 to work properly with its software, I need to scoot all the way back to the 300 series drivers, from like 2008 or 2009. Its a pita, I feel ya.
Well found another blue screen driver I'm creating files good bad and blue screen once I find all the good ones I'll do performance tests on those to see which one performs the best before upgrading to Windows 11 23H2 which I will first test those drivers on my laptops hard drive by swapping it into the Optiplex
 
Joined
Aug 20, 2007
Messages
22,161 (3.43/day)
Location
Olympia, WA
System Name Pioneer
Processor Ryzen 9 9950X
Motherboard MSI MAG X670E Tomahawk Wifi
Cooling Noctua NH-D15 + A whole lotta Sunon, Phanteks and Corsair Maglev blower fans...
Memory 128GB (4x 32GB) G.Skill Flare X5 @ DDR5-4000(Running 1:1:1 w/FCLK)
Video Card(s) XFX RX 7900 XTX Speedster Merc 310
Storage Intel 5800X Optane 800GB boot, +2x Crucial P5 Plus 2TB PCIe 4.0 NVMe SSDs, 1x 2TB Seagate Exos 3.5"
Display(s) 55" LG 55" B9 OLED 4K Display
Case Thermaltake Core X31
Audio Device(s) TOSLINK->Schiit Modi MB->Asgard 2 DAC Amp->AKG Pro K712 Headphones or HDMI->B9 OLED
Power Supply FSP Hydro Ti Pro 850W
Mouse Logitech G305 Lightspeed Wireless
Keyboard WASD Code v3 with Cherry Green keyswitches + PBT DS keycaps
Software Gentoo Linux x64, other office machines run Windows 11 Enterprise
Joined
Apr 12, 2021
Messages
161 (0.11/day)
Well found another blue screen driver I'm creating files good bad and blue screen once I find all the good ones I'll do performance tests on those to see which one performs the best before upgrading to Windows 11 23H2 which I will first test those drivers on my laptops hard drive by swapping it into the Optiplex
Yep that's the problem but the latest driver though it doesn't boot loop crash the system it also fails to load OpenGL and Vulcan it's partially Microsoft as they push graphics driver updates and have removed the ability to block updates through their UI you have to sidestep it and download Windows show hide which is what I did to block the update
 
Last edited:
Joined
Apr 12, 2021
Messages
161 (0.11/day)
Thank you, R-T-B, for finding this article; it has saved me a considerable amount of time sifting through drivers. I can confirm that the latest working driver is from before this ver. Driver 552.44 is the most recent update without any problems and has provided me with the highest score on the FurMark ROG edition, achieving a 1942 in the OpenGL test. I've saved all previous drivers to a USB and am in the process of creating a list of drivers that operate flawlessly. For troubleshooting, I installed my GTX750TI, but for the final build, I will be installing the GTX1050TI as it has the capability to undervolt using the curve optimizer in MSI Afterburner. As a side note, I recall reading that the GTX750TI wouldn't be compatible with Dell SFF boards due to the 35W power limitation of the PCIe slot. However, MSI Afterburner reports 45W, even when fully overclocked. My nephew has used this machine for years with the more power-hungry GTX1050TI for playing Fortnite, and there are no signs of wear on either the PSU or motherboard. This durability I attribute to the 280W OptiPlex 755 PSU, the switch from HDD to SSD, the lower TDP Xeon E5450 CPU, and the modification of the cooling flow to exit out the front rather than over the motherboard and through the PSU.

Good info. I was under the(mistaken) impression that POPCNT was a function set for the OS. My mistake.
There is definitely something going on with clean install of the latest windows 10 in respect to CPU's lacking SSE4.2 as I tried the oldest driver and the next one up both of which work fine now but would boot loop crash the machine on a clean install of Windows and Nvidia driver in this case only the latest driver worked but without OpenGL Which is still the case with the latest drivers but now after upgrading from Windows 10 1802 throw my suspicion upgrading from any version earlier than 22H2 would have netted the same result some carryover INF file or something that allows it to work properly this is my theory take it with a grain of salt as I have no proof and have gone from skeptic into conspiracy theroriest as of recent events but I believe Microsoft and OEM's like intel Dell HP and the like have conspired to cause older overly reliable and secure system like this Optiplex to be obsolete in there efforts to collect and harvest our data as well as capitalize on selling new hardware, systems along with personal and META data
 
Last edited:
Joined
Apr 12, 2021
Messages
161 (0.11/day)
I would like to thank everyone for their helpful responses. The machine is now functioning smoothly. I intend to keep it on Windows 10 until the end of support, after which I'll learn to operate a virtual machine to run Windows XP and Windows 7. Alternatively, I may configure it to dual boot, which will allow me to play some old CD games and use my extensive MAME arcade machine emulator collection that doesn't work on my current Ryzen machine. It will also be used to run TURBO V for my X58 machines. For those experiencing similar issues, the latest Nvidia driver version that operates without any problems is 552.44. I also tested it with windows 11 23H2 works great as well
 

Attachments

  • Screenshot (1).png
    Screenshot (1).png
    917.9 KB · Views: 39
  • Screenshot (14).png
    Screenshot (14).png
    262.6 KB · Views: 37
Last edited:
Joined
May 8, 2016
Messages
2,023 (0.62/day)
System Name BOX
Processor Core i7 6950X @ 4,26GHz (1,28V)
Motherboard X99 SOC Champion (BIOS F23c + bifurcation mod)
Cooling Thermalright Venomous-X + 2x Delta 38mm PWM (Push-Pull)
Memory Patriot Viper Steel 4000MHz CL16 4x8GB (@3240MHz CL12.12.12.24 CR2T @ 1,48V)
Video Card(s) Titan V (~1650MHz @ 0.77V, HBM2 1GHz, Forced P2 state [OFF])
Storage WD SN850X 2TB + Samsung EVO 2TB (SATA) + Seagate Exos X20 20TB (4Kn mode)
Display(s) LG 27GP950-B
Case Fractal Design Meshify 2 XL
Audio Device(s) Motu M4 (audio interface) + ATH-A900Z + Behringer C-1
Power Supply Seasonic X-760 (760W)
Mouse Logitech RX-250
Keyboard HP KB-9970
Software Windows 10 Pro x64
Some older driver information I gathered :

340.xx (last decent XP driver),
391.35 (last Fermi driver)
431.36 (last non-nerfed Vulkan speed on Kepler [API Overhead test, VK v1.0.99]),
476.xx (last Win7 driver, and last non-DCH version [DCH = supports Windows 10/11 M$ UWP thing and requires Microsoft Store]).
552.44 Last non-POPCNT required driver for Windows 10/11 (edited)
 
Joined
Oct 17, 2021
Messages
154 (0.12/day)
System Name Nirn
Processor Amd Ryzen 7950X3D
Motherboard MSI MEG ACE X670e
Cooling Noctua NH-D15
Memory 128 GB Kingston DDR5 6000 (running at 4000)
Video Card(s) Radeon RX 7900XTX (24G) + Geforce 4070ti (12G) Physx
Storage SAMSUNG 990 EVO SSD 2TB Gen 5 x2 (OS)+SAMSUNG 980 SSD 1TB PCle 3.0x4 (Primocache) +2X 22TB WD Gold
Display(s) Samsung UN55NU8000 (Freesync)
Case Corsair Graphite Series 780T White
Audio Device(s) Creative Soundblaster AE-7 + Sennheiser GSP600
Power Supply Seasonic PRIME TX-1000 Titanium
Mouse Razer Mamba Elite Wired
Keyboard Razer BlackWidow Chroma v1
VR HMD Oculus Quest 2
Software Windows 10
could always try running it through the intel SDE

ive used that on my phenom ii x6 rig to run newer games back in the day. its basically an instruction set emulator that will emulate the missing instructions in software.
 
Joined
Dec 25, 2020
Messages
8,279 (5.23/day)
Location
São Paulo, Brazil
Processor 13th Gen Intel Core i9-13900KS
Motherboard ASUS ROG Maximus Z790 Apex Encore
Cooling Pichau Lunara ARGB 360 + Honeywell PTM7950
Memory 32 GB G.Skill Trident Z5 RGB @ 7600 MT/s
Video Card(s) Palit GameRock GeForce RTX 5090 32 GB
Storage 500 GB WD Black SN750 + 4x 300 GB WD VelociRaptor WD3000HLFS HDDs
Display(s) 55-inch LG G3 OLED
Case Cooler Master MasterFrame 700 benchtable
Power Supply EVGA 1300 G2 1.3kW 80+ Gold
Mouse Microsoft Classic IntelliMouse
Keyboard IBM Model M type 1391405
Software Windows 10 Pro 22H2
For my GTX 580 to work properly with its software, I need to scoot all the way back to the 300 series drivers, from like 2008 or 2009. Its a pita, I feel ya.

391.35 is from 2018, lol
 
Top