...
- Creates 2 databases: A configuration database (2 file groups: PRIMARY, LOG), and a message database (3 file groups: PRIMARY, INDEX, LOG)
- Creates a database user and assign the user to a as db_owner to the databases created in (1)
- Enables .net on the Sql Server instance: EXEC sp_configure 'clr enabled', 1;
- Installs an optional .NET assembly and function used for searching text within a message. (If this function is not available, searching for data within a message will fail)
- Installs an optional view that provides decompressed message data
...