Windows NT KAMIDAKI 10.0 build 19045 (Windows 10) AMD64
Apache/2.4.58 (Win64) OpenSSL/3.1.3 PHP/8.3.9
Server IP : 192.168.3.16 & Your IP : 216.73.216.140
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
Windows /
diagnostics /
system /
Video /
Delete
Unzip
Name
Size
Permission
Date
Action
en-US
[ DIR ]
drwxrwxrwx
2023-03-23 12:54
pt-BR
[ DIR ]
drwxrwxrwx
2019-12-07 15:53
CL_MutexVerifiers.ps1
21.51
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.diagpkg
26.01
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.dll
12.5
KB
-rw-rw-rw-
2025-07-09 07:54
GraphicsDriverRegTool-Definitions.psm1
2.56
KB
-rw-rw-rw-
2019-12-07 10:09
RC_aud_reg_settings.ps1
1.44
KB
-rw-rw-rw-
2019-12-07 10:09
RC_viddrv_displaytopology.ps1
4.3
KB
-rw-rw-rw-
2019-12-07 10:09
RC_viddrv_driverblocklist.ps1
1.58
KB
-rw-rw-rw-
2019-12-07 10:09
RC_viddrv_hevccodeccheck.ps1
1.6
KB
-rw-rw-rw-
2019-12-07 10:09
RC_viddrv_hwdrmcheck.ps1
1.38
KB
-rw-rw-rw-
2019-12-07 10:09
RC_viddrv_msvideo.ps1
1.49
KB
-rw-rw-rw-
2019-12-07 10:09
RC_viddrv_unsigned.ps1
2.55
KB
-rw-rw-rw-
2019-12-07 10:09
RS_aud_reg_settings.ps1
1.14
KB
-rw-rw-rw-
2019-12-07 10:09
RS_viddrv_displaytopology.ps1
956
B
-rw-rw-rw-
2019-12-07 10:09
RS_viddrv_driverblocklist.ps1
8.45
KB
-rw-rw-rw-
2019-12-07 10:09
RS_viddrv_genericfailure.ps1
942
B
-rw-rw-rw-
2019-12-07 10:09
RS_viddrv_hevccodeccheck.ps1
901
B
-rw-rw-rw-
2019-12-07 10:09
RS_viddrv_hwdrmcheck.ps1
897
B
-rw-rw-rw-
2019-12-07 10:09
RS_viddrv_msvideo.ps1
914
B
-rw-rw-rw-
2019-12-07 10:09
RS_viddrv_unsigned.ps1
981
B
-rw-rw-rw-
2019-12-07 10:09
TS_Main.ps1
841
B
-rw-rw-rw-
2019-12-07 10:09
VF_aud_reg_settings.ps1
1.08
KB
-rw-rw-rw-
2019-12-07 10:09
VF_viddrv_driverblocklist.ps1
1.49
KB
-rw-rw-rw-
2019-12-07 10:09
VF_viddrv_msvideo.ps1
1.08
KB
-rw-rw-rw-
2019-12-07 10:09
VF_viddrv_unsigned.ps1
1.08
KB
-rw-rw-rw-
2019-12-07 10:09
VideoDiagnosticUtil.dll
59.5
KB
-rw-rw-rw-
2025-07-09 07:54
utils_SetupEnv.ps1
14.02
KB
-rw-rw-rw-
2019-12-07 10:09
Save
Rename
# Copyright � 2018, Microsoft Corporation. All rights reserved. #*================================================================================= # Parameters #*================================================================================= #*================================================================================= # Load Utilities #*================================================================================= . ./utils_SetupEnv.ps1 #*================================================================================= # Initialize #*================================================================================= Import-LocalizedData -BindingVariable Strings_Main -FileName CL_LocalizationData #*================================================================================= # Run detection logic #*================================================================================= Write-DiagProgress -Activity $Strings_Main.ID_Check_DisplayTopology $isLowRes = $false $string = "" $stDisplayTopologyMapXML = New-Object System.Collections.ArrayList $stDisplayTopologyMap = [VideoDiagnostic.VideoConfigManager]::IsDiagnosticDone() if($stDisplayTopologyMap.hr -ne 0 ) { update-diagrootcause -id "RC_genericfailure" -detected $true -Parameter @{"HRESULT"= $stDisplayTopologyMap.hr} } else { # create a string to display to the user For ($i = 0; $i -lt $stDisplayTopologyMap.uiNumAdapters; $i++){ $string += "Adapter:" + $i + " Device ID " + $($stDisplayTopologyMap.rgAdapterInfo[$i].uiDeviceId) + " `n" #convert char array to string to remove the null operator $strDescription = New-Object System.String($stDisplayTopologyMap.rgAdapterInfo[$i].chDescription,0,$stDisplayTopologyMap.rgAdapterInfo[$i].chDescription.Length) $string += " Adapter Name: " + $strDescription.Trim([char]0) + " `n" $numMonitors = $stDisplayTopologyMap.rgAdapterInfo[$i].rgOutputInfo[0].uiNumMonitorsAttached $string += " Monitors Attached " + $($numMonitors) + " `n" $stDisplayTopologyMapXML.Add((New-Object PSObject -Property @{ 'Adapter'= $i 'Device ID'= $stDisplayTopologyMap.rgAdapterInfo[$i].uiDeviceId 'Adapter Name'= $strDescription.Trim([char]0) 'Monitors Attached' = $numMonitors })) For ($j = 0; $j -lt $stDisplayTopologyMap.rgAdapterInfo[$i].uiNumOutputs; $j++){ $string += "Output:" + $j + " `n" $object = New-Object �TypeName PSObject $object | Add-Member �MemberType NoteProperty �Name "Output" �Value $j $string += " Primary " + $($stDisplayTopologyMap.rgAdapterInfo[$i].rgOutputInfo[$j].uiIsPrimary) + " `n" $object | Add-Member �MemberType NoteProperty �Name "Primary" �Value $stDisplayTopologyMap.rgAdapterInfo[$i].rgOutputInfo[$j].uiIsPrimary For ($k = 0; $k -lt $stDisplayTopologyMap.rgAdapterInfo[$i].rgOutputInfo[$j].uiNumMonitorsAttached; $k++){ $strConnectorType = New-Object System.String($stDisplayTopologyMap.rgAdapterInfo[$i].rgOutputInfo[$j].rgMonitorInfo[$k].chConnectorType, 0, $stDisplayTopologyMap.rgAdapterInfo[$i].rgOutputInfo[$j].rgMonitorInfo[$k].chConnectorType.Length) $string += " Connector Type " + $strConnectorType.Trim([char]0) + " `n" $object | Add-Member �MemberType NoteProperty �Name "Connector Type" �Value $strConnectorType.Trim([char]0) } $string += " ResolutionX " + $($stDisplayTopologyMap.rgAdapterInfo[$i].rgOutputInfo[$j].uiResolutionX) + " `n" $object | Add-Member �MemberType NoteProperty �Name "ResolutionX" �Value $stDisplayTopologyMap.rgAdapterInfo[$i].rgOutputInfo[$j].uiResolutionX if ($stDisplayTopologyMap.rgAdapterInfo[$i].rgOutputInfo[$j].uiResolutionX -lt 1280) { $isLowRes = $true } $string += " ResolutionY " + $($stDisplayTopologyMap.rgAdapterInfo[$i].rgOutputInfo[$j].uiResolutionY) + " `n" $object | Add-Member �MemberType NoteProperty �Name "ResolutionY" �Value $stDisplayTopologyMap.rgAdapterInfo[$i].rgOutputInfo[$j].uiResolutionY $stDisplayTopologyMapXML.Add($object) } } # send to detailed information page $stDisplayTopologyMapXML | convertto-xml | update-diagreport -id "Display Topology" -name "Display Topology" -verbosity informational if ($isLowRes -eq $true) { update-diagrootcause -id "RC_LowResolution" -detected $true -Parameter @{'DisplayInfo' = $string} } }