Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Disable Delphi XE automatic update check

i have two delphi xe installled in different virtual machines (Running in Windows 7 64 Bits), one of these versions of delphi xe is 15.0.3890.34076 . Now to give support to my customers over a particular version of my product which was compiled using such version , the version of delphi must remain without updates. but each time which i start the Delphi XE which not is updated i must cancel manually the updates reported by the update checker. the question is how i Disable Delphi XE automatic update check?

like image 293
Salvador Avatar asked Mar 05 '11 18:03

Salvador


2 Answers

You can edit the registry. Under HKEY_CURRENT_USER\Software\Embarcadero\BDS\8.0\AutoRun, rename the UpdateCheck key or remove the contents of UpdateCheck\ProgramToRun.

You need to do likewise under HKEY_LOCAL_MACHINE, but don't forget about registry redirection on 64 bit - then the key is: Software\Wow6432Node\Embarcadero\BDS\8.0\AutoRun

like image 121
Ken White Avatar answered Sep 19 '22 18:09

Ken White


On XE2 you don't have to poke around the registry manually - just run C:\Program Files (x86)\Embarcadero\RAD Studio\9.0\bin\DisableIDEUpdateCheck.reg

like image 28
Tony Avatar answered Sep 18 '22 18:09

Tony