Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
Windows
/
diagnostics
/
system
/
speech
/
Edit File Name :
VF_CalibrationRequired.ps1
# 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
Save