Release Notes

🚀 3.2.0
18 Aug 2021

Download and Install

🎁 New Features

  • Tenant Management for lexbizz and Acumatica Application.

  • Send Error Report on failure.

  • Preconfigured Demo Data is available for Production Versions (for versions higher than 7.004).

✨ Improvements

  • Remember last selected Database Server name and Application Location.

  • Added new Validations for Application Installation.

  • Improved Installation Progress logging.

  • Improved Error Messages displayed after CRM authentication.

🐞 Bug Fixes

  • PortalSiteID is not set for an installation of lexbizz Application with Portal causing error on SP800000 screen.

  • User was not able to login to Acumatica Portal on a local instance using non-admin user.

⚡ IMPORTANT ⚡
This application is tested on Windows 10. We do not support operating systems other than Windows 10. Please create a support request if you need support for an OS other than Windows 10.

Post Installation Instructions

lexbizz DevOps Tool will install a Windows Service on the machine. As the service is running under Local System Account, this account need complete access to your local SQL Server Instance.

In case of an lexbizz DevOps Tool update, the Local System Account is granted full access to your local SQL Server.

In case you are installing lexbizz DevOps tool for the first time and do not have any SQL Server installation, then please execute the following SQL Script manually inside SQL Management Studio

English

1IF NOT EXISTS (SELECT name FROM sys.server_principals where name ='NT AUTHORITY\SYSTEM')
2BEGIN
3    CREATE LOGIN [NT AUTHORITY\SYSTEM] FROM WINDOWS;
4END
5
6ALTER LOGIN [NT AUTHORITY\SYSTEM] with DEFAULT_DATABASE=[master]
7GO
8
9EXEC sp_addsrvrolemember 'NT AUTHORITY\SYSTEM', 'sysadmin';

German

1IF NOT EXISTS (SELECT name FROM sys.server_principals where name ='NT-AUTORITÄT\SYSTEM')
2BEGIN
3    CREATE LOGIN [NT-AUTORITÄT\SYSTEM] FROM WINDOWS;
4END
5
6ALTER LOGIN [NT-AUTORITÄT\SYSTEM] with DEFAULT_DATABASE=[master]
7GO
8
9EXEC sp_addsrvrolemember 'NT-AUTORITÄT\SYSTEM', 'sysadmin';

For other languages

Please replace ‘[NT AUTHORITYSYSTEM]’ in the first script with the following values and execute the SQL Script.

French - AUTORITE NT\SYSTEM

Russian - NT AUTHORITY\СИСТЕМА

TIP
If you have a different system locale apart from the once mentioned above, then find the correct account and replace ‘[NT AUTHORITYSYSTEM]’ with your local account in the first script.