Online
Registriert seit: 11. Okt 2003
Ort: Elbflorenz
44.079 Beiträge
Delphi 12 Athens
|
AW: Installed Software function
24. Mai 2011, 11:36
könnte auch schon ausreichen
Delphi-Quellcode:
procedure GetUninstallList(List: TStrings);
const
UninstallPath = '\Software\Microsoft\Windows\CurrentVersion\Uninstall';
DisplayName = 'DisplayName';
var
i: Integer;
begin
List.Clear;
with TRegistry.Create(KEY_READ) do
try
RootKey := HKEY_LOCAL_MACHINE;
if KeyExists(UninstallPath) and OpenKeyReadOnly(UninstallPath) then
GetKeyNames(List);
for i := List.Count - 1 downto 0 do
if OpenKeyReadOnly(UninstallPath + '\' + List[i]) and ValueExists(DisplayName) then
List[i] := ReadString(DisplayName);
else
List.Delete(i);
finally
Free;
end;
end;
Neuste Erkenntnis:
Seit Pos einen dritten Parameter hat,
wird PoSex im Delphi viel seltener praktiziert.
|