Release Notes

🚀 3.0.0
15 May 2021

🎁 New Features

  • Integration with CRM System

  • Windows Tray Notification on completion of an operation (Install, Update, Delete)

  • New Version Available Notification on Application Startup

    new-version

✨ Improvements

  • Possibility to enter Custom Database Server Name.

  • Verify Database Server connection along with CREATE/DROP access rights.

  • Improved Progress Viewer

  • Documentation Layout Improvements

🐞 Bug Fixes

  • Build Versions are not reflected from the current build name on selection.

⚡ 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\СИСТЕМА