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 from Troubleshooter (msdt.exe) # This script is to verify the radio state after resetting it. # Bluetooth radio state ($bluetoothRadioState) is updated in CL_Utility.ps1 #==================================================================================== # Initialize #==================================================================================== Import-LocalizedData -BindingVariable Strings_VF_BTRadioOff -FileName CL_LocalizationData $detected = $false #==================================================================================== # Load Utilities #==================================================================================== . .\CL_Utility.ps1 #==================================================================================== # Main #==================================================================================== # Apply the Resolution if the Radio state is either Off or Unknown. $detected = $bluetoothRadioState -ne 'RadioState_On' Update-DiagRootCause -ID 'RC_BTRadioOff' -Detected $detected -Parameter @{'BluetoothRadioState'= $bluetoothRadioState} Write-DiagTelemetry -Property "VerifyRadioState" -Value $bluetoothRadioState return $detected