Salvador
Salvador

Reputation: 16472

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?

Upvotes: 7

Views: 8932

Answers (3)

Tony
Tony

Reputation: 71

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

Upvotes: 5

Vector
Vector

Reputation: 11703

I didn't have patience to poke around the registry so I just did a repair install of Delphi - every time the install process ends it gives you the option to autocheck for updates or not.

HTH MNG

Upvotes: 0

Ken White
Ken White

Reputation: 125669

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

Upvotes: 9

Related Questions