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 /
Bluetooth /
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
BluetoothDiagnosticUtil.dll
68.5
KB
-rw-rw-rw-
2024-05-16 16:43
CL_Utility.ps1
33.03
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.diagpkg
16.15
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.dll
2.5
KB
-rw-rw-rw-
2019-12-07 10:09
RC_BTRadioOff.ps1
1.19
KB
-rw-rw-rw-
2019-12-07 10:09
RC_CheckBT.ps1
1.17
KB
-rw-rw-rw-
2019-12-07 10:09
RC_Disabled.ps1
2.01
KB
-rw-rw-rw-
2019-12-07 10:09
RC_DriverProblem.ps1
2.23
KB
-rw-rw-rw-
2019-12-07 10:09
RC_OtherIssue.ps1
1.69
KB
-rw-rw-rw-
2019-12-07 10:09
RC_PendingRestart.ps1
1.1
KB
-rw-rw-rw-
2019-12-07 10:09
RS_BTRadioOff.ps1
1.39
KB
-rw-rw-rw-
2019-12-07 10:09
RS_CheckBT.ps1
747
B
-rw-rw-rw-
2019-12-07 10:09
RS_Disabled.ps1
1.19
KB
-rw-rw-rw-
2019-12-07 10:09
RS_DriverProblem.ps1
1.28
KB
-rw-rw-rw-
2019-12-07 10:09
RS_OtherIssue.ps1
712
B
-rw-rw-rw-
2019-12-07 10:09
RS_PendingRestart.ps1
620
B
-rw-rw-rw-
2019-12-07 10:09
TS_Main.ps1
5.95
KB
-rw-rw-rw-
2019-12-07 10:09
VF_BTRadioOff.ps1
1.34
KB
-rw-rw-rw-
2019-12-07 10:09
Save
Rename
# Copyright © 2016, Microsoft Corporation. All rights reserved. # :: ======================================================= :: # This script is invoked either from TS_Main.ps1 or from Troubleshooter (msdt.exe) # TS_Main.ps1 passes only $problemDeviceID parameter whereas msdt will pass both $problemDeviceID and $action (as 'Verify') # This script is to detect Known error codes defined in CL_Utility.ps1 Param($problemDeviceID, $action) #==================================================================================== # Initialize #==================================================================================== Import-LocalizedData -BindingVariable Strings_RC_DriverProblem -FileName CL_LocalizationData [bool]$detected = $false #==================================================================================== # Load Utilities #==================================================================================== . ./CL_Utility.ps1 #==================================================================================== # Main #==================================================================================== Write-DiagProgress -Activity $Strings_RC_DriverProblem.ID_PROG_DriverProblems if(![string]::IsNullOrWhiteSpace($problemDeviceID)) { $problemDevice = (Get-WmiObject -Class CIM_LogicalDevice | ? {($_.DeviceID -eq $problemDeviceID)}) $problemDeviceName = $problemDevice.Name $errorCode = $problemDevice.ConfigManagerErrorCode if($knownErrorCodes.Keys -contains $errorCode) { $detected = $true } } [string]$propertyName = '' if($detected) { Update-DiagRootCause -ID 'RC_DriverProblem' -IID $problemDeviceID -Detected $detected -Parameter @{'ProblemDeviceID'= $problemDeviceID; 'ProblemDeviceName'= $problemDeviceName} $propertyName = "DetectedDeviceError" } else { if ($action -eq 'Verify') { Update-DiagRootCause -ID 'RC_DriverProblem' -IID $problemDeviceID -Detected $detected -Parameter @{'ProblemDeviceID'= $problemDeviceID; 'ProblemDeviceName'= $problemDeviceName} $propertyName = "VerifyDeviceError" } } if($propertyName.Length -gt 0) { GetDeviceInfoAndWriteTrace $problemDeviceID $propertyName } return $detected