I asked AI to help me and it suggested to repatch the software with this script bc I had a newer version of SQL server:
@echo off
set lic='%VIDA_HOME%patch\license'
set sqlf=%VIDA_HOME%patch\q.sql
set fdb=%VIDA_HOME%patch\filldb.sql
echo declare @lic nvarchar(50) set @lic=%lic% > %sqlf%
type %fdb% >> %sqlf%
echo.
echo === Attempting to apply patch using SQLCMD ===
echo.
:: This searches Windows automatically for SQLCMD regardless of version or folder
where sqlcmd >nul 2>nul
if %errorlevel% equ 0 (
sqlcmd -S localhost\Vida -U sa -P GunnarS3g3 -i "%sqlf%"
) else (
echo ERROR: Neither OSQL nor SQLCMD could be found on this computer.
echo Please make sure Microsoft SQL Server is fully running.
)
del "%sqlf%" 2>nul
ren %VIDA_HOME%WslLogin.exe WslLogin.exe.bak 2> nul
ren %VIDA_HOME%ClientLogger.exe ClientLogger.exe.bak 2> nul
echo.
echo === Script Finished ===
pause
It worked well and i can now log in






