├── .gitattributes ├── .gitconfig ├── .gitignore ├── AutoBuild.bat ├── LICENSE ├── NVidiaProfileInspectorDmW.sln ├── NVidiaProfileInspectorDmWPortable ├── App │ └── AppInfo │ │ ├── Launcher │ │ ├── NVidiaProfileInspectorDmWPortable.ini │ │ └── Splash.jpg │ │ ├── appicon.ico │ │ └── appinfo.ini ├── Data │ └── settings │ │ └── NVidiaProfileInspectorDmWPortableSettings.ini ├── NVidiaProfileInspectorDmWPortable.exe └── Other │ └── Source │ ├── PortableApps.comInstaller.bmp │ ├── PortableApps.comInstaller.ico │ ├── PortableApps.comInstaller.nsi │ ├── PortableApps.comInstallerConfig.nsh │ ├── PortableApps.comInstallerDriveFreeSpaceCustom.nsh │ ├── PortableApps.comInstallerDumpLogToFile.nsh │ ├── PortableApps.comInstallerLanguages │ ├── Afrikaans.nsh │ ├── Albanian.nsh │ ├── Arabic.nsh │ ├── Armenian.nsh │ ├── Asturian.nsh │ ├── Basque.nsh │ ├── Belarusian.nsh │ ├── Bosnian.nsh │ ├── Breton.nsh │ ├── Bulgarian.nsh │ ├── Catalan.nsh │ ├── Cibemba.nsh │ ├── Croatian.nsh │ ├── Czech.nsh │ ├── Danish.nsh │ ├── Dutch.nsh │ ├── Efik.nsh │ ├── English.nsh │ ├── EnglishGB.nsh │ ├── Esperanto.nsh │ ├── Estonian.nsh │ ├── Farsi.nsh │ ├── Finnish.nsh │ ├── French.nsh │ ├── Galician.nsh │ ├── Georgian.nsh │ ├── German.nsh │ ├── Greek.nsh │ ├── Hebrew.nsh │ ├── Hindi.nsh │ ├── Hungarian.nsh │ ├── Icelandic.nsh │ ├── Igbo.nsh │ ├── Indonesian.nsh │ ├── Irish.nsh │ ├── Italian.nsh │ ├── Japanese.nsh │ ├── Khmer.nsh │ ├── Korean.nsh │ ├── Kurdish.nsh │ ├── Latvian.nsh │ ├── Lithuanian.nsh │ ├── Luxembourgish.nsh │ ├── Macedonian.nsh │ ├── Malagasy.nsh │ ├── Malay.nsh │ ├── Mongolian.nsh │ ├── Norwegian.nsh │ ├── NorwegianNynorsk.nsh │ ├── Pashto.nsh │ ├── Polish.nsh │ ├── Portuguese.nsh │ ├── PortugueseBR.nsh │ ├── Romanian.nsh │ ├── Russian.nsh │ ├── Serbian.nsh │ ├── SerbianLatin.nsh │ ├── SimpChinese.nsh │ ├── Slovak.nsh │ ├── Slovenian.nsh │ ├── Spanish.nsh │ ├── SpanishInternational.nsh │ ├── Swahili.nsh │ ├── Swedish.nsh │ ├── Thai.nsh │ ├── TradChinese.nsh │ ├── Turkish.nsh │ ├── Ukrainian.nsh │ ├── Uzbek.nsh │ ├── Valencian.nsh │ ├── Vietnamese.nsh │ ├── Welsh.nsh │ └── Yoruba.nsh │ ├── PortableApps.comInstallerMoveFiles.nsh │ └── PortableApps.comInstallerTBProgress.nsh ├── README.md ├── nspector ├── Common │ ├── Cache │ │ ├── CachedSettingValue.cs │ │ └── CachedSettings.cs │ ├── CustomSettings │ │ ├── CustomSetting.cs │ │ ├── CustomSettingNames.cs │ │ └── CustomSettingValue.cs │ ├── DrsDecrypterService.cs │ ├── DrsImportService.cs │ ├── DrsScannerService.cs │ ├── DrsServiceLocator.cs │ ├── DrsSessionScope.cs │ ├── DrsSettingsMetaService.cs │ ├── DrsSettingsService.cs │ ├── DrsSettingsServiceBase.cs │ ├── DrsUtil.cs │ ├── Helper │ │ ├── AdminHelper.cs │ │ ├── InputBox.cs │ │ ├── ListSort.cs │ │ ├── ListViewGroupSorter.cs │ │ ├── NoBorderRenderer.cs │ │ ├── ShortcutResolver.cs │ │ ├── SteamAppResolver.cs │ │ └── XMLHelper.cs │ ├── Import │ │ ├── ImportExportUitl.cs │ │ ├── Profile.cs │ │ ├── ProfileSetting.cs │ │ ├── Profiles.cs │ │ └── SettingValueType.cs │ ├── Meta │ │ ├── ConstantSettingMetaService.cs │ │ ├── CustomSettingMetaService.cs │ │ ├── DriverSettingMetaService.cs │ │ ├── ISettingMetaService.cs │ │ ├── MetaServiceItem.cs │ │ ├── NvD3dUmxSettingMetaService.cs │ │ ├── ScannedSettingMetaService.cs │ │ ├── SettingMeta.cs │ │ ├── SettingMetaSource.cs │ │ └── SettingValue.cs │ ├── NvapiException.cs │ ├── SettingItem.cs │ └── SettingViewMode.cs ├── CustomSettingNames.xml ├── Images │ ├── 0_gear2.png │ ├── 1_gear2_2.png │ ├── 4_gear_nv2.png │ ├── 6_gear_inherit.png │ ├── Nvidia.ico │ ├── PortableDeviceStatus_3_16-011.png │ ├── apply.png │ ├── export1.png │ ├── filter_user.png │ ├── find_set2.png │ ├── home_sm.png │ ├── ieframe_1_18212.png │ ├── ieframe_1_31073-002.png │ ├── import1.png │ ├── n1-016.png │ ├── nv_btn.png │ ├── shield.png │ ├── shield16.ico │ ├── text_binary.png │ ├── transparent16.png │ ├── window_application_add.png │ └── window_application_delete.png ├── ListViewEx.cs ├── NVidiaProfileInspectorDmW.csproj ├── Native │ ├── NVAPI │ │ ├── NvApiDriverSettings.cs │ │ ├── NvApiDriverSettings.h │ │ ├── NvApiDriverSettings.tt │ │ └── NvapiDrsWrapper.cs │ ├── NativeArrayHelper.cs │ └── WINAPI │ │ ├── DragAcceptNativeHelper.cs │ │ ├── MessageHelper.cs │ │ ├── SafeNativeMethods.cs │ │ ├── ShellLink.cs │ │ └── TaskBarList3.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Reference.xml ├── app.config ├── app.manifest ├── dmw.cs ├── frmBitEditor.Designer.cs ├── frmBitEditor.cs ├── frmBitEditor.resx ├── frmDrvSettings.Designer.cs ├── frmDrvSettings.cs ├── frmDrvSettings.resx ├── frmExportProfiles.Designer.cs ├── frmExportProfiles.cs ├── frmExportProfiles.resx └── packages.config ├── packages ├── AutoClosingMessageBox.1.0.0.2 │ ├── AutoClosingMessageBox.1.0.0.2.nupkg │ └── lib │ │ └── net40 │ │ └── AutoClosingMessageBox.dll └── DmWPackages │ └── DeadManWalkingTO-Github └── version /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/.gitconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/.gitignore -------------------------------------------------------------------------------- /AutoBuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/AutoBuild.bat -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/LICENSE -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmW.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmW.sln -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/App/AppInfo/Launcher/NVidiaProfileInspectorDmWPortable.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/App/AppInfo/Launcher/NVidiaProfileInspectorDmWPortable.ini -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/App/AppInfo/Launcher/Splash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/App/AppInfo/Launcher/Splash.jpg -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/App/AppInfo/appicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/App/AppInfo/appicon.ico -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/App/AppInfo/appinfo.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/App/AppInfo/appinfo.ini -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Data/settings/NVidiaProfileInspectorDmWPortableSettings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Data/settings/NVidiaProfileInspectorDmWPortableSettings.ini -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/NVidiaProfileInspectorDmWPortable.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/NVidiaProfileInspectorDmWPortable.exe -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstaller.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstaller.bmp -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstaller.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstaller.ico -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstaller.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstaller.nsi -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerConfig.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerConfig.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerDriveFreeSpaceCustom.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerDriveFreeSpaceCustom.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerDumpLogToFile.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerDumpLogToFile.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Afrikaans.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Afrikaans.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Albanian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Albanian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Arabic.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Arabic.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Armenian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Armenian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Asturian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Asturian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Basque.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Basque.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Belarusian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Belarusian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Bosnian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Bosnian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Breton.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Breton.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Bulgarian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Bulgarian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Catalan.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Catalan.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Cibemba.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Cibemba.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Croatian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Croatian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Czech.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Czech.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Danish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Danish.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Dutch.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Dutch.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Efik.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Efik.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/English.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/English.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/EnglishGB.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/EnglishGB.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Esperanto.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Esperanto.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Estonian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Estonian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Farsi.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Farsi.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Finnish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Finnish.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/French.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/French.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Galician.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Galician.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Georgian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Georgian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/German.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/German.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Greek.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Greek.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Hebrew.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Hebrew.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Hindi.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Hindi.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Hungarian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Hungarian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Icelandic.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Icelandic.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Igbo.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Igbo.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Indonesian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Indonesian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Irish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Irish.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Italian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Italian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Japanese.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Japanese.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Khmer.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Khmer.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Korean.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Korean.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Kurdish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Kurdish.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Latvian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Latvian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Lithuanian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Lithuanian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Luxembourgish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Luxembourgish.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Macedonian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Macedonian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Malagasy.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Malagasy.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Malay.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Malay.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Mongolian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Mongolian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Norwegian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Norwegian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/NorwegianNynorsk.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/NorwegianNynorsk.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Pashto.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Pashto.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Polish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Polish.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Portuguese.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Portuguese.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/PortugueseBR.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/PortugueseBR.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Romanian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Romanian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Russian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Russian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Serbian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Serbian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/SerbianLatin.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/SerbianLatin.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/SimpChinese.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/SimpChinese.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Slovak.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Slovak.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Slovenian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Slovenian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Spanish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Spanish.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/SpanishInternational.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/SpanishInternational.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Swahili.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Swahili.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Swedish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Swedish.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Thai.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Thai.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/TradChinese.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/TradChinese.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Turkish.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Turkish.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Ukrainian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Ukrainian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Uzbek.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Uzbek.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Valencian.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Valencian.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Vietnamese.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Vietnamese.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Welsh.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Welsh.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Yoruba.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerLanguages/Yoruba.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerMoveFiles.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerMoveFiles.nsh -------------------------------------------------------------------------------- /NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerTBProgress.nsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/NVidiaProfileInspectorDmWPortable/Other/Source/PortableApps.comInstallerTBProgress.nsh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/README.md -------------------------------------------------------------------------------- /nspector/Common/Cache/CachedSettingValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Cache/CachedSettingValue.cs -------------------------------------------------------------------------------- /nspector/Common/Cache/CachedSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Cache/CachedSettings.cs -------------------------------------------------------------------------------- /nspector/Common/CustomSettings/CustomSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/CustomSettings/CustomSetting.cs -------------------------------------------------------------------------------- /nspector/Common/CustomSettings/CustomSettingNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/CustomSettings/CustomSettingNames.cs -------------------------------------------------------------------------------- /nspector/Common/CustomSettings/CustomSettingValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/CustomSettings/CustomSettingValue.cs -------------------------------------------------------------------------------- /nspector/Common/DrsDecrypterService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/DrsDecrypterService.cs -------------------------------------------------------------------------------- /nspector/Common/DrsImportService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/DrsImportService.cs -------------------------------------------------------------------------------- /nspector/Common/DrsScannerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/DrsScannerService.cs -------------------------------------------------------------------------------- /nspector/Common/DrsServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/DrsServiceLocator.cs -------------------------------------------------------------------------------- /nspector/Common/DrsSessionScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/DrsSessionScope.cs -------------------------------------------------------------------------------- /nspector/Common/DrsSettingsMetaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/DrsSettingsMetaService.cs -------------------------------------------------------------------------------- /nspector/Common/DrsSettingsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/DrsSettingsService.cs -------------------------------------------------------------------------------- /nspector/Common/DrsSettingsServiceBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/DrsSettingsServiceBase.cs -------------------------------------------------------------------------------- /nspector/Common/DrsUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/DrsUtil.cs -------------------------------------------------------------------------------- /nspector/Common/Helper/AdminHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Helper/AdminHelper.cs -------------------------------------------------------------------------------- /nspector/Common/Helper/InputBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Helper/InputBox.cs -------------------------------------------------------------------------------- /nspector/Common/Helper/ListSort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Helper/ListSort.cs -------------------------------------------------------------------------------- /nspector/Common/Helper/ListViewGroupSorter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Helper/ListViewGroupSorter.cs -------------------------------------------------------------------------------- /nspector/Common/Helper/NoBorderRenderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Helper/NoBorderRenderer.cs -------------------------------------------------------------------------------- /nspector/Common/Helper/ShortcutResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Helper/ShortcutResolver.cs -------------------------------------------------------------------------------- /nspector/Common/Helper/SteamAppResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Helper/SteamAppResolver.cs -------------------------------------------------------------------------------- /nspector/Common/Helper/XMLHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Helper/XMLHelper.cs -------------------------------------------------------------------------------- /nspector/Common/Import/ImportExportUitl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Import/ImportExportUitl.cs -------------------------------------------------------------------------------- /nspector/Common/Import/Profile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Import/Profile.cs -------------------------------------------------------------------------------- /nspector/Common/Import/ProfileSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Import/ProfileSetting.cs -------------------------------------------------------------------------------- /nspector/Common/Import/Profiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Import/Profiles.cs -------------------------------------------------------------------------------- /nspector/Common/Import/SettingValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Import/SettingValueType.cs -------------------------------------------------------------------------------- /nspector/Common/Meta/ConstantSettingMetaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Meta/ConstantSettingMetaService.cs -------------------------------------------------------------------------------- /nspector/Common/Meta/CustomSettingMetaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Meta/CustomSettingMetaService.cs -------------------------------------------------------------------------------- /nspector/Common/Meta/DriverSettingMetaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Meta/DriverSettingMetaService.cs -------------------------------------------------------------------------------- /nspector/Common/Meta/ISettingMetaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Meta/ISettingMetaService.cs -------------------------------------------------------------------------------- /nspector/Common/Meta/MetaServiceItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Meta/MetaServiceItem.cs -------------------------------------------------------------------------------- /nspector/Common/Meta/NvD3dUmxSettingMetaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Meta/NvD3dUmxSettingMetaService.cs -------------------------------------------------------------------------------- /nspector/Common/Meta/ScannedSettingMetaService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Meta/ScannedSettingMetaService.cs -------------------------------------------------------------------------------- /nspector/Common/Meta/SettingMeta.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Meta/SettingMeta.cs -------------------------------------------------------------------------------- /nspector/Common/Meta/SettingMetaSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Meta/SettingMetaSource.cs -------------------------------------------------------------------------------- /nspector/Common/Meta/SettingValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/Meta/SettingValue.cs -------------------------------------------------------------------------------- /nspector/Common/NvapiException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/NvapiException.cs -------------------------------------------------------------------------------- /nspector/Common/SettingItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/SettingItem.cs -------------------------------------------------------------------------------- /nspector/Common/SettingViewMode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Common/SettingViewMode.cs -------------------------------------------------------------------------------- /nspector/CustomSettingNames.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/CustomSettingNames.xml -------------------------------------------------------------------------------- /nspector/Images/0_gear2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/0_gear2.png -------------------------------------------------------------------------------- /nspector/Images/1_gear2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/1_gear2_2.png -------------------------------------------------------------------------------- /nspector/Images/4_gear_nv2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/4_gear_nv2.png -------------------------------------------------------------------------------- /nspector/Images/6_gear_inherit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/6_gear_inherit.png -------------------------------------------------------------------------------- /nspector/Images/Nvidia.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/Nvidia.ico -------------------------------------------------------------------------------- /nspector/Images/PortableDeviceStatus_3_16-011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/PortableDeviceStatus_3_16-011.png -------------------------------------------------------------------------------- /nspector/Images/apply.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/apply.png -------------------------------------------------------------------------------- /nspector/Images/export1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/export1.png -------------------------------------------------------------------------------- /nspector/Images/filter_user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/filter_user.png -------------------------------------------------------------------------------- /nspector/Images/find_set2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/find_set2.png -------------------------------------------------------------------------------- /nspector/Images/home_sm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/home_sm.png -------------------------------------------------------------------------------- /nspector/Images/ieframe_1_18212.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/ieframe_1_18212.png -------------------------------------------------------------------------------- /nspector/Images/ieframe_1_31073-002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/ieframe_1_31073-002.png -------------------------------------------------------------------------------- /nspector/Images/import1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/import1.png -------------------------------------------------------------------------------- /nspector/Images/n1-016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/n1-016.png -------------------------------------------------------------------------------- /nspector/Images/nv_btn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/nv_btn.png -------------------------------------------------------------------------------- /nspector/Images/shield.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/shield.png -------------------------------------------------------------------------------- /nspector/Images/shield16.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/shield16.ico -------------------------------------------------------------------------------- /nspector/Images/text_binary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/text_binary.png -------------------------------------------------------------------------------- /nspector/Images/transparent16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/transparent16.png -------------------------------------------------------------------------------- /nspector/Images/window_application_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/window_application_add.png -------------------------------------------------------------------------------- /nspector/Images/window_application_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Images/window_application_delete.png -------------------------------------------------------------------------------- /nspector/ListViewEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/ListViewEx.cs -------------------------------------------------------------------------------- /nspector/NVidiaProfileInspectorDmW.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/NVidiaProfileInspectorDmW.csproj -------------------------------------------------------------------------------- /nspector/Native/NVAPI/NvApiDriverSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Native/NVAPI/NvApiDriverSettings.cs -------------------------------------------------------------------------------- /nspector/Native/NVAPI/NvApiDriverSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Native/NVAPI/NvApiDriverSettings.h -------------------------------------------------------------------------------- /nspector/Native/NVAPI/NvApiDriverSettings.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Native/NVAPI/NvApiDriverSettings.tt -------------------------------------------------------------------------------- /nspector/Native/NVAPI/NvapiDrsWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Native/NVAPI/NvapiDrsWrapper.cs -------------------------------------------------------------------------------- /nspector/Native/NativeArrayHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Native/NativeArrayHelper.cs -------------------------------------------------------------------------------- /nspector/Native/WINAPI/DragAcceptNativeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Native/WINAPI/DragAcceptNativeHelper.cs -------------------------------------------------------------------------------- /nspector/Native/WINAPI/MessageHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Native/WINAPI/MessageHelper.cs -------------------------------------------------------------------------------- /nspector/Native/WINAPI/SafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Native/WINAPI/SafeNativeMethods.cs -------------------------------------------------------------------------------- /nspector/Native/WINAPI/ShellLink.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Native/WINAPI/ShellLink.cs -------------------------------------------------------------------------------- /nspector/Native/WINAPI/TaskBarList3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Native/WINAPI/TaskBarList3.cs -------------------------------------------------------------------------------- /nspector/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Program.cs -------------------------------------------------------------------------------- /nspector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /nspector/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /nspector/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Properties/Resources.resx -------------------------------------------------------------------------------- /nspector/Reference.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/Reference.xml -------------------------------------------------------------------------------- /nspector/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/app.config -------------------------------------------------------------------------------- /nspector/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/app.manifest -------------------------------------------------------------------------------- /nspector/dmw.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/dmw.cs -------------------------------------------------------------------------------- /nspector/frmBitEditor.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/frmBitEditor.Designer.cs -------------------------------------------------------------------------------- /nspector/frmBitEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/frmBitEditor.cs -------------------------------------------------------------------------------- /nspector/frmBitEditor.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/frmBitEditor.resx -------------------------------------------------------------------------------- /nspector/frmDrvSettings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/frmDrvSettings.Designer.cs -------------------------------------------------------------------------------- /nspector/frmDrvSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/frmDrvSettings.cs -------------------------------------------------------------------------------- /nspector/frmDrvSettings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/frmDrvSettings.resx -------------------------------------------------------------------------------- /nspector/frmExportProfiles.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/frmExportProfiles.Designer.cs -------------------------------------------------------------------------------- /nspector/frmExportProfiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/frmExportProfiles.cs -------------------------------------------------------------------------------- /nspector/frmExportProfiles.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/frmExportProfiles.resx -------------------------------------------------------------------------------- /nspector/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/nspector/packages.config -------------------------------------------------------------------------------- /packages/AutoClosingMessageBox.1.0.0.2/AutoClosingMessageBox.1.0.0.2.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/packages/AutoClosingMessageBox.1.0.0.2/AutoClosingMessageBox.1.0.0.2.nupkg -------------------------------------------------------------------------------- /packages/AutoClosingMessageBox.1.0.0.2/lib/net40/AutoClosingMessageBox.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/packages/AutoClosingMessageBox.1.0.0.2/lib/net40/AutoClosingMessageBox.dll -------------------------------------------------------------------------------- /packages/DmWPackages/DeadManWalkingTO-Github: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DeadManWalkingTO/NVidiaProfileInspectorDmW/HEAD/packages/DmWPackages/DeadManWalkingTO-Github -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | v3.5.0.0 2 | --------------------------------------------------------------------------------