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 /
DeviceCenter /
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_Utility.ps1
33.47
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.diagpkg
3.88
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.dll
2.5
KB
-rw-rw-rw-
2019-12-07 10:09
TS_DeviceCenter.ps1
1.35
KB
-rw-rw-rw-
2019-12-07 10:09
Save
Rename
# Copyright � 2008, Microsoft Corporation. All rights reserved. . .\CL_Utility.ps1 Import-LocalizedData -BindingVariable localizationString -FileName CL_LocalizationData Write-DiagProgress -activity $localizationString.Progress_Troubleshoot try { [string]$DeviceErrorInfo = Get-DiagInput -ID "IT_DeviceInfo" } catch { return } if([String]::IsNullOrEmpty($DeviceErrorInfo) -eq $True) { return } $DeviceDataArray = GetProblematicFunctionForObject $DeviceErrorInfo if($DeviceDataArray -eq $Null) { return } $PnPDeviceID = "" $PrinterName = "" foreach($DeviceData in $DeviceDataArray) { $DeviceType = $DeviceData.Type if([String]::IsNullOrEmpty($DeviceType) -eq $True) { return } if($DeviceType -eq "PNPDevice") { $PnPDeviceID += $DeviceData.DeviceID $PnPDeviceID += "#" } if($DeviceType -eq "Printer") { $PrinterName = $DeviceData.DeviceName } } if([String]::IsNullOrEmpty($PnPDeviceID) -eq $False) { $PnPDeviceID = $PnPDeviceID.Replace("&", "&") Update-DiagRootCause -id "RC_ProblematicPNPDevice" -Detected $true -p @{'DEVICEID' = $PnPDeviceID} } if([String]::IsNullOrEmpty($PrinterName) -eq $False) { Update-DiagRootCause -id "RC_ProblematicPrinter" -Detected $true -p @{'PRINTERNAME' = $PrinterName} }