You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if exist "%PROFILER_EXE%" if exist "%PROFILER_SHA%" (
for /f "usebackq tokens=1" %%H in ("%PROFILER_SHA%") do set "EXPECTED_SHA=%%H"
for /f "delims=" %%H in ('powershell.exe -NoProfile -Command "(Get-FileHash -Algorithm SHA256 -LiteralPath $env:PROFILER_EXE).Hash"') do set "ACTUAL_SHA=%%H"
if /I "%EXPECTED_SHA%"=="%ACTUAL_SHA%" (
start "" "%PROFILER_EXE%"
exit /b 0
)
echo [FEHLER] ProFiler.exe stimmt nicht mit ProFiler.exe.sha256 überein.
exit /b 1
)
if exist "%~dp0Profiler_Suite_V15.py" (
python --version >nul 2>&1
if errorlevel 1 (
echo [FEHLER] Python wurde nicht gefunden.
exit /b 1
)
python "%~dp0Profiler_Suite_V15.py"
exit /b %errorlevel%
)
echo [FEHLER] Kein verifiziertes EXE-Paar und keine V15-Quelle gefunden.