Creating and restoring the databases is same as in EP2 guides by TDP.
To view the content, you need to sign in or register
I gues XP Crypt support is not needed?
It was used for registration encryption or something like that?
The code was posted by someone, credits to him.
Code:
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go
ALTER FUNCTION [dbo].[fn_md5] (@data varchar(255))
RETURNS CHAR(32) AS
BEGIN
return SUBSTRING(master.dbo.fn_varbintohexstr(HashBytes('MD5', @data)), 3, 32)
END
Exec dbo.cabal_tool_registeraccount 'yourusername' , 'yourpassword'
Im not very exp'ed in this.
I installed on Server 2003, works well.

: