How to Identify Installed Graphics Card and Verify GPU Features & Configuration in Windows
This knowledge base article provides a practical, technical guide for IT professionals, system administrators, and support engineers to: Identify the install...
This knowledge base article provides a practical, technical guide for IT professionals, system administrators, and support engineers to:
-
Identify the installed graphics adapter(s)
-
Verify GPU configuration and capabilities
-
Interpret diagnostic outputs (e.g., dxdiag)
-
Troubleshoot common GPU-related issues
The procedures focus primarily on Microsoft Windows environments, especially laptops using hybrid graphics (integrated + discrete GPU).
Graphics Adapter Overview
Modern systems may include one or more GPUs:
| GPU Type | Description | Typical Usage |
|---|---|---|
| Integrated GPU (iGPU) | Built into CPU (Intel/AMD) | Desktop rendering, power efficiency |
| Discrete GPU (dGPU) | Dedicated hardware (NVIDIA/AMD) | 3D workloads, compute, rendering |
| Hybrid Graphics | iGPU + dGPU coexist | Battery optimization + performance |
Example from dxdiag:
NVIDIA Quadro T2000 with Max-Q Design
Indicates a mobile workstation GPU, optimized for efficiency.
Technical Concepts & Behavior
1. Hybrid Graphics Architecture
In most laptops:
-
Integrated GPU → Drives display output
-
Discrete GPU → Activated for heavy workloads
dxdiag may show:
Device Type: Render-Only Display Device
This is expected behavior, not an error.
2. GPU Memory Reporting
dxdiag fields:
| Field | Meaning |
|---|---|
| Display Memory (VRAM) | Dedicated GPU memory |
| Shared Memory | System RAM available to GPU |
| Approx. Total Memory | VRAM + Shared Memory |
Example:
Display Memory (VRAM): 3938 MB
Shared Memory: 16256 MB
Normal for 4GB GPU + system RAM sharing.
Methods to Identify Installed Graphics Card
Method 1 — DirectX Diagnostic Tool (dxdiag)
Steps
-
Press Win + R
-
Run:
dxdiag
-
Open Display / Render tab
Key Fields to Inspect
-
Name
-
Manufacturer
-
Chip Type
-
Display Memory (VRAM)
-
Driver Version
-
Feature Levels
-
Driver Model (WDDM)
Method 2 — Device Manager
Steps
-
Run:
devmgmt.msc
-
Expand:
Display Adapters
Example:
Intel UHD Graphics
NVIDIA Quadro T2000
Method 3 — Command Line (WMIC)
wmic path win32_VideoController get name
Example Output:
Intel(R) UHD Graphics
NVIDIA Quadro T2000
Method 4 — PowerShell
Get-WmiObject Win32_VideoController | Select-Object Name, DriverVersion, AdapterRAM
Method 5 — NVIDIA Systems (nvidia-smi)
If NVIDIA drivers installed:
nvidia-smi
Provides:
-
GPU model
-
Driver version
-
VRAM usage
-
Temperature
-
Active processes
Verifying GPU Features & Capabilities
1. DirectX Feature Levels
dxdiag:
Feature Levels: 12_1, 12_0, 11_1...
Indicates supported DirectX versions.
2. Driver Model (WDDM)
Example:
Driver Model: WDDM 3.2
Higher versions = newer Windows graphics stack.
3. Hardware Acceleration
dxdiag:
Direct3D Acceleration: Enabled
Disabled = potential driver issue.
4. GPU Memory & Limits
Check via:
nvidia-smi
or Task Manager:
Task Manager → Performance → GPU
Common GPU Troubleshooting Scenarios
Issue 1 — GPU Not Visible
Symptoms
-
Missing from Device Manager
-
dxdiag shows only iGPU
Root Causes
-
Driver missing
-
BIOS disabled GPU
-
Hardware failure
Fix
Scan for hardware changes (Device Manager)
Reinstall vendor driver
Check BIOS settings
Issue 2 — Low Performance / Wrong GPU Used
Symptoms
-
Heavy apps running on iGPU
-
Lag / stuttering
Fix (NVIDIA)
NVIDIA Control Panel → Manage 3D Settings → Preferred GPU → High-performance NVIDIA processor
Issue 3 — Hardware Acceleration Disabled
Symptoms
dxdiag:
Direct3D Acceleration: Disabled
Root Causes
-
Driver corruption
-
Remote Desktop session
-
Basic Display Driver active
Fix
Reinstall GPU drivers
Avoid RDP testing
Issue 4 — VRAM Appears Low
Explanation
Hybrid graphics / memory reservation behavior.
Usually not a problem.
Common Errors & Fixes
| Error | Likely Cause | Fix |
|---|---|---|
| Basic Display Adapter | Missing GPU driver | Install vendor driver |
| Code 43 | Driver / hardware failure | Reinstall driver / test hardware |
| Direct3D Disabled | Driver issue | Clean driver install |
| GPU Missing After Update | Windows Update conflict | Rollback driver |
Useful Diagnostic Commands
dxdiag
wmic path win32_VideoController get name
devmgmt.msc
nvidia-smi
msinfo32
Logs & Advanced Diagnostics
Check:
Event Viewer → Windows Logs → System
Look for:
-
Display driver crashes
-
GPU resets
-
TDR errors
Example:
Display driver nvlddmkm stopped responding
Security Considerations
-
Outdated GPU drivers = security risk
-
Always use vendor-certified drivers
-
Avoid unofficial driver packages
-
Monitor GPU usage for crypto/mining malware
Best Practices & Recommendations
✅ Keep GPU drivers updated (stable releases)
✅ Verify hybrid graphics settings
✅ Use Task Manager GPU monitoring
✅ Match GPU capability to workload
✅ Validate DirectX / OpenGL requirements
✅ Avoid Windows generic drivers for production
Use Cases for GPU Verification
-
Performance complaints
-
Application compatibility checks
-
CAD / 3D software validation
-
Remote desktop graphics issues
-
Hardware inventory audits
-
Driver deployment verification
Conclusion
Identifying and validating graphics hardware is a fundamental diagnostic task in modern IT environments.
Using tools like:
-
dxdiag
-
Device Manager
-
WMIC / PowerShell
-
nvidia-smi
…support engineers can quickly determine:
✔ GPU model
✔ Driver health
✔ Feature support
✔ Acceleration status
✔ Memory configuration
This enables accurate troubleshooting, performance tuning, and compatibility validation.
Was this guide useful?
Your answer helps us keep BISONKB accurate and practical.