@echo off :: FreshByte Technology - RDP Security Dialog Fix :: Removes the new RDP security prompt from April 2026 Windows Update :: Run once as Administrator   net session >nul 2>&1 if %errorlevel% neq 0 (     echo Requesting administrator privileges...     powershell -Command "Start-Process '%~f0' -Verb RunAs"     exit /b )   echo. echo ======================================================== echo   FreshByte Technology - RDP Security Dialog Fix echo ======================================================== echo. echo Applying fix... echo.   reg add "HKLM\SOFTWARE\Policies\Microsoft\Windows NT\Terminal Services\Client" /v RedirectionWarningDialogVersion /t REG_DWORD /d 1 /f   if %errorlevel% equ 0 (     echo.     echo SUCCESS - Fix applied. The RDP security prompt will     echo no longer appear when launching your applications. ) else (     echo.     echo ERROR - Something went wrong. Please contact FreshByte     echo Technology support for assistance. )   echo. echo Press any key to close... pause >nul