README.md
NVIDIA Profile Inspector is a Windows tool for editing NVIDIA driver profiles through the NVIDIA Driver Settings API. It exposes the driver profile database used by the NVIDIA Control Panel, adds access to many hidden or undocumented profile settings, and makes it easy to create, adjust, export, import, and restore per-application profiles.
The tool is intended for advanced users who want precise control over game and application profiles, compatibility flags, frame-rate limiters, synchronization options, texture filtering, SLI settings, Optimus behavior, DLSS overrides, and other driver-level switches that are not always available in the standard control panel.
.nip profile backups.Download the latest official build from the GitHub Releases page. Pre-release builds are available on the same page when experimental builds are published: GitHub Pre-releases.
The release archive contains the executable and the files required to run it. Extract
the archive to a writable folder and start nvidiaProfileInspector.exe.
nvidiaProfileInspector.exe.Before experimenting with advanced settings, export the current profile or all custom profiles so you can restore a known-good state later.
NVIDIA Profile Inspector can store profile changes as .nip files. This is useful for
sharing a single game profile, keeping personal presets, or backing up modified driver
profiles before a driver update.
Recommended backup flow:
.nip file somewhere outside the driver installation folder.Many entries exposed by NVIDIA Profile Inspector are hidden, experimental, deprecated, driver-version-specific, or undocumented by NVIDIA. Values that work well for one game, driver, or GPU generation may do nothing or cause issues elsewhere.
Use profile-specific changes whenever possible, keep backups, and prefer restoring a single setting or profile before resetting the whole driver database.
NVIDIA Profile Inspector supports a small set of startup options for imports, exports, and maintenance tasks.
nvidiaProfileInspector.exe [options] [profile1.nip] [profile2.nip ...]
| Option | Description |
|---|---|
<file>.nip | Imports one or more .nip profile files. If an instance is already running, the files are forwarded to it. |
-silentImport | Imports .nip files without showing the normal success dialog. |
-silent | Alias for -silentImport. |
-exportCustomized | Exports all customized profiles to a timestamped .nip file next to the executable, then exits. |
-createCSN | Writes the embedded CustomSettingNames.xml file to the current working directory, then exits. |
-showOnlyCSN | Starts the UI with only customized settings shown. |
-disableScan | Starts the UI without the initial profile scan. |
Examples:
nvidiaProfileInspector.exe ".\MyProfile.nip"
nvidiaProfileInspector.exe -silentImport ".\ProfileA.nip" ".\ProfileB.nip"
nvidiaProfileInspector.exe -exportCustomized
The project is a WPF desktop application targeting .NET Framework 4.8.
git clone https://github.com/Orbmu2k/nvidiaProfileInspector.git
cd nvidiaProfileInspector
dotnet build .\nvidiaProfileInspector\nvidiaProfileInspector.sln -c Release
The compiled application is written to:
nvidiaProfileInspector\bin\Release\net48\
Visual Studio can also open nvidiaProfileInspector\nvidiaProfileInspector.sln
directly.
nvidiaProfileInspector/
+-- Common/ Driver profile services, metadata, import/export logic
+-- Native/ NVAPI and Win32 interop
+-- Services/ Application services such as themes and update checks
+-- UI/ WPF views, view models, controls, styles, and themes
+-- CustomSettingNames.xml User-friendly names and descriptions for known settings
`-- Reference.xml Reference setting metadata copied to the output folder
Bug reports, setting updates, compatibility notes, and pull requests are welcome. When reporting issues, include the NVIDIA driver version, Windows version, GPU model, the affected profile or executable, and steps to reproduce the behavior.
NVIDIA Profile Inspector is released under the MIT License.