Hi,
why do you need this? Might be that if you will explain it, we could provide you better solution. Note also that on 3rd it will not work.
Anyway you can try the RApaLsSession class to enumerate all installed applications(note that I did not test the code):
Code:
RApaLsSession ls;
User::LeaveIfError(ls.Connect());
CleanupClosePushL(ls);
User::LeaveIfError(ls.GetAllApps());
TInt err = KErrNone;
TApaAppInfo appInfo;
do
{
err = ls.GetNextApp(appInfo);
if (KErrNone == err && appInfo.iCaption.Length())
{
// appInfo.iUid.iUid,
// appInfo.iCaption,
// appInfo.iFullName.Ptr(),
}
} while(KErrNone == err);
CleanupStack::PopAndDestroy(); // ls
BR
STeN