diff --git a/iis/publish/using-web-deploy/web-deploy-parameterization.md b/iis/publish/using-web-deploy/web-deploy-parameterization.md index e0186a44f..ff9604676 100644 --- a/iis/publish/using-web-deploy/web-deploy-parameterization.md +++ b/iis/publish/using-web-deploy/web-deploy-parameterization.md @@ -74,9 +74,9 @@ The CreateDBAndUser.sql script is a fairly simple script that can be [copied fro The VacPicDBSchema.sql is the script that creates all the tables in the database that the application uses. This file can created using the Web Deploy command line tool. From the command line, navigate to where Web Deploy is installed (typically %programfiles%\IIS\Microsoft Web Deploy <LatestVersion>) and enter the following command: -`msdeploy -verb:sync -source:dbfullsql="data source=.\SQLExpress;initial catalog=PhotoGallery;user id=sa;password=" -dest:dbfullsql="c:\VacPicDBSchema.sql"` +`msdeploy -verb:sync -source:dbfullsql="data source=.\SQLExpress;initial catalog=PhotoGallery;user id=sa;password=*" -dest:dbfullsql="c:\VacPicDBSchema.sql"` -Make sure to replace <AdminPassword> with the appropriate SQL administrator password. +Replace the asterisk (`*`) with the appropriate SQL administrator password. At a basic level, the above command uses the **dbFullSql** provider to copy data from a database using a database connection string ("-source:dbfullsql=…") and copies it to a database script file ("-dest:dbfullsql=…")