Skip to content

FileConnectionString Configuration

Randolph West edited this page Dec 20, 2016 · 1 revision

The connections.config file is required to provide credentials to a UNC path. The format of this file is as follows:

<?xml version="1.0" encoding="utf-8"?>
<connectionStrings>
    <clear /> // Clears any other connectionStrings in the app.config file
	<add name="FileStorageUserAccount" connectionString="UNC_username"/>
	<add name="FileStoragePassword" connectionString ="UNC_password"/>

</connectionStrings>

The FileStorageUserAccount value is your UNC path username.

The FileStoragePassword is the password for the above username, in plain text.

Clone this wiki locally