Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I install Delphi IDE from the InstallAware setup.exe without copy files to c:\programdata?

Tags:

delphi

Delphi IDE uses InstallAware as installer in last few releases (2010, XE, XE2, XE3, XE4). Using the normal setup.exe installation will copy a few GB of files into c:\programdata if you install all the IDE releases.

The installer consumes disk spaces quickly especially for users who use an SSD hard disk that is expensive.

Is it possible to setup the Delphi IDEs without copying files to c:\ProgramData? Is it advisable to delete those files manually after installation too? Uninstalling a previous version of the IDE does delete these files but as component maker, I need those IDEs for testing.

like image 558
Chau Chee Yang Avatar asked Oct 21 '22 09:10

Chau Chee Yang


1 Answers

Partial answer here.

Is it advisable to delete those files manually after installation too?

Of course, official answer is NO. But you actually can delete these files at the cost of losing installer's "Repair" capability. (Repair is standard MSI feature, and InstallAway is merely yet another front-end for MSI). Also, it will render any manual restoration of particular file impossible, since files are stored in encrypted 7-zip archives on distribution medium (yet another unfriendly feature).

Unfortunately, I do not know any way to disable creation of such local copy of distribution medium.

like image 65
OnTheFly Avatar answered Nov 15 '22 10:11

OnTheFly