├── .gitignore ├── LICENSE ├── README.md ├── README_KO.md ├── Rapr.sln ├── Rapr ├── AboutBox.Designer.cs ├── AboutBox.cs ├── AboutBox.resx ├── CSVExporter.cs ├── ChooseDriverStore.Designer.cs ├── ChooseDriverStore.cs ├── ChooseDriverStore.resx ├── DSEForm.Designer.cs ├── DSEForm.cs ├── DSEForm.resx ├── DSEFormHelper.cs ├── DriverStoreType.cs ├── GlobalSuppressions.cs ├── HttpClientExtensions.cs ├── IExport.cs ├── IUpdateManager.cs ├── Lang │ ├── Language.Designer.cs │ ├── Language.ar-SA.resx │ ├── Language.de-DE.resx │ ├── Language.el-GR.resx │ ├── Language.es-ES.resx │ ├── Language.fr-FR.resx │ ├── Language.he-IL.resx │ ├── Language.hu-HU.resx │ ├── Language.it-IT.resx │ ├── Language.ja-JP.resx │ ├── Language.ko-KR.resx │ ├── Language.nb-NO.resx │ ├── Language.pl-PL.resx │ ├── Language.pt-BR.resx │ ├── Language.resx │ ├── Language.ru-RU.resx │ ├── Language.sk-SK.resx │ ├── Language.tr-TR.resx │ ├── Language.tt-RU.resx │ ├── Language.uk-UA.resx │ ├── Language.zh-CN.resx │ └── Language.zh-TW.resx ├── MyObjectListView.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Rapr.csproj ├── Rapr.snk ├── Resources │ └── Search.ico ├── SafeNativeMethods.cs ├── StreamExtensions.cs ├── TextFileTraceListener.cs ├── UpdateManager.cs ├── Utils │ ├── ConfigManager.cs │ ├── DeviceDriverInfo.cs │ ├── DeviceHelper.cs │ ├── DismUtil.cs │ ├── DriverStoreEntry.cs │ ├── DriverStoreFactory.cs │ ├── DriverStoreRepository.cs │ ├── FlexibleMessageBox.cs │ ├── IDriverStore.cs │ ├── LinqExtensions.cs │ ├── NativeDriverStore.cs │ ├── PNPUtil.cs │ └── SetupAPI.cs ├── VersionInfo.cs ├── app.config ├── app.manifest └── icon.ico ├── RaprTests ├── RaprTests.cs ├── RaprTests.csproj └── Utils │ └── PNPUtilTests.cs ├── Screenshots ├── README.md └── Screenshot.png └── appveyor.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/README.md -------------------------------------------------------------------------------- /README_KO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/README_KO.md -------------------------------------------------------------------------------- /Rapr.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr.sln -------------------------------------------------------------------------------- /Rapr/AboutBox.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/AboutBox.Designer.cs -------------------------------------------------------------------------------- /Rapr/AboutBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/AboutBox.cs -------------------------------------------------------------------------------- /Rapr/AboutBox.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/AboutBox.resx -------------------------------------------------------------------------------- /Rapr/CSVExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/CSVExporter.cs -------------------------------------------------------------------------------- /Rapr/ChooseDriverStore.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/ChooseDriverStore.Designer.cs -------------------------------------------------------------------------------- /Rapr/ChooseDriverStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/ChooseDriverStore.cs -------------------------------------------------------------------------------- /Rapr/ChooseDriverStore.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/ChooseDriverStore.resx -------------------------------------------------------------------------------- /Rapr/DSEForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/DSEForm.Designer.cs -------------------------------------------------------------------------------- /Rapr/DSEForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/DSEForm.cs -------------------------------------------------------------------------------- /Rapr/DSEForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/DSEForm.resx -------------------------------------------------------------------------------- /Rapr/DSEFormHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/DSEFormHelper.cs -------------------------------------------------------------------------------- /Rapr/DriverStoreType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/DriverStoreType.cs -------------------------------------------------------------------------------- /Rapr/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/GlobalSuppressions.cs -------------------------------------------------------------------------------- /Rapr/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/HttpClientExtensions.cs -------------------------------------------------------------------------------- /Rapr/IExport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/IExport.cs -------------------------------------------------------------------------------- /Rapr/IUpdateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/IUpdateManager.cs -------------------------------------------------------------------------------- /Rapr/Lang/Language.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.Designer.cs -------------------------------------------------------------------------------- /Rapr/Lang/Language.ar-SA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.ar-SA.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.de-DE.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.de-DE.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.el-GR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.el-GR.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.es-ES.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.es-ES.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.fr-FR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.fr-FR.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.he-IL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.he-IL.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.hu-HU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.hu-HU.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.it-IT.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.it-IT.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.ja-JP.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.ja-JP.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.ko-KR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.ko-KR.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.nb-NO.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.nb-NO.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.pl-PL.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.pl-PL.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.pt-BR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.pt-BR.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.ru-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.ru-RU.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.sk-SK.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.sk-SK.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.tr-TR.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.tr-TR.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.tt-RU.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.tt-RU.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.uk-UA.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.uk-UA.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.zh-CN.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.zh-CN.resx -------------------------------------------------------------------------------- /Rapr/Lang/Language.zh-TW.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Lang/Language.zh-TW.resx -------------------------------------------------------------------------------- /Rapr/MyObjectListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/MyObjectListView.cs -------------------------------------------------------------------------------- /Rapr/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Program.cs -------------------------------------------------------------------------------- /Rapr/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Rapr/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Rapr/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Properties/Resources.resx -------------------------------------------------------------------------------- /Rapr/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Rapr/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Properties/Settings.settings -------------------------------------------------------------------------------- /Rapr/Rapr.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Rapr.csproj -------------------------------------------------------------------------------- /Rapr/Rapr.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Rapr.snk -------------------------------------------------------------------------------- /Rapr/Resources/Search.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Resources/Search.ico -------------------------------------------------------------------------------- /Rapr/SafeNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/SafeNativeMethods.cs -------------------------------------------------------------------------------- /Rapr/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/StreamExtensions.cs -------------------------------------------------------------------------------- /Rapr/TextFileTraceListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/TextFileTraceListener.cs -------------------------------------------------------------------------------- /Rapr/UpdateManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/UpdateManager.cs -------------------------------------------------------------------------------- /Rapr/Utils/ConfigManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Utils/ConfigManager.cs -------------------------------------------------------------------------------- /Rapr/Utils/DeviceDriverInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Utils/DeviceDriverInfo.cs -------------------------------------------------------------------------------- /Rapr/Utils/DeviceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Utils/DeviceHelper.cs -------------------------------------------------------------------------------- /Rapr/Utils/DismUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Utils/DismUtil.cs -------------------------------------------------------------------------------- /Rapr/Utils/DriverStoreEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Utils/DriverStoreEntry.cs -------------------------------------------------------------------------------- /Rapr/Utils/DriverStoreFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Utils/DriverStoreFactory.cs -------------------------------------------------------------------------------- /Rapr/Utils/DriverStoreRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Utils/DriverStoreRepository.cs -------------------------------------------------------------------------------- /Rapr/Utils/FlexibleMessageBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Utils/FlexibleMessageBox.cs -------------------------------------------------------------------------------- /Rapr/Utils/IDriverStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Utils/IDriverStore.cs -------------------------------------------------------------------------------- /Rapr/Utils/LinqExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Utils/LinqExtensions.cs -------------------------------------------------------------------------------- /Rapr/Utils/NativeDriverStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Utils/NativeDriverStore.cs -------------------------------------------------------------------------------- /Rapr/Utils/PNPUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Utils/PNPUtil.cs -------------------------------------------------------------------------------- /Rapr/Utils/SetupAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/Utils/SetupAPI.cs -------------------------------------------------------------------------------- /Rapr/VersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/VersionInfo.cs -------------------------------------------------------------------------------- /Rapr/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/app.config -------------------------------------------------------------------------------- /Rapr/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/app.manifest -------------------------------------------------------------------------------- /Rapr/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Rapr/icon.ico -------------------------------------------------------------------------------- /RaprTests/RaprTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/RaprTests/RaprTests.cs -------------------------------------------------------------------------------- /RaprTests/RaprTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/RaprTests/RaprTests.csproj -------------------------------------------------------------------------------- /RaprTests/Utils/PNPUtilTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/RaprTests/Utils/PNPUtilTests.cs -------------------------------------------------------------------------------- /Screenshots/README.md: -------------------------------------------------------------------------------- 1 | Folder for screenshots. 2 | -------------------------------------------------------------------------------- /Screenshots/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/Screenshots/Screenshot.png -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lostindark/DriverStoreExplorer/HEAD/appveyor.yml --------------------------------------------------------------------------------