Skip to main content

Cloud

The Given Key was Not Present in the Dictionary Error

While running SharePoint 2010 configuration wizard you may see the following error:
“The given key was not present in the dictionary”.
 
The sharepoint config database gets created, however the wizard fails at trying to create Central Admin site and CA content database. You need to :
1. delete the config database from the SQL server
2. in ADUC for all service accounts under security tab, add “Authenticated Users” with read permissions.
 
 
Thanks to Steve Peschka for the fix.
 
 
Another related issue you may encounter is not being able to register managed accounts using the GUI. The fix is, you guessed it, item # 2 above :).
 
If you’d rather bypass the GUI alltogether, you can easily add managed accounts using SharePoint 2010 powershell:
 
$ManagedAcct=’domainaccount_name’
$ManagedAcctPWD= ConvertTo-Securestring -asplaintext -force ‘account_password’
$cred = New-Object System.Management.Automation.PsCredential $ManagedAcct,$ManagedAcctPWD
New-SPManagedAccount -Credential $cred
 
 

 

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Teo Nedev

Teo Nedev is a senior consultant for Perficient. He has more than eight years of progressive IT experience in various industries, and has worked for small, mid-size, and Fortune 500 companies. During his career he has deployed and maintained large SharePoint environments with emphasis on infrastructure, scalability and disaster recovery. He is also experienced in Active Directory, SQL and virtualization solutions. Teo holds a Bachelor’s Degree in business administration as well as Master’s of Computer Science degree from the Illinois Institute of Technology in Chicago. He is a certified MCITP SharePoint Administrator 2010, MCSE, CCNA and VCP. He currently resides in Chicago’s north suburbs. Teo enjoys theatre and comedy and spends his free time reading, biking, cooking and entertaining friends and family.

More from this Author

Follow Us