×

注意!页面内容来自https://www.tenforums.com/tutorials/132824-check-what-graphics-card-gpu-windows-pc.html,本站不储存任何内容,为了更好的阅读体验进行在线解析,若有广告出现,请及时反馈。若您觉得侵犯了您的利益,请通知我们进行删除,然后访问 原网页

Check What Graphics Card or GPU is in Windows PC  

    Check What Graphics Card or GPU is in Windows PC

    Check What Graphics Card or GPU is in Windows PC

    How to Check What Graphics Card or GPU is in Windows PC
    Published by Category: Hardware & Drivers
    20 Aug 2022
    Designer Media Ltd

    How to Check What Graphics Card or GPU is in Windows PC


    A Graphics Processing Unit (GPU) is a single-chip processor primarily used to manage and boost the performance of video and graphics.

    A graphics card (also called a display cardvideo carddisplay adapteror graphics adapter) is an expansion card which generates a feed of output images to a display device (such as a computer monitor). Frequentlythese are advertised as discrete or dedicated graphics cardsemphasizing the distinction between these and integrated graphics. At the core of both is the graphics processing unit (GPU)which is the main part that does the actual computationsbut should not be confused as the video card as a wholealthough "GPU" is often used to refer to video cards.

    This tutorial will show you different ways to check what graphics card or GPU is in your Windows 7Windows 8Windows 10or Windows 11 PC.


    For a Windows 11 version of this tutorialsee:

    Find GPU or Graphics Card Specs in Windows 11



    Contents

    • Option One: Check What Graphics Card or GPU is in PC in Task Manager
    • Option Two: Check What Graphics Card or GPU is in PC in System Information (msinfo32)
    • Option Three: Check What Graphics Card or GPU is in PC in DirectX Diagnostic Tool (dxdiag)
    • Option Four: Check What Graphics Card or GPU is in PC in Device Manager
    • Option Five: Check What Graphics Card or GPU is in PC in Command Prompt
    • Option Six: Check What Graphics Card or GPU is in PC in PowerShell






    OPTION ONE

    Check What Graphics Card or GPU is in PC in Task Manager


    This options is only available in Windows 10.


    1 Open Task Manager (Ctrl+Shift+Esc).

    2 In the Performance tabyou will see the name (ex: "NVIDIA GeForce GTX 1080 TI") of each GPU (if more than one) for your computer. (see screenshot below)

    Check What Graphics Card or GPU is in Windows PC-gpu_task_manager.jpg






    OPTION TWO

    Check What Graphics Card or GPU is in PC in System Information (msinfo32)


    1 Press the Win + R keys to open Runtype msinfo32 into Runand click/tap on OK to open System Information.

    2 Under System Summary in the left pane click/tap on Components and Display. (see screenshot below)

    3 In the right pane of Displayyou will see the name (ex: "NVIDIA GeForce GTX 1080 TI") of each GPU (if more than one) for your computer.

    Check What Graphics Card or GPU is in Windows PC-gpu_in_system_information.jpg






    OPTION THREE

    Check What Graphics Card or GPU is in PC in DirectX Diagnostic Tool (dxdiag)


    1 Press the Win + R keys to open Runtype dxdiag into Runand click/tap on OK to open the DirectX Diagnostic Tool.

    2 In each Display tab (if more than one)you will see the name (ex: "NVIDIA GeForce GTX 1080 TI") of the GPU (if more than one) used for the display. (see screenshots below)

    Check What Graphics Card or GPU is in Windows PC-gpu_in_dxdiag-1.png Check What Graphics Card or GPU is in Windows PC-gpu_in_dxdiag-2.png Check What Graphics Card or GPU is in Windows PC-gpu_in_dxdiag-3.png






    OPTION FOUR

    Check What Graphics Card or GPU is in PC in Device Manager


    1 Open Device Manager.

    2 Expand open Display adapters. (see screenshot below)

    3 Under Display adaptersyou will see the name (ex: "NVIDIA GeForce GTX 1080 TI") of each GPU (if more than one) for your computer.

    Check What Graphics Card or GPU is in Windows PC-gpu_in_device_manager.png






    OPTION FIVE

    Check What Graphics Card or GPU is in PC in Command Prompt


    1 Open a Command Prompt.

    2 Copy and paste the command below into the command promptand press Enter. (see screenshot below)

    wmic path win32_VideoController get name

    3 You will now see the name (ex: "NVIDIA GeForce GTX 1080 TI") of each GPU (if more than one) for your computer.

    Check What Graphics Card or GPU is in Windows PC-gpu_command.png






    OPTION SIX

    Check What Graphics Card or GPU is in PC in PowerShell


    1 Open a PowerShell.

    3 Copy and paste either command below into PowerShelland press Enter. (see screenshots below)

    Get-WmiObject win32_VideoController | Format-List Name

    OR

    gwmi win32_VideoController | FL Name

    3 You will now see the name (ex: "NVIDIA GeForce GTX 1080 TI") of each GPU (if more than one) for your computer.

    Check What Graphics Card or GPU is in Windows PC-gpu_powershell-2.png Check What Graphics Card or GPU is in Windows PC-gpu_powershell-2.png


    That's it,
    Shawn Brink






  1. Posts : 18,031
    Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install
       #1

    Hello @Brink ,

    Would this be any good as an addition to the Tutorial ?
    It is extracted from one of my Scripts and includes a LOT of specific details and information.
    It is sorted [ ordered ] to my specific requirements which I think is quite logical.

    Copy & Paste the following into a CMD Prompt and press Enter.

    Code:
    
    echo. & PowerShell Get-wmiObject Win32_VideoController ^| Format-List ^
         @{L=' Description'                                   ;E={;if([string]::IsNullOrWhiteSpace($_.Description))                  {'N/A'} else {$_.Description}}}^
         @{L=' Device ID'                                     ;E={;if([string]::IsNullOrWhiteSpace($_.DeviceID))                     {'N/A'} else {$_.DeviceID}}}^
         @{L=' Path [Relative]'                               ;E={;if([string]::IsNullOrWhiteSpace($_.__RELPATH))                    {'N/A'} else {$_.__RELPATH}}}^
         @{L=' PNP Device ID'                                 ;E={;if([string]::IsNullOrWhiteSpace($_.PNPDeviceID))                  {'N/A'} else {$_.PNPDeviceID}}}^
         @{L=' Specification Version'                         ;E={;if([string]::IsNullOrWhiteSpace($_.SpecificationVersion))         {'N/A'} else {$_.SpecificationVersion}}}^
         @{L=' Install Date'                                  ;E={;if([string]::IsNullOrWhiteSpace($_.InstallDate))                  {'--^> [NO Date Present]'}  else {$_.InstallDate}}}^
         @{L=' Adapter Compatibility'                         ;E={;if([string]::IsNullOrWhiteSpace($_.AdapterCompatibility))         {'N/A'} else {$_.AdapterCompatibility.Trim('()')}}}^
         @{L=' Adapter DAC [Digital to Analog Converter] Type';E={;if([string]::IsNullOrWhiteSpace($_.AdapterDACType))               {'N/A'} else {$_.AdapterDACType}}}^
         @{L=' Adapter RAM'                                   ;E={;if([string]::IsNullOrWhiteSpace($_.AdapterRAM))                   {'N/A'} else {[Math]::Round($_.AdapterRAM / 1MB0).ToString('#,##0 MB')}}}^
         @{L=' Video Processor'                               ;E={;if([string]::IsNullOrWhiteSpace($_.VideoProcessor))               {'N/A'} else {$_.VideoProcessor}}}^
         @{L=' Video Mode Description'                        ;E={;if([string]::IsNullOrWhiteSpace($_.VideoModeDescription))         {'N/A'} else {$_.VideoModeDescription}}}^
         @{L=' Video Mode'                                    ;E={;if([string]::IsNullOrWhiteSpace($_.VideoMode))                    {'N/A'} else {$_.VideoMode}}}^
         @{L=' Video Architecture'                            ;E={;if([string]::IsNullOrWhiteSpace($_.VideoArchitecture))            {'N/A'} else {$_.VideoArchitecture}}}^
         @{L=' Video Memory Type'                             ;E={;if([string]::IsNullOrWhiteSpace($_.VideoMemoryType))              {'N/A'} else {$_.VideoMemoryType}}}^
         @{L=' Time Of Last Reset'                            ;E={;if([string]::IsNullOrWhiteSpace($_.TimeOfLastReset))              {'N/A'} else {$_.TimeOfLastReset}}}^
         @{L=' Monochrome'                                    ;E={;if([string]::IsNullOrWhiteSpace($_.Monochrome))                   {'N/A'} else {$_.Monochrome}}}^
         @{L=' Max Memory Supported'                          ;E={;if([string]::IsNullOrWhiteSpace($_.MaxMemorySupported))           {'N/A'} else {$_.MaxMemorySupported}}}^
         @{L=' Max Number Controlled'                         ;E={;if([string]::IsNullOrWhiteSpace($_.MaxNumberControlled))          {'N/A'} else {$_.MaxNumberControlled}}}^
         @{L=' Min Refresh Rate'                              ;E={;if([string]::IsNullOrWhiteSpace($_.MinRefreshRate))               {'N/A'} else {$_.MinRefreshRate}}}^
         @{L=' Max Refresh Rate'                              ;E={;if([string]::IsNullOrWhiteSpace($_.MaxRefreshRate))               {'N/A'} else {$_.MaxRefreshRate}}}^
         @{L=' ICM [Image Color Matching] Intent'             ;E={;if([string]::IsNullOrWhiteSpace($_.ICMIntent))                    {'N/A'} else {$_.ICMIntent}}}^
         @{L=' ICM [Image Color Matching] Method'             ;E={;if([string]::IsNullOrWhiteSpace($_.ICMMethod))                    {'N/A'} else {$_.ICMMethod}}}^
         @{L=' System Palette Entries'                        ;E={;if([string]::IsNullOrWhiteSpace($_.SystemPaletteEntries))         {'N/A'} else {$_.SystemPaletteEntries}}}^
         @{L=' Reserved System Palette Entries'               ;E={;if([string]::IsNullOrWhiteSpace($_.ReservedSystemPaletteEntries)) {'N/A'} else {$_.ReservedSystemPaletteEntries}}}^
         @{L=' Color Table Entries'                           ;E={;if([string]::IsNullOrWhiteSpace($_.ColorTableEntries))            {'N/A'} else {$_.ColorTableEntries}}}^
         @{L=' Number Of Color Planes'                        ;E={;if([string]::IsNullOrWhiteSpace($_.NumberOfColorPlanes))          {'N/A'} else {$_.NumberOfColorPlanes}}}^
         @{L=' Number Of Video Pages'                         ;E={;if([string]::IsNullOrWhiteSpace($_.NumberOfVideoPages))           {'N/A'} else {$_.NumberOfVideoPages}}}^
         @{L=' Current Bits Per Pixel'                        ;E={;if([string]::IsNullOrWhiteSpace($_.CurrentBitsPerPixel))          {'N/A'} else {$_.CurrentBitsPerPixel}}}^
         @{L=' Current Horizontal Resolution'                 ;E={;if([string]::IsNullOrWhiteSpace($_.CurrentHorizontalResolution))  {'N/A'} else {$_.CurrentHorizontalResolution}}}^
         @{L=' Current Number Of Colors'                      ;E={;if([string]::IsNullOrWhiteSpace($_.CurrentNumberOfColors))        {'N/A'} else {$_.CurrentNumberOfColors}}}^
         @{L=' Current Number Of Columns'                     ;E={;if([string]::IsNullOrWhiteSpace($_.CurrentNumberOfColumns))       {'N/A'} else {$_.CurrentNumberOfColumns}}}^
         @{L=' Current Number Of Rows'                        ;E={;if([string]::IsNullOrWhiteSpace($_.CurrentNumberOfRows))          {'N/A'} else {$_.CurrentNumberOfRows}}}^
         @{L=' Current Refresh Rate'                          ;E={;if([string]::IsNullOrWhiteSpace($_.CurrentRefreshRate))           {'N/A'} else {$_.CurrentRefreshRate}}}^
         @{L=' Current Scan Mode'                             ;E={;if([string]::IsNullOrWhiteSpace($_.CurrentScanMode))              {'N/A'} else {$_.CurrentScanMode}}}^
         @{L=' Current Vertical Resolution'                   ;E={;if([string]::IsNullOrWhiteSpace($_.CurrentVerticalResolution))    {'N/A'} else {$_.CurrentVerticalResolution}}}^
         @{L=' Installed Display Drivers'                     ;E={;if([string]::IsNullOrWhiteSpace($_.InstalledDisplayDrivers))      {'N/A'} else {$_.InstalledDisplayDrivers}}}^
         @{L=' Driver Version'                                ;E={;if([string]::IsNullOrWhiteSpace($_.DriverVersion))                {'N/A'} else {$_.DriverVersion}}}^
         @{L=' Driver Date'                                   ;E={;if([string]::IsNullOrWhiteSpace($_.DriverDate))                   {'N/A'} else {$_.ConvertToDateTime($_.DriverDate).ToString() + ' [Shows -1 Day]'}}}^
         @{L=' Driver Filename [.inf]'                        ;E={;if([string]::IsNullOrWhiteSpace($_.InfFilename))                  {'N/A'} else {$_.InfFilename}}}^
         @{L=' Driver Section [.inf]'                         ;E={;if([string]::IsNullOrWhiteSpace($_.InfSection))                   {'N/A'} else {$_.InfSection}}}^
         @{L=' Config Manager User Config'                    ;E={;if([string]::IsNullOrWhiteSpace($_.ConfigManagerUserConfig))      {'N/A'} else {$_.ConfigManagerUserConfig}}}^
         @{L=' Config Manager Error Code'                     ;E={;if([string]::IsNullOrWhiteSpace($_.ConfigManagerErrorCode))       {'N/A'} else {$_.ConfigManagerErrorCode}}}^
         @{L=' Power Management Capabilities'                 ;E={;if([string]::IsNullOrWhiteSpace($_.PowerManagementCapabilities))  {'N/A'} else {$_.PowerManagementCapabilities}}}^
         @{L=' Power Management Supported'                    ;E={;if([string]::IsNullOrWhiteSpace($_.PowerManagementSupported))     {'N/A'} else {$_.PowerManagementSupported}}}^
         @{L=' Creation Class Name'                           ;E={;if([string]::IsNullOrWhiteSpace($_.CreationClassName))            {'N/A'} else {$_.CreationClassName}}}^
         @{L=' System Creation Class Name'                    ;E={;if([string]::IsNullOrWhiteSpace($_.SystemCreationClassName))      {'N/A'} else {$_.SystemCreationClassName}}}^
         @{L=' Error Cleared'                                 ;E={;if([string]::IsNullOrWhiteSpace($_.ErrorCleared))                 {'N/A'} else {$_.ErrorCleared}}}^
         @{L=' Error Description'                             ;E={;if([string]::IsNullOrWhiteSpace($_.ErrorDescription))             {'N/A'} else {$_.ErrorDescription}}}^
         @{L=' Last Error Code'                               ;E={;if([string]::IsNullOrWhiteSpace($_.LastErrorCode))                {'N/A'} else {$_.LastErrorCode}}}^
         @{L=' Protocol Supported'                            ;E={;if([string]::IsNullOrWhiteSpace($_.ProtocolSupported))            {'N/A'} else {$_.ProtocolSupported}}}^
         @{L=' Accelerator Capabilities'                      ;E={;if([string]::IsNullOrWhiteSpace($_.AcceleratorCapabilities))      {'N/A'} else {$_.AcceleratorCapabilities}}}^
         @{L=' Availability'                                  ;E={;if([string]::IsNullOrWhiteSpace($_.Availability))                 {'N/A'} else {$_.Availability}}}^
         @{L=' Capability Descriptions'                       ;E={;if([string]::IsNullOrWhiteSpace($_.CapabilityDescriptions))       {'N/A'} else {$_.CapabilityDescriptions}}}^
         @{L=' Device Specific Pens'                          ;E={;if([string]::IsNullOrWhiteSpace($_.DeviceSpecificPens))           {'N/A'} else {$_.DeviceSpecificPens}}}^
         @{L=' Dither Type'                                   ;E={;if([string]::IsNullOrWhiteSpace($_.DitherType))                   {'N/A'} else {$_.DitherType}}}^
         @{L=' Scope'                                         ;E={;if([string]::IsNullOrWhiteSpace($_.Scope))                        {'N/A'} else {$_.Scope}}}^
         @{L=' Path'                                          ;E={;if([string]::IsNullOrWhiteSpace($_.Path))                         {'N/A'} else {$_.Path}}}^
         @{L=' Options'                                       ;E={;if([string]::IsNullOrWhiteSpace($_.Options))                      {'N/A'} else {$_.Options}}}^
         @{L=' Class Path'                                    ;E={;if([string]::IsNullOrWhiteSpace($_.ClassPath))                    {'N/A'} else {$_.ClassPath}}}^
         @{L=' Properties'                                    ;E={;if([string]::IsNullOrWhiteSpace($_.Properties))                   {'N/A'} else {$_.Properties}}}^
         @{L=' System Properties'                             ;E={;if([string]::IsNullOrWhiteSpace($_.SystemProperties))             {'N/A'} else {$_.SystemProperties}}}^
         @{L=' Qualifiers'                                    ;E={;if([string]::IsNullOrWhiteSpace($_.Qualifiers))                   {'N/A'} else {$_.Qualifiers}}}^
         @{L=' Status'                                        ;E={;if([string]::IsNullOrWhiteSpace($_.Status))                       {'N/A'} else {$_.Status}}}^
         @{L=' Status Info'                                   ;E={;if([string]::IsNullOrWhiteSpace($_.StatusInfo))                   {'N/A'} else {$_.StatusInfo}}} ^| ^
    Out-String -Width 1000 -Stream ^| Where {$_.Trim().Length -gt 0}
    
    
    

    If this is NOT relevantthen please delete this post.

      My Computer
    Computer Type: PC/Desktop
    OS: Win 10 Pro 64-bit v1909 - Build 18363 Custom ISO Install


  2. Posts : 76,103
    64-bit Windows 11 Pro for Workstations
    Thread Starter
       #2

      My Computers
    Computer Type: PC/Desktop
    System Manufacturer/Model Number: Custom self built
    OS: 64-bit Windows 11 Pro for Workstations
    CPU: Intel i7-8700K 5 GHz
    Motherboard: ASUS ROG Maximus XI Formula Z390
    Memory: 64 GB (4x16GB) G.SKILL TridentZ RGB DDR4 3600 MHz (F4-3600C18D-32GTZR)
    Graphics Card: ASUS ROG-STRIX-GTX1080TI-O11G-GAMING
    Sound Card: Integrated Digital Audio (S/PDIF)
    Monitor(s) Displays: 2 x Samsung Odyssey G75 27"
    Screen Resolution: 2560x1440
    Keyboard: Logitech wireless K800
    Mouse: Logitech MX Master 3
    PSU: Seasonic Prime Titanium 850W
    Case: Thermaltake Core P3 wall mounted
    Cooling: Corsair Hydro H115i
    Hard Drives: 1TB Samsung 990 PRO M.2, 4TB Samsung 990 PRO PRO M.2, TerraMaster F8 SSD Plus NAS
    Internet Speed: 2 Gbps Download and 100 Mbps Upload
    Browser: Google Chrome
    Antivirus: Windows Defender and Malwarebytes Premium
    Other Info: Logitech Z625 speaker system, Logitech BRIO 4K Pro webcam, HP Color LaserJet Pro MFP M477fdn, CyberPower CP1500PFCLCD, Galaxy S23 Plus phone

    View my PC Album
    Computer Type: Laptop
    System Manufacturer/Model Number: HP Spectre x360 2in1
    OS: 64-bit Windows 10 Pro build 21390
    CPU: i7-1065G7 3.9 GHz
    Memory: 16 GB LPDDR4-3200
    Graphics Card: Intel Iris Plus
    Sound Card: Intel SST
    Monitor(s) Displays: 13.3" 4K UWVA AMOLED multitouch
    Screen Resolution: 3840 x 2160
    Hard Drives: 512 GB PCIe NVMe M.2 SSD
    Browser: Google Chrome
    Antivirus: Windows Defender and Malwarebytes Premium


 

Tutorial Categories

Check What Graphics Card or GPU is in Windows PC Tutorial Index Network & Sharing Instalation and Upgrade Browsers and Email General Tips Gaming Customization Apps and Features Virtualization BSOD System Security User Accounts Hardware and Drivers Updates and Activation Backup and Restore Performance and Maintenance Mixed Reality Phone


  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized sponsoredor otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 11:27.
Find Us




Windows 10 Forums