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 /
Device /
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_DetectingDevice.ps1
5.09
KB
-rw-rw-rw-
2019-12-07 10:09
CL_Utility.ps1
43.92
KB
-rw-rw-rw-
2019-12-07 10:09
DB_DeviceErrorLibrary.ps1
5.08
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.diagpkg
30.87
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.dll
54.5
KB
-rw-rw-rw-
2019-12-07 10:09
RS_CheckDriversOnInstall.ps1
2.8
KB
-rw-rw-rw-
2019-12-07 10:09
RS_DeviceDriverNeedsUpdate.ps1
2.83
KB
-rw-rw-rw-
2019-12-07 10:09
RS_DriverNotFound.ps1
2.75
KB
-rw-rw-rw-
2019-12-07 10:09
RS_EnableDevice.ps1
1.54
KB
-rw-rw-rw-
2019-12-07 10:09
RS_InformCustomer.ps1
6.56
KB
-rw-rw-rw-
2019-12-07 10:09
RS_PendingRestart.ps1
394
B
-rw-rw-rw-
2019-12-07 10:09
RS_RescanAllDevices.ps1
834
B
-rw-rw-rw-
2019-12-07 10:09
TS_CheckDriversOnInstall.ps1
1.74
KB
-rw-rw-rw-
2019-12-07 10:09
TS_DeviceDisabled.ps1
2.69
KB
-rw-rw-rw-
2019-12-07 10:09
TS_DeviceDriverNeedsUpdate.ps1
3.31
KB
-rw-rw-rw-
2019-12-07 10:09
TS_DriverNotFound.ps1
3.35
KB
-rw-rw-rw-
2019-12-07 10:09
TS_HardwareDeviceMain.ps1
4.55
KB
-rw-rw-rw-
2019-12-07 10:09
TS_InformCustomer.ps1
3.26
KB
-rw-rw-rw-
2019-12-07 10:09
TS_NotWorkingProperly.ps1
3.21
KB
-rw-rw-rw-
2019-12-07 10:09
TS_PendingRestart.ps1
1.85
KB
-rw-rw-rw-
2019-12-07 10:09
TS_RescanAllDevices.ps1
1.33
KB
-rw-rw-rw-
2019-12-07 10:09
VF_RescanAllDevices.ps1
995
B
-rw-rw-rw-
2019-12-07 10:09
Save
Rename
# Copyright � 2017, Microsoft Corporation. All rights reserved. #CL_DetectingDevice Import-LocalizedData -BindingVariable localizationString -FileName CL_LocalizationData . .\DB_DeviceErrorLibrary.ps1 . .\CL_Utility.ps1 function DetectingDeviceFromPnPEntity() { $HashProblemDeviceTable = New-Object System.Collections.HashTable if($HashProblemDeviceTable -eq $Null) { return $False } $PnPObjects = Get-WmiObject -Class Win32_PnPEntity foreach($DeviceItem in $PnPObjects) { [string]$DeviceName = $DeviceItem.Name [string]$DeviceID = $DeviceItem.PNPDeviceID [string]$DeviceErrorCode = $DeviceItem.ConfigManagerErrorCode if(($DeviceName -eq $Null) -or ($DeviceID -eq $Null) -or ($DeviceErrorCode -eq $Null)) { continue } if($DeviceID -eq "") { continue } # Checking Error Code 45 for not connected device for Windows 10 if(($DeviceErrorCode -ne "0") -and ($DeviceErrorCode -ne "45")) { if($HashProblemDeviceTable.Contains($DeviceID) -eq $False) { $HashProblemDeviceTable.Add($DeviceID, $DeviceID) } } } return $HashProblemDeviceTable } Function Get-ErrorCodeStringMapping($deviceID) { $deviceDetails = @() $ProblemDevice = $null try { $ProblemDevice = Get-WmiObject -Class Win32_PnPEntity | Where-Object -FilterScript {$_.DeviceID -eq $deviceID} if(($ProblemDevice -ne $Null) -and ($ProblemDevice.ConfigManagerErrorCode -ne $Null)) { [string]$DeviceName = $ProblemDevice.Name [string]$ErrorCode = $ProblemDevice.ConfigManagerErrorCode # Check Disabled if($HashDisabled.Contains($ErrorCode) -eq $True) { $devDescription = $localizationString.DeviceDisable $devDescription = $devDescription -replace ("%DEVICENAME%",$DeviceName) $devValue = "$deviceID#$ErrorCode" $deviceDetails += @{"Name" = $devDescription; "Value" = $devValue} } # Check if driver not found elseif(($HashDriverNotFound.Contains($ErrorCode) -eq $True) -or ((DriverNotFound $DeviceID) -eq $true)) { $devDescription = $localizationString.DriverNotFound $devDescription = $devDescription -replace ("%DEVICENAME%",$DeviceName) $devValue = "$deviceID#$ErrorCode" $deviceDetails += @{"Name" = $devDescription; "Value" = $devValue} } # Check if driver has problem elseif(($HashUpdateDriver.Contains($ErrorCode) -eq $True)) { $devDescription = $localizationString.UpdateDriver $devDescription = $devDescription -replace ("%DEVICENAME%",$DeviceName) $devValue = "$deviceID#$ErrorCode" $deviceDetails += @{"Name" = $devDescription; "Value" = $devValue} } # $HashDeviceErrors is related to RC_NotWorkingproperly. elseif(($HashDeviceErrors.Contains($ErrorCode) -eq $True)) { $devDescription = $localizationString.DeviceError $devDescription = $devDescription -replace ("%DEVICENAME%",$DeviceName) $devValue = "$deviceID#$ErrorCode" $deviceDetails += @{"Name" = $devDescription; "Value" = $devValue} } # $HashInformCx is related to RC_InformCX elseif(($HashInformCx.Contains($ErrorCode) -eq $True)) { $devDescription = $localizationString.DeviceError $devDescription = $devDescription -replace ("%DEVICENAME%",$DeviceName) $devValue = "$deviceID#$ErrorCode" $deviceDetails += @{"Name" = $devDescription; "Value" = $devValue} } } return $deviceDetails } Catch [System.Exception] { Write-ExceptionTelemetry "Get-ErrorCodeStringMapping" $ErrorCode $_ $errorMsg = $_.Exception.Message $errorMsg | ConvertTo-Xml | Update-DiagReport -Id "CL_DetectingDevice" -Name "CL_DetectingDevice" -Verbosity Debug } } Function Get-HiddenDevices() { <# DESCRIPTION: List all hidden devices(only for Windows10(build 10586 onwards)) ARGUMENTS: None RETURN: Returns list of hidden devices with friendly names #> $allHiddenDevice = @() $allHiddenDeviceList = @() $hiddendeviceChoices = @() $hiddenDevList = Get-PnpDevice | Get-PnpDeviceProperty -KeyName 'DEVPKEY_Device_IsPresent' | ?{$_.Data -eq $false} if($hiddenDevList.Count -ge 1) { foreach($hiddenid in $hiddenDevList.InstanceID) { $allHiddenDevice += Get-PnpDevice | Where-Object -FilterScript {$_.InstanceId -eq $hiddenid} } foreach($hiddendev in $allHiddenDevice.InstanceID) { $HiddenDevice = Get-PnpDevice | Where-Object -FilterScript {$_.InstanceId -eq $hiddendev} $allHiddenDeviceList += $HiddenDevice.FriendlyName } # Remove duplicate hidden devices $allHiddenDeviceList = $allHiddenDeviceList | Select -Unique # Creating final list of hidden devices foreach($choice in $allHiddenDeviceList) { $devDescription = $localizationString.HiddenDevice $devDescription = $devDescription -replace ("%DEVICENAME%",$choice) $hiddendeviceChoices += @{"Name" = $devDescription; "Value" = $choice; "Description" = ""; "ExtensionPoint" = ""} } } return $hiddendeviceChoices }