Hy to all,
I am really Sorry to come up with this question but i can't seem to solve the Problem.
Its quite easy, I have been using RegNumKey for Years, but i seemed to lose track of something.
For $ZaehlerLocal = 1 to 1200
$RegKey = RegEnumKey("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall", $ZaehlerLocal)
If @error <> 0 then ExitLoop
$RegKey2=RegRead("HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\CurrentVersion\Uninstall\"&
You could try:
#include <Array.au3>
Global $aUninstall[1][5]
_RegReadUninstall("HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall")
_RegReadUninstall("HKLM64\Software\Microsoft\Windows\CurrentVersion\Uninstall")
_ArraySort($aUninstall, 0, 1, 0, 1)
_ArrayDisplay($aUninstall)
Func _RegReadUninstall($sRegHive = "HKLM\Software\Microsoft\Windows\CurrentVersion\Uninstall")
$i = 1
While 1
$sRegKey = RegEnumKe