error message SystemCertificates\Disallowed

jassie

Well-known member
Joined
Nov 13, 2012
Messages
61
Programming Experience
1-3
In a C# 2008 windows application, I am getting the following error messages:
Process 9528 (\Device\HarddiskVolume2\Program Files (x86)\red\sampleclient.exe) has opened key \REGISTRY\USER\S-1-5-21-11-222-333\Software\Microsoft\SystemCertificates\TrustedPeople
Process 8880 (\Device\HarddiskVolume2\Program Files (x86)\red\sampleclient.exe) has opened key \REGISTRY\USER\S-1-5-21-11-222-333\Software\Microsoft\SystemCertificates\TrustedPeople
Process 9528 (\Device\HarddiskVolume2\Program Files (x86)\red\sampleclient.exe) has opened key \REGISTRY\USER\S-1-5-21-11-222-333\Software\Microsoft\SystemCertificates\My
Process 8880 (\Device\HarddiskVolume2\Program Files (x86)\red\sampleclient.exe) has opened key \REGISTRY\USER\S-1-5-21-11-222-333\Software\Microsoft\SystemCertificates\My
Process 9528 (\Device\HarddiskVolume2\Program Files (x86)\red\sampleclient.exe) has opened key \REGISTRY\USER\S-1-5-21-11-222-333\Software\Microsoft\SystemCertificates\Disallowed
Process 8880 (\Device\HarddiskVolume2\Program Files (x86)\red\sampleclient.exe) has opened key \REGISTRY\USER\S-1-5-21-11-222-333\Software\Microsoft\SystemCertificates\Disallowed
There is no code in the appliation to use registry, thus the only thing I think can be wrong is something about the connection string to the database.
Here is the connection string in the database to a sql server 2008 r2 database:
<connectionStrings>
<add name="eConnectionString" connectionString="Data Source=DEV;Initial Catalog=DEVDB;User Id=TESTUSER;Password=xxxxxx;"providerName="System.Data.SqlClient" />
</connectionStrings>
The account that is being used is setup for an applicaiton by using a sql server login. The account also has some kind of rights to windows.
Thus can you tell what how you think I can change the connection string to the database and/or tell me what you think can be wrong?
 
Back
Top Bottom