diff --git a/nspector/Common/DrsSettingsService.cs b/nspector/Common/DrsSettingsService.cs index a84515e..29486b1 100644 --- a/nspector/Common/DrsSettingsService.cs +++ b/nspector/Common/DrsSettingsService.cs @@ -51,6 +51,11 @@ namespace nspector.Common return fiDbInstaller.DirectoryName; } + string sys32Path = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.System), @"drivers\NVIDIA Corporation\Drs\dbInstaller.exe"); + + if (File.Exists(sys32Path)) + return sys32Path; + return Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ProgramFiles), @"NVIDIA Corporation\Drs"); }