echo. echo ======================================== echo Please choose rotation direction (make sure your folder path is in English and no spaces): echo1. Rotate 90 degrees CW echo2. Rotate 180 degrees echo3. Rotate 270 degrees CW echo ======================================== set /p choice=Enter option number (1/2/3), then press Enter:
if "%choice%"=="1" ( set "orientation=Rotate 90 CW" ) elseif "%choice%"=="2" ( set "orientation=Rotate 180" ) elseif "%choice%"=="3" ( set "orientation=Rotate 270 CW" ) else ( echo. echo Invalid option. Exiting. pause exit /b )