0

I would like to install membership and roles to a specific database. It seems to create a new database : aspnetdb. I tried using the GUI (Wizard) but that installed personalization. I tried adding "...Localhost/DatabaseName" but that didn't work.

JustinStolle
  • 4,182
  • 3
  • 37
  • 48
David
  • 5,403
  • 15
  • 42
  • 72

1 Answers1

1

See the command-line options at ASP.NET SQL Server Registration Tool (Aspnet_regsql.exe)

Specifically, -d <database>:

Specifies the name of the database to create or modify for use with application services. If the database is not specified, the default database name of "aspnetdb" is used.

JustinStolle
  • 4,182
  • 3
  • 37
  • 48