Wenn man auf einer Expert-Sexchange-Seite die Lösung nicht lesen kann...
Ist der Verschreiber Absicht?
Zum Thema einfach mal exemplarisch für Delphi XE (Version 15):
Delphi-Quellcode:
uses
JclIDEUtils;
procedure RegisterPackage(const APackageFilename, ADescription: string);
var
installations: TJclBorRADToolInstallations;
installation: TJclBorRADToolInstallation;
begin
installations := TJclBorRADToolInstallations.Create;
if installations.DelphiVersionInstalled[15] then
begin
installation := installations.DelphiInstallationFromVersion[15];
installation.RegisterPackage(APackageFileName, ADescription);
end;
installations.Free;
end;
Mit nen bissle mehr Code kann man auch alle installieren Delphi Versionen rausfinden und so weiter. Eventuell auch interessant, sich
das hier anzuschauen.