Welcome to the navigation

Anim consectetur mollit sed adipisicing tempor labore occaecat ea cupidatat esse laboris laborum, et qui in exercitation quis velit fugiat dolore amet, aliqua, ex dolor. Eiusmod aliqua, sed minim non laborum, est consequat, reprehenderit do quis veniam, exercitation ex amet, occaecat voluptate aliquip ipsum sunt culpa et adipisicing nostrud cillum

Yeah, this will be replaced... But please enjoy the search!

Get SharePoint ConnectionString using PowerShell

Ever needed the connectionstring to a SharePoint database but really disliked to use regedit.exe? Here is how you'll get it using PowerShell

Note! This is for SharePoint 2015, change the version number for other versions.

Get-Item 'HKLM:\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\15.0\Secure\ConfigDB'

This should output something like this

To get the dsn alone you can use the GetItemProperty instead

(Get-ItemProperty 'HKLM:\SOFTWARE\Microsoft\Shared Tools\Web Server Extensions\15.0\Secure\ConfigDB').dsn

Cheers.