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 /
Speech /
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_Utilities.ps1
95.36
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.diagpkg
14.27
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.dll
77
KB
-rw-rw-rw-
2019-12-07 10:09
MF_SpeechDiagnostic.ps1
2.83
KB
-rw-rw-rw-
2019-12-07 10:09
RS_CalibrationRequired.ps1
3.01
KB
-rw-rw-rw-
2019-12-07 10:09
SpeechDiagnosticUtil.dll
94.5
KB
-rw-rw-rw-
2024-05-16 16:43
VF_CalibrationRequired.ps1
1.02
KB
-rw-rw-rw-
2019-12-07 10:09
Save
Rename
# Copyright © 2016, Microsoft Corporation. All rights reserved. # :: ======================================================= :: <# DESCRIPTION: VF_CalibrationRequired.ps1 verifies whether the device is calibrated. ARGUMENTS: AdapterName: The name of the device which is being calibrated RETURNS: None #> #==================================================================================== # Initialize #==================================================================================== PARAM($adapterName) #==================================================================================== # Main #==================================================================================== $detected = $false if(test-path 'calibrationresult.log') { $detected = ((Get-Content 'CalibrationResult.log' | ?{ $_ -match 'MicDiagnosticPass'}).Count -eq 0) } else { $detected = $true } Update-DiagRootCause -ID 'RC_CalibrationRequired' -InstanceId ($adapterName) -Detected $detected