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
/
Video
/
View File Name :
VF_viddrv_driverblocklist.ps1
# Copyright © 2018, Microsoft Corporation. All rights reserved. #*================================================================================= # Parameters #*================================================================================= #*================================================================================= # Load Utilities #*================================================================================= . ./utils_SetupEnv.ps1 #*================================================================================= # Initialize #*================================================================================= Import-LocalizedData -BindingVariable Strings_Main -FileName CL_LocalizationData #*================================================================================= #Run verifier logic #*================================================================================= # start HECI and HDCP service NET START cphs $status = (Get-Service -Name cphs).Status if ($status -ne 'Running') { $success = $false } NET START cplspcon $status = (Get-Service -Name cplspcon).Status if ($status -ne 'Running') { $success = $false } if ($success -eq $false) { get-diaginput -id "INT_driverblocklist" -Parameter @{'DriverName' = $DName ; 'DriverVersion' = $DVersion} } #*================================================================================= #End #*=================================================================================