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 localizationString . .\CL_Utility.ps1 Write-DiagProgress -activity $localizationString.Disable_Defectiveaddon #retrive DefectiveAddonParaHash from xml file $DefectiveAddonParaHash = Import-Clixml DefectiveAddonParaHash.xml $choices = new-object System.Collections.ArrayList -ErrorAction Stop foreach($key in $DefectiveAddonParaHash.keys) { $addonname = GetAddonName $key $publishername = GetCertPublisher $key if([string]::IsNullOrEmpty($publishername)) { $publishername = GetAddonPublisher $key if([string]::IsNullOrEmpty($publishername)) { $publishername = $localizationString.add_onPublisherDefaultValue } else { $publishername = $localizationString.add_onPublisherNotVerified + " " + $publishername } } $choices += @{"Name" = "$addonname, "+$publishername; "Description" = $localizationString.add_onName + " $addonname, " + $localizationString.add_onPublisher + " $publishername"; "Value" = "$key"} } if($choices -ne $null -and $choices.count -lt 1) { return } $values = Get-Diaginput -id IT_Disableaddon -choice $choices if($values -eq $null) { return } if(-not(Test-Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Ext")) { New-Item -path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Ext" -ErrorAction Stop } if(-not(Test-Path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Ext\Settings")) { New-Item -path "HKCU:\Software\Microsoft\Windows\CurrentVersion\Ext\Settings" -ErrorAction Stop } $ObjectArray = DisableAddon $values if($ObjectArray.count -gt 0) { $ObjectArray | select-object -Property @{Name=$localizationString.reg_path; Expression={$_.reg_path}} , @{Name=$localizationString.value_name; Expression={$_.value_name}} , @{Name=$localizationString.regitemvalue_original; Expression={$_.regitemvalue_original}},@{Name=$localizationString.regitemvalue_reset; Expression={$_.regitemvalue_reset}} | convertto-xml | Update-DiagReport -id ProblematicAddOnDisabling -name $localizationString.Resolver_name_ProblematicAddOnDisabling }