In InstDSC\Program.cs change line 98 from
string args = string.Format("-E -S {0} -d \"{1}\" -i \"" + Utils.GetInstallPath() + "\\CreateDemoStore.sql\" -b", server, dbname);
to
string args = string.Format("-U <your username> –P <your password> -S {0} -d \"{1}\" -i \"" + Utils.GetInstallPath() + "\\CreateDemoStore.sql\" -b", server, dbname);
Alternatively you could create DB on your local box and restore it to your production server.
DotShoppingCart Staff
|