-
Notifications
You must be signed in to change notification settings - Fork 0
Configuration
GitHub Action edited this page Sep 4, 2025
·
4 revisions
To customize the script for your environment, prepare a JSON configuration file. Below is a sample structure:
{
"$schema": "http://json-schema.org/schema#",
"contentVersion": "1.0.0.0",
"ConfigurationName": "PROD",
"ApplicationName": "contoso",
"Settings": {
"SiteUrl": "https://extranet.contoso.com",
"SqlConnectionString": "data Source=localhost;Integrated Security=SSPI;Initial Catalog=aspnetdb",
"SqlMembershipProviderName": "fbamembershipprovider",
"SqlQuery": "",
"CreateIfMissing": true,
"UpdateUserInfoList": true,
"IncludeLockedOut": false,
"IncludeNotApproved": false
}
}ConfigurationName: Populates the Environment PowerShell variable.
ApplicationName: Populates the Application PowerShell variable.
For the next steps, go to the Usage page.