Home > database >  How to see the projects we trust in Alexandria?
How to see the projects we trust in Alexandria?

Time:09-27

In Alexandria, when I try to compile a project that have build events, I receive this warning

enter image description here

How can I see the list of the project that I have already trusted with "Always trust this project"? where this info is stored?

CodePudding user response:

Stored in the registry in a value keyed by the ProjectGuid from the .proj file with the project name as the data value.

HKCU\Software\Embarcadero\BDS\22.0\Compiling\TrustedBuildEvents

Not sure how secure this is since a 'bad project' could put a GUID that might already be trusted in the .proj file. The project name also needs to match so probably not that much of an issue.

Registry editor with the key selected

Used SysInternals Process Monitor to capture events to see what BDS.exe was doing after always trust was selected and then yes clicked.

CodePudding user response:

These projects are stored in the Delphi registry under Compiling\TrustedBuildEvents.

  • Related