<!-- Prompts where to copy the content files and takes a web site path (such as "contoso.com/app") -->
<parametername="Application Path"description="Full site path where you would like to install your application (i.e., Default Web Site/orchard)"defaultValue="Default Web Site/orchard"tags="iisapp">
<!-- This is the parameter that is used to set ACLs, it's set to the application path filled in by the user -->
<parametername="SetAclParameter1"description="Hidden - automatically sets write access for the app"defaultValue="{Application Path}/App_Data"tags="Hidden">
<parametername="SetAclParameter2"description="Hidden - automatically sets write access for the app"defaultValue="{Application Path}/Media"tags="Hidden">
<parametername="SetAclParameter3"description="Hidden - automatically sets write access for the app"defaultValue="{Application Path}/bin/HostRestart"tags="Hidden">
<!-- Prompts for database server name, this is used in the connection string parameter later -->
<parametername="Database Server"description="Location of your database server (i.e. server name, IP address, or server\instance)"defaultValue=".\SQLEXPRESS"tags="SQL, dbServer">
</parameter>
<!-- Prompts for the database name and fills it into the database scripts -->
<parametername="Database Name"description="Name of the database for Orchard."defaultValue="orchard"tags="SQL, dbName">
</parameter>
<!-- Prompts for the database username and fills it into the database scripts.
The SQL tag indicates it is a parameter required for SQL, the DbUsername tag indicates this is a Db username -->
<parametername="Database Username"description="User name to access you application database."defaultValue="orcharduser"tags="SQL, DbUsername">
<!-- Prompts for the admin creds and uses it for the administrator connection string. This is used to create a login and assign permissions.
The SQL tag indicates it is a parameter required for SQL. The DbAdminUsername tag indicates it should be used when the user is creating a new database.
If they're not, it can be filled in with the DbUsername value. -->
<parametername="Database Administrator"description="Administrator user name for your database This is used to create the database and user if the don't already exist."defaultValue="sa"tags="SQL, dbAdminUsername">
</parameter>
<!-- Prompts for the admin password and uses it for the administrator connection string.
This is use to create a login and assign permissions. The SQL tag indicates it is a parameter required for SQL.
The DbAdminPassword tag indicates it should be used when the user is creating a new database. If they're not, it can be filled in with the DbUserPassword value. -->
<parametername="Database Administrator Password"description="Password for the database administrator account."tags="Password, SQL, dbAdminPassword">
</parameter>
<parametername="Admin Connection String SqlServer1"tags="SQLConnectionString, sql, Hidden"description="Automatically sets the connection string for the connection request."defaultValue="Data Source={Database Server};Initial Catalog=MASTER;User Id={Database Administrator};Password={Database Administrator Password}">