Hello
Since two days I'm trying to install your product, when I met IIS 7.0 requirements I get new error durring executing SQL Statements, like follows:
Product: Neutex NetPoint 2.5 -- Error 26204. Error -2147217900: failed to execute SQL string, error detail: Password validation failed. The password does not meet Windows policy requirements because it is too short., SQL key: SQL_CreateUser.sql SQL string: If EXISTS (SELECT loginname FROM master.dbo.syslogins where name = 'NetPoint')
BEGIN
DROP LOGIN NetPoint
END
EXEC sp_addlogin 'NetPoint', 'neutex!', 'NetPoint'
USE NetPoint
IF EXISTS(SELECT * FROM sysusers where name = 'NetPoint')
BEGIN
EXEC sp_droprolemember 'db_owner', 'NetPoint'
EXEC sp_revokedbaccess 'NetPoint'
END
EXEC sp_grantdbaccess 'NetPoint', 'NetPoint'
EXEC sp_addrolemember 'db_owner', 'NetPoint'
Why ? Because the password 'neutex!' is too short !!! Even if I change Group Policy Password requirements I get the same error. My policy require only 8 signs in passwords and I cannot change this for security reasons.
Kerma