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.204
Domains :
Cant Read [ /etc/named.conf ]
User : SISTEMA
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
C: /
Windows /
diagnostics /
system /
IEBrowseWeb /
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
11.12
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.diagpkg
9.65
KB
-rw-rw-rw-
2019-12-07 10:09
DiagPackage.dll
90.5
KB
-rw-rw-rw-
2019-12-07 10:09
IEBrowseWeb_TroubleShooter.ps1
562
B
-rw-rw-rw-
2019-12-07 10:09
RS_Disableaddon.ps1
2.21
KB
-rw-rw-rw-
2019-12-07 10:09
RS_DisableaddonLoadingTime.ps1
2.54
KB
-rw-rw-rw-
2019-12-07 10:09
RS_ResetCacheSize.ps1
1.51
KB
-rw-rw-rw-
2019-12-07 10:09
RS_Resetpagesyncpolicy.ps1
1.43
KB
-rw-rw-rw-
2019-12-07 10:09
RS_RestoreIEconnection.ps1
2.37
KB
-rw-rw-rw-
2019-12-07 10:09
TS_IEAddon.ps1
12.14
KB
-rw-rw-rw-
2019-12-07 10:09
TS_IEAddonLoadingTime.ps1
1.43
KB
-rw-rw-rw-
2019-12-07 10:09
TS_IEconnection.ps1
1.47
KB
-rw-rw-rw-
2019-12-07 10:09
TS_pagesyncpolicy.ps1
946
B
-rw-rw-rw-
2019-12-07 10:09
TS_tempfilecachesize.ps1
1.05
KB
-rw-rw-rw-
2019-12-07 10:09
VF_IEDefectiveAddon.ps1
1.1
KB
-rw-rw-rw-
2019-12-07 10:09
Save
Rename
# Copyright � 2008, Microsoft Corporation. All rights reserved. # #Localization Data # Import-LocalizedData -BindingVariable localizationString -FileName IEBrowseWeb_TroubleShooter . .\TS_IEAddon.ps1 Write-DiagProgress -activity $localizationString.Check_DefectiveAddon [bool]$result = $false # #Get the IE Add-on module informations from registry # [System.Collections.Hashtable]$ModulesHash = GetAddonModules if($ModulesHash -ne $null -and $ModulesHash.count -gt 0) { WriteIEAddonReport $ModulesHash "detectedIEAddon" # # get IE Bad Addon # [System.Collections.Hashtable]$DefectiveAddonParaHash = CheckDefectiveAddon $ModulesHash if($DefectiveAddonParaHash -ne $null -and $DefectiveAddonParaHash.Count -gt 0) { $result = $true $DefectiveAddonParaHash | Export-Clixml -path DefectiveAddonParaHash.xml WriteIEAddonReport $DefectiveAddonParaHash "defectiveaddon" } } if($result) { Update-DiagrootCause -id RC_defectiveIEaddon -Detected $true } else { Update-DiagrootCause -id RC_defectiveIEaddon -Detected $false }