No signal on primary graphics card


  1. Posts : 19
    Windows 10 Home
       #1

    No signal on primary graphics card


    I clean installed Windows 10 on July 1st with default BIOS settings and sometimes Windows 10 automatically switches to Intel integrated graphics causing no signal on my primary graphics card. A workaround is to remove the CMOS battery and the power cable of the GPU and reinsert them or disconnect the HDMI cable from the GPU and connect it to the motherboard and then, using the Intel integrated graphics, refresh the device manager, disable and enable the primary graphics card. Not long ago I went to a computer specialist and he said my PC hardware is OK. I own this PC for like 5 years and probably I'm going to switch to Linux, which once I did for testing purposes and all were working perfectly. Am I the only one in the world having this problem?
      My Computer


  2. Posts : 4,173
    Windows 11 Pro, 22H2
       #2

    EDIT:

    Check to see if your BIOS has a setting for what graphics device to make the make the primary device. There will typically be a setting for CPU or IGD for the internal / CPU graphics or PEG (PCIe Graphics) or a PCIe option depending upon the BIOS.

    My understanding is that for those BIOS that have a PEG / PCIE option the PEG is for the internal graphics, while some BIOS refer to the internal as IGD (Internal Graphics Device). You may need to refer to the manual for your MB.
      My Computers


  3. Posts : 2,716
    Windows 10
       #3

    Put in a new CMOS battery.

    Enter the UEFI and set the Primary Graphics Adapter, and the IGPU Multi-Monitor.

    See the details in the Manual section 4.6.2 as to why you need to do both.
      My Computer


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

    Hello @bugreporter,

    This will list information about your GPU. I have extracted it from one of my Scripts for you.

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

    Code:
    
    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 / 1MB, 0).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 you want to output the results to a file instead of the Console, then replace the LAST line with . . .

    Code:
    
    Out-String -Width 1000 -Stream ^| Where {$_.Trim().Length -gt 0} > %UserProfile%\Desktop\GPU.log

    It will create a GPU.log file on your Desktop. If you have a re-located Desktop, then change the Path accordingly.

    If you want a similar one for the CPU then please let me know.

    I hope this helps.
      My Computer


  5. Posts : 19
    Windows 10 Home
    Thread Starter
       #5

    hsehestedt said:
    EDIT:

    Check to see if your BIOS has a setting for what graphics device to make the make the primary device. There will typically be a setting for CPU or IGD for the internal / CPU graphics or PEG (PCIe Graphics) or a PCIe option depending upon the BIOS.

    My understanding is that for those BIOS that have a PEG / PCIE option the PEG is for the internal graphics, while some BIOS refer to the internal as IGD (Internal Graphics Device). You may need to refer to the manual for your MB.
    Thank you for your reply. This morning the problem happened again, so I disconnected the HDMI cable from the GPU, connected it to the motherboard, rebooted the PC, went into BIOS and saw this:

    Considering I was using Intel graphics on that occasion, shouldn't it have said "Onboard" instead of "PCI Express"?


    Helmut said:
    Put in a new CMOS battery.

    Enter the UEFI and set the Primary Graphics Adapter, and the IGPU Multi-Monitor.

    See the details in the Manual section 4.6.2 as to why you need to do both.
    Thank you for your reply. Okay, I enabled the IGPU Multi-Monitor, let's see if the problem persists.
    Last edited by bugreporter; 06 Aug 2022 at 04:06.
      My Computer


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

    Hello @bugreporter,

    bugreporter said:
    Thank you for your reply. I'm receiving an error:

    The error is because you run the Script in PowerShell instead of CMD Prompt.
      My Computer


  7. Posts : 19
    Windows 10 Home
    Thread Starter
       #7

    Paul Black said:
    Hello @bugreporter,



    The error is because you run the Script in PowerShell instead of CMD Prompt.
    Yeah, sorry. Here's the LOG GPU.log
      My Computer


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

    Hello @bugreporter,

    I have posted the results so that others can also look to see if something stands out. Some people will NOT download files from Forums or Websites. There is NO sensitive information included.

    Code:
    
     Description                                    : Radeon (TM) RX 470 Graphics
     Device ID                                      : VideoController1
     Path [Relative]                                : Win32_VideoController.DeviceID="VideoController1"
     PNP Device ID                                  : PCI\VEN_1002&DEV_67DF&SUBSYS_94701682&REV_CF\4&25438C51&0&0008
     Specification Version                          : N/A
     Install Date                                   : --> [NO Date Present]
     Adapter Compatibility                          : Advanced Micro Devices, Inc.
     Adapter DAC [Digital to Analog Converter] Type : Internal DAC(400MHz)
     Adapter RAM                                    : 4ÿ095 MB
     Video Processor                                : AMD Radeon Graphics Processor (0x67DF)
     Video Mode Description                         : 1920 x 1080 x 4294967296 kolor¢w
     Video Mode                                     : N/A
     Video Architecture                             : 5
     Video Memory Type                              : 2
     Time Of Last Reset                             : N/A
     Monochrome                                     : False
     Max Memory Supported                           : N/A
     Max Number Controlled                          : N/A
     Min Refresh Rate                               : 23
     Max Refresh Rate                               : 60
     ICM [Image Color Matching] Intent              : N/A
     ICM [Image Color Matching] Method              : N/A
     System Palette Entries                         : N/A
     Reserved System Palette Entries                : N/A
     Color Table Entries                            : N/A
     Number Of Color Planes                         : N/A
     Number Of Video Pages                          : N/A
     Current Bits Per Pixel                         : 32
     Current Horizontal Resolution                  : 1920
     Current Number Of Colors                       : 4294967296
     Current Number Of Columns                      : 0
     Current Number Of Rows                         : 0
     Current Refresh Rate                           : 59
     Current Scan Mode                              : 4
     Current Vertical Resolution                    : 1080
     Installed Display Drivers                      : C:\Windows\System32\DriverStore\FileRepository\u0381283.inf_amd64_49e777606ed7f517\B381690\aticfx64.dll,C:\Windows\System32\DriverStore\FileRepository\u0381283.inf_amd64_49e777606ed7f517\B381690\aticfx64.dll,C:\Windows\System32\DriverStore\FileRepository\u0381283.inf_amd64_49e777606ed7f517\B381690\aticfx64.dll,C:\Windows\System32\DriverStore\FileRepository\u0381283.inf_amd64_49e777606ed7f517\B381690\amdxc64.dll
     Driver Version                                 : 31.0.12015.1008
     Driver Date                                    : 25.07.2022 02:00:00 [Shows -1 Day]
     Driver Filename [.inf]                         : oem3.inf
     Driver Section [.inf]                          : ati2mtag_Polaris10
     Config Manager User Config                     : False
     Config Manager Error Code                      : 0
     Power Management Capabilities                  : N/A
     Power Management Supported                     : N/A
     Creation Class Name                            : Win32_VideoController
     System Creation Class Name                     : Win32_ComputerSystem
     Error Cleared                                  : N/A
     Error Description                              : N/A
     Last Error Code                                : N/A
     Protocol Supported                             : N/A
     Accelerator Capabilities                       : N/A
     Availability                                   : 3
     Capability Descriptions                        : N/A
     Device Specific Pens                           : N/A
     Dither Type                                    : 0
     Scope                                          : System.Management.ManagementScope
     Path                                           : \\computername\root\cimv2:Win32_VideoController.DeviceID="VideoController1"
     Options                                        : System.Management.ObjectGetOptions
     Class Path                                     : \\computername\root\cimv2:Win32_VideoController
     Properties                                     : {AcceleratorCapabilities, AdapterCompatibility, AdapterDACType, AdapterRAM...}
     System Properties                              : {__GENUS, __CLASS, __SUPERCLASS, __DYNASTY...}
     Qualifiers                                     : {dynamic, Locale, provider, UUID}
     Status                                         : OK
     Status Info                                    : N/A
     Description                                    : Intel(R) HD Graphics 530
     Device ID                                      : VideoController2
     Path [Relative]                                : Win32_VideoController.DeviceID="VideoController2"
     PNP Device ID                                  : PCI\VEN_8086&DEV_1912&SUBSYS_19121849&REV_06\3&11583659&0&10
     Specification Version                          : N/A
     Install Date                                   : --> [NO Date Present]
     Adapter Compatibility                          : Intel Corporation
     Adapter DAC [Digital to Analog Converter] Type : Internal
     Adapter RAM                                    : 1ÿ024 MB
     Video Processor                                : Intel(R) HD Graphics Family
     Video Mode Description                         : N/A
     Video Mode                                     : N/A
     Video Architecture                             : 5
     Video Memory Type                              : 2
     Time Of Last Reset                             : N/A
     Monochrome                                     : False
     Max Memory Supported                           : N/A
     Max Number Controlled                          : N/A
     Min Refresh Rate                               : N/A
     Max Refresh Rate                               : N/A
     ICM [Image Color Matching] Intent              : N/A
     ICM [Image Color Matching] Method              : N/A
     System Palette Entries                         : N/A
     Reserved System Palette Entries                : N/A
     Color Table Entries                            : N/A
     Number Of Color Planes                         : N/A
     Number Of Video Pages                          : N/A
     Current Bits Per Pixel                         : N/A
     Current Horizontal Resolution                  : N/A
     Current Number Of Colors                       : N/A
     Current Number Of Columns                      : N/A
     Current Number Of Rows                         : N/A
     Current Refresh Rate                           : N/A
     Current Scan Mode                              : N/A
     Current Vertical Resolution                    : N/A
     Installed Display Drivers                      : C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_1dc9fc8d5e442f6a\igdumdim64.dll,C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_1dc9fc8d5e442f6a\igd10iumd64.dll,C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_1dc9fc8d5e442f6a\igd10iumd64.dll,C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_1dc9fc8d5e442f6a\igd12umd64.dll
     Driver Version                                 : 30.0.101.1340
     Driver Date                                    : 03.02.2022 01:00:00 [Shows -1 Day]
     Driver Filename [.inf]                         : oem7.inf
     Driver Section [.inf]                          : iSKLD_w10_DS
     Config Manager User Config                     : False
     Config Manager Error Code                      : 0
     Power Management Capabilities                  : N/A
     Power Management Supported                     : N/A
     Creation Class Name                            : Win32_VideoController
     System Creation Class Name                     : Win32_ComputerSystem
     Error Cleared                                  : N/A
     Error Description                              : N/A
     Last Error Code                                : N/A
     Protocol Supported                             : N/A
     Accelerator Capabilities                       : N/A
     Availability                                   : 8
     Capability Descriptions                        : N/A
     Device Specific Pens                           : N/A
     Dither Type                                    : N/A
     Scope                                          : System.Management.ManagementScope
     Path                                           : \\computername\root\cimv2:Win32_VideoController.DeviceID="VideoController2"
     Options                                        : System.Management.ObjectGetOptions
     Class Path                                     : \\computername\root\cimv2:Win32_VideoController
     Properties                                     : {AcceleratorCapabilities, AdapterCompatibility, AdapterDACType, AdapterRAM...}
     System Properties                              : {__GENUS, __CLASS, __SUPERCLASS, __DYNASTY...}
     Qualifiers                                     : {dynamic, Locale, provider, UUID}
     Status                                         : OK
     Status Info                                    : N/A
    
    
    

    The description shows Description : Radeon (TM) RX 470 Graphics
      My Computer


  9. Posts : 19
    Windows 10 Home
    Thread Starter
       #9

    Paul Black said:
    Hello @bugreporter,

    I have posted the results so that others can also look to see if something stands out. Some people will NOT download files from Forums or Websites. There is NO sensitive information included.

    Code:
    
     Description                                    : Radeon (TM) RX 470 Graphics
     Device ID                                      : VideoController1
     Path [Relative]                                : Win32_VideoController.DeviceID="VideoController1"
     PNP Device ID                                  : PCI\VEN_1002&DEV_67DF&SUBSYS_94701682&REV_CF\4&25438C51&0&0008
     Specification Version                          : N/A
     Install Date                                   : --> [NO Date Present]
     Adapter Compatibility                          : Advanced Micro Devices, Inc.
     Adapter DAC [Digital to Analog Converter] Type : Internal DAC(400MHz)
     Adapter RAM                                    : 4ÿ095 MB
     Video Processor                                : AMD Radeon Graphics Processor (0x67DF)
     Video Mode Description                         : 1920 x 1080 x 4294967296 kolor¢w
     Video Mode                                     : N/A
     Video Architecture                             : 5
     Video Memory Type                              : 2
     Time Of Last Reset                             : N/A
     Monochrome                                     : False
     Max Memory Supported                           : N/A
     Max Number Controlled                          : N/A
     Min Refresh Rate                               : 23
     Max Refresh Rate                               : 60
     ICM [Image Color Matching] Intent              : N/A
     ICM [Image Color Matching] Method              : N/A
     System Palette Entries                         : N/A
     Reserved System Palette Entries                : N/A
     Color Table Entries                            : N/A
     Number Of Color Planes                         : N/A
     Number Of Video Pages                          : N/A
     Current Bits Per Pixel                         : 32
     Current Horizontal Resolution                  : 1920
     Current Number Of Colors                       : 4294967296
     Current Number Of Columns                      : 0
     Current Number Of Rows                         : 0
     Current Refresh Rate                           : 59
     Current Scan Mode                              : 4
     Current Vertical Resolution                    : 1080
     Installed Display Drivers                      : C:\Windows\System32\DriverStore\FileRepository\u0381283.inf_amd64_49e777606ed7f517\B381690\aticfx64.dll,C:\Windows\System32\DriverStore\FileRepository\u0381283.inf_amd64_49e777606ed7f517\B381690\aticfx64.dll,C:\Windows\System32\DriverStore\FileRepository\u0381283.inf_amd64_49e777606ed7f517\B381690\aticfx64.dll,C:\Windows\System32\DriverStore\FileRepository\u0381283.inf_amd64_49e777606ed7f517\B381690\amdxc64.dll
     Driver Version                                 : 31.0.12015.1008
     Driver Date                                    : 25.07.2022 02:00:00 [Shows -1 Day]
     Driver Filename [.inf]                         : oem3.inf
     Driver Section [.inf]                          : ati2mtag_Polaris10
     Config Manager User Config                     : False
     Config Manager Error Code                      : 0
     Power Management Capabilities                  : N/A
     Power Management Supported                     : N/A
     Creation Class Name                            : Win32_VideoController
     System Creation Class Name                     : Win32_ComputerSystem
     Error Cleared                                  : N/A
     Error Description                              : N/A
     Last Error Code                                : N/A
     Protocol Supported                             : N/A
     Accelerator Capabilities                       : N/A
     Availability                                   : 3
     Capability Descriptions                        : N/A
     Device Specific Pens                           : N/A
     Dither Type                                    : 0
     Scope                                          : System.Management.ManagementScope
     Path                                           : \\computername\root\cimv2:Win32_VideoController.DeviceID="VideoController1"
     Options                                        : System.Management.ObjectGetOptions
     Class Path                                     : \\computername\root\cimv2:Win32_VideoController
     Properties                                     : {AcceleratorCapabilities, AdapterCompatibility, AdapterDACType, AdapterRAM...}
     System Properties                              : {__GENUS, __CLASS, __SUPERCLASS, __DYNASTY...}
     Qualifiers                                     : {dynamic, Locale, provider, UUID}
     Status                                         : OK
     Status Info                                    : N/A
     Description                                    : Intel(R) HD Graphics 530
     Device ID                                      : VideoController2
     Path [Relative]                                : Win32_VideoController.DeviceID="VideoController2"
     PNP Device ID                                  : PCI\VEN_8086&DEV_1912&SUBSYS_19121849&REV_06\3&11583659&0&10
     Specification Version                          : N/A
     Install Date                                   : --> [NO Date Present]
     Adapter Compatibility                          : Intel Corporation
     Adapter DAC [Digital to Analog Converter] Type : Internal
     Adapter RAM                                    : 1ÿ024 MB
     Video Processor                                : Intel(R) HD Graphics Family
     Video Mode Description                         : N/A
     Video Mode                                     : N/A
     Video Architecture                             : 5
     Video Memory Type                              : 2
     Time Of Last Reset                             : N/A
     Monochrome                                     : False
     Max Memory Supported                           : N/A
     Max Number Controlled                          : N/A
     Min Refresh Rate                               : N/A
     Max Refresh Rate                               : N/A
     ICM [Image Color Matching] Intent              : N/A
     ICM [Image Color Matching] Method              : N/A
     System Palette Entries                         : N/A
     Reserved System Palette Entries                : N/A
     Color Table Entries                            : N/A
     Number Of Color Planes                         : N/A
     Number Of Video Pages                          : N/A
     Current Bits Per Pixel                         : N/A
     Current Horizontal Resolution                  : N/A
     Current Number Of Colors                       : N/A
     Current Number Of Columns                      : N/A
     Current Number Of Rows                         : N/A
     Current Refresh Rate                           : N/A
     Current Scan Mode                              : N/A
     Current Vertical Resolution                    : N/A
     Installed Display Drivers                      : C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_1dc9fc8d5e442f6a\igdumdim64.dll,C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_1dc9fc8d5e442f6a\igd10iumd64.dll,C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_1dc9fc8d5e442f6a\igd10iumd64.dll,C:\Windows\System32\DriverStore\FileRepository\iigd_dch.inf_amd64_1dc9fc8d5e442f6a\igd12umd64.dll
     Driver Version                                 : 30.0.101.1340
     Driver Date                                    : 03.02.2022 01:00:00 [Shows -1 Day]
     Driver Filename [.inf]                         : oem7.inf
     Driver Section [.inf]                          : iSKLD_w10_DS
     Config Manager User Config                     : False
     Config Manager Error Code                      : 0
     Power Management Capabilities                  : N/A
     Power Management Supported                     : N/A
     Creation Class Name                            : Win32_VideoController
     System Creation Class Name                     : Win32_ComputerSystem
     Error Cleared                                  : N/A
     Error Description                              : N/A
     Last Error Code                                : N/A
     Protocol Supported                             : N/A
     Accelerator Capabilities                       : N/A
     Availability                                   : 8
     Capability Descriptions                        : N/A
     Device Specific Pens                           : N/A
     Dither Type                                    : N/A
     Scope                                          : System.Management.ManagementScope
     Path                                           : \\computername\root\cimv2:Win32_VideoController.DeviceID="VideoController2"
     Options                                        : System.Management.ObjectGetOptions
     Class Path                                     : \\computername\root\cimv2:Win32_VideoController
     Properties                                     : {AcceleratorCapabilities, AdapterCompatibility, AdapterDACType, AdapterRAM...}
     System Properties                              : {__GENUS, __CLASS, __SUPERCLASS, __DYNASTY...}
     Qualifiers                                     : {dynamic, Locale, provider, UUID}
     Status                                         : OK
     Status Info                                    : N/A
    
    
    

    The description shows Description : Radeon (TM) RX 470 Graphics
    Thanks, in that log I only changed my real computer name to "computername"
      My Computer


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

    Hello @bugreporter,

    bugreporter said:
    Thanks, in that log I only changed my real computer name to "computername"
    I know. I would have done that anyway before posting and also advised you to change the .txt file, but you had already done that.
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or 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:54.
Find Us




Windows 10 Forums