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.52
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.restore_IEconnection $reg_path = "Registry::HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings" $ObjectArray = new-object System.Collections.ArrayList -ErrorAction Stop $MaxConnectionsPerServerproperty = GetItemPropertyValue $reg_path "MaxConnectionsPerServer" if($MaxConnectionsPerServerproperty -ne $null) { $MaxConnectionsPerServer = $MaxConnectionsPerServerproperty."MaxConnectionsPerServer" if(($MaxConnectionsPerServer -lt 2) -or ($MaxConnectionsPerServer -gt 6)) { $regitemvalue_original = $MaxConnectionsPerServer $regitemvalue_reset = $localizationString.Removed $valuename = "MaxConnectionsPerServer" $regitem = CreateRegObject $reg_path $valuename $regitemvalue_original $regitemvalue_reset $ObjectArray.add($regitem) Remove-ItemProperty -path $reg_path "MaxConnectionsPerServer" -force } } $MaxConnectionsPer1_0Serverproperty = GetItemPropertyValue $reg_path "MaxConnectionsPer1_0Server" if($MaxConnectionsPer1_0Serverproperty -ne $null) { $MaxConnectionsPer1_0Server = $MaxConnectionsPer1_0Serverproperty."MaxConnectionsPer1_0Server" if(($MaxConnectionsPer1_0Server -lt 2) -or ($MaxConnectionsPer1_0Server -gt 6)) { $regitemvalue_original = $MaxConnectionsPer1_0Server $regitemvalue_reset = $localizationString.Removed $valuename = "MaxConnectionsPer1_0Server" $regitem = CreateRegObject $reg_path $valuename $regitemvalue_original $regitemvalue_reset $ObjectArray.add($regitem) Remove-ItemProperty -path $reg_path "MaxConnectionsPer1_0Server" -force } } 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 MaxConnectionsPerServervalue -name $localizationString.Report_name_MaxConnectionsPerServer_remove }