Release Notes

🚀 3.1.0
23 June 2021

Download and Install

🎁 New Features

  • Install lexbizz/Acumatica Application with an Portal Instance.

✨ Improvements

  • A seprate application pool is used for each application.

  • “New Version Available” Notification Popup provides a button to open “Release Notes” page.

    new-version
  • lexbizz Application Version is shown on the Applications Screen (Application List).

🐞 Bug Fixes

  • None.

⚡ 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

French - AUTORITE NT\SYSTEM

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