download accelerator plus (dap) 9.4.0.7 recent file list

HKEY_CURRENT_USER\Software\SpeedBit\Download Accelerator\Improv_DB\DataArray

HKEY_CURRENT_USER\Software\SpeedBit\Download Accelerator\Improv_DB\High

HKEY_CURRENT_USER\Software\SpeedBit\Download Accelerator\Improv_DB\Low

please delete the HKEY_CURRENT_USER\Software\SpeedBit\Download Accelerator\Improv_DB\DataArray\Elem0 (Elem1, Elem2 ...) keys post-38842-127951384572_thumb.jpg

and change the HKEY_CURRENT_USER\Software\SpeedBit\Download Accelerator\Improv_DB\DataArray\Count value to 0 post-38842-12795138311_thumb.jpg

delete all values under the HKEY_CURRENT_USER\Software\SpeedBit\Download Accelerator\Improv_DB\High key post-38842-127951385876_thumb.jpg

delete all values under the HKEY_CURRENT_USER\Software\SpeedBit\Download Accelerator\Improv_DB\Low key post-38842-127951387415_thumb.jpg

sorry for my bad english

Welcome to the forum.

If you want those registry keys to be deleted by CC then you can tell CC to wipe these registry keys as well. Here're two weblinks that provide a lot of info how to do that.

http://docs.piriform...leaner-to-clean

http://docs.piriform...leaner-to-clean

thank you very much,

i have written my own script and integrated it to the CCleaner.

------- C:\Program Files\CCleaner\winsys2.ini -------

[Download Accelerator Plus]

Section=My Scripts

ScriptKey1=ccleaner.vbs

------- C:\Program Files\CCleaner\ccleaner.vbs -------

Option Explicit

Const HKEY_CURRENT_USER = &H80000001

Dim oReg

Dim strKeyPath

Dim arrItems

Dim sItem

Set oReg = GetObject("winmgmts:{impersonationLevel=impersonate}!\\.\root\default:StdRegProv")

strKeyPath = "Software\SpeedBit\Download Accelerator\Improv_DB\DataArray"

oReg.EnumKey HKEY_CURRENT_USER, strKeyPath, arrItems

If IsNull(arrItems) = False Then

For Each sItem in arrItems

oReg.DeleteKey HKEY_CURRENT_USER, strKeyPath & "\" & sItem

Next

oReg.SetDWORDValue HKEY_CURRENT_USER, strKeyPath, "Count", 0

End If

strKeyPath = "Software\SpeedBit\Download Accelerator\Improv_DB\High"

oReg.EnumValues HKEY_CURRENT_USER, strKeyPath, arrItems

If IsNull(arrItems) = False Then

For Each sItem in arrItems

oReg.DeleteValue HKEY_CURRENT_USER, strKeyPath, sItem

Next

End If

strKeyPath = "Software\SpeedBit\Download Accelerator\Improv_DB\Low"

oReg.EnumValues HKEY_CURRENT_USER, strKeyPath, arrItems

If IsNull(arrItems) = False Then

For Each sItem in arrItems

oReg.DeleteValue HKEY_CURRENT_USER, strKeyPath, sItem

Next

End If