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. #DB_DeviceErrorLibrary Import-LocalizedData -BindingVariable localizationString -FileName CL_LocalizationData if ($HashDeviceErrors -eq $Null) { $HashDeviceErrors = New-Object System.Collections.HashTable if ($HashDeviceErrors.Values.Count -eq 0) { $HashDeviceErrors.Add("2", "") $HashDeviceErrors.Add("4", "") $HashDeviceErrors.Add("5", "") $HashDeviceErrors.Add("6", "") $HashDeviceErrors.Add("7", "") $HashDeviceErrors.Add("8", "") #$HashDeviceErrors.Add("9", "") $HashDeviceErrors.Add("11", "") #$HashDeviceErrors.Add("12", "") $HashDeviceErrors.Add("13", "") #$HashDeviceErrors.Add("14", "") $HashDeviceErrors.Add("15", "") #$HashDeviceErrors.Add("16", "") $HashDeviceErrors.Add("17", "") $HashDeviceErrors.Add("20", "") #$HashDeviceErrors.Add("21", "") $HashDeviceErrors.Add("23", "") # # We should not report DEVICE_NOT_THERE, as it usually is reported # by the PS/2 port when the computer is using USB mouse/keyboard. # This behavior is consistent with Device Manager/Center. # #$HashDeviceErrors.Add("24", "") $HashDeviceErrors.Add("25", "") $HashDeviceErrors.Add("26", "") $HashDeviceErrors.Add("27", "") #$HashDeviceErrors.Add("29", "") $HashDeviceErrors.Add("30", "") $HashDeviceErrors.Add("32", "") #$HashDeviceErrors.Add("33", "") #$HashDeviceErrors.Add("34", "") #$HashDeviceErrors.Add("35", "") #$HashDeviceErrors.Add("36", "") #$HashDeviceErrors.Add("38", "") $HashDeviceErrors.Add("41", "") #$HashDeviceErrors.Add("42", "") $HashDeviceErrors.Add("43", "") #$HashDeviceErrors.Add("44", "") $HashDeviceErrors.Add("45", "") #$HashDeviceErrors.Add("46", "") #$HashDeviceErrors.Add("47", "") $HashDeviceErrors.Add("48", "") #$HashDeviceErrors.Add("49", "") } } if ($HashDisabled -eq $Null) { $HashDisabled = New-Object System.Collections.HashTable if ($HashDisabled.Values.Count -eq 0) { $HashDisabled.Add("22", "22") } } if ($HashUpdateDriver -eq $Null) { $HashUpdateDriver = New-Object System.Collections.HashTable if ($HashUpdateDriver.Values.Count -eq 0) { $HashUpdateDriver.Add("1", "1") $HashUpdateDriver.Add("3", "3") $HashUpdateDriver.Add("10", "10") $HashUpdateDriver.Add("18", "18") $HashUpdateDriver.Add("19", "19") $HashUpdateDriver.Add("31", "31") $HashUpdateDriver.Add("37", "37") $HashUpdateDriver.Add("39", "39") $HashUpdateDriver.Add("40", "40") } } if ($HashDriverNotFound -eq $Null) { $HashDriverNotFound = New-Object System.Collections.HashTable if ($HashDriverNotFound.Values.Count -eq 0) { $HashDriverNotFound.Add("28", "28") } } if ($HashTitle -eq $Null) { $HashTitle = New-Object System.Collections.HashTable if ($HashTitle.Values.Count -eq 0) { $HashTitle.Add("14", $localizationString.Title_14) $HashTitle.Add("21", $localizationString.Title_21) $HashTitle.Add("41", $localizationString.Title_41) $HashTitle.Add("42", $localizationString.Title_42) $HashTitle.Add("44", $localizationString.Title_44) $HashTitle.Add("45", $localizationString.Title_45) $HashTitle.Add("47", $localizationString.Title_47) } } if ($HashHint -eq $Null) { $HashHint = New-Object System.Collections.HashTable if ($HashHint.Values.Count -eq 0) { $HashHint.Add("14", $localizationString.Hint_14) $HashHint.Add("21", $localizationString.Hint_21) $HashHint.Add("41", $localizationString.Hint_41) $HashHint.Add("42", $localizationString.Hint_42) $HashHint.Add("44", $localizationString.Hint_44) $HashHint.Add("45", $localizationString.Hint_45) $HashHint.Add("47", $localizationString.Hint_47) } } # Adding all error codes where customer needs to be notified. if ($HashInformCx -eq $Null) { $HashInformCx = New-Object System.Collections.HashTable if ($HashInformCx.Values.Count -eq 0) { $HashInformCx.Add("9", "") $HashInformCx.Add("12", "") $HashInformCx.Add("21", "") $HashInformCx.Add("33", "") $HashInformCx.Add("35", "") $HashInformCx.Add("46", "") $HashInformCx.Add("47", "") $HashInformCx.Add("49", "") $HashInformCx.Add("51", "") $HashInformCx.Add("52", "") $HashInformCx.Add("29", "") $HashInformCx.Add("36", "") $HashInformCx.Add("16", "") $HashInformCx.Add("34", "") $HashInformCx.Add("14", "") $HashInformCx.Add("38", "") $HashInformCx.Add("42", "") $HashInformCx.Add("44", "") $HashInformCx.Add("54", "") } }