ElPumpo / TinyNvidiaUpdateChecker

Open sourced tool for keeping NVIDIA GPUs updated, featuring fully customizable driver installs for complete control, multi-GPU support, and more!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GeForce RTX 2070 SUPER GPU metadata not existing

Mettkrieger opened this issue · comments

Hey, upon exectuting TinyNvidiaUpdateChecker.v1.15.2.exe --force-dl I get an error message that the GPU metadata does not exist.

Retrieving GPU information
ERROR!
GPU metadata for your card does not exist! Please file an issue on GitHub and include the following information:
gpuName: GeForce RTX 2070 SUPER
isNotebook: False

Some additional information: It's a EVGA 2070 Super FTW3

Recent update should have fixed the issue with Super GPUs... Seems like some GPUs report as "SUPER" and others as "Super".

Does running Get-CimInstance Win32_VideoController | Select-Object Name in PowerShell output exactly "NVIDIA GeForce RTX 2070 SUPER"?

Might need to add replace code for "SUPER" to "Super" @ElPumpo, basically the reverse of what was there before.

Output is: NVIDIA GeForce RTX 2070 SUPER

Okay, that's interesting as many users' cards used "Super", so I guess this confirms cards aren't named consistently. I've updated the data repository to fix this temporarily right away and the next version of TinyNvidiaUpdateChecker should fix this permanently.

@ElPumpo I actually think we should just add back the same replace code I removed in b271866 so that we wouldn't need to have a replace on both repositories. Sorry for the inconvenience.

Okay your call boss. Will your repo have SUPER in uppercase for all GPUs?

Yes it should always be uppercase now, so just replace "Super" with "SUPER" again as it was before.

Okay issue is fixed for now, and a perm fix next TNUC update. The nvidia-data repo is also adressed. Thanks for letting us know when it doesn't work @Mettkrieger