Recommended Posts

On 03/07/2025 at 16:19, Nik Louch said:

But you will need to detail what VPN it is - not just "I have a VPN" - help people help you!

It would make more sense to do that, but instead it looks like he wants the batch script to display a message telling him to manually enable the VPN rather than getting the batch script to connect it for him.

  • Like 1
  • Thanks 1

@echo off

title Initializing Quantum Subroutines...

color 0A

 

:: Fake progress bar

setlocal enabledelayedexpansion

set CHARS=....................

for /L %%A in (1,1,20) do (

    set /a idx=%%A

    set BAR=!CHARS:~0,%%A!

    cls

    echo Initializing system protocols...

    echo [!BAR!]

    ping localhost -n 1 >nul

)

 

:: Fake system check

echo.

echo Performing hyperthread integrity verification...

ping 127.0.0.1 -n 2 >nul

echo Error: Quantum integrity mismatch on sector 7G

echo Attempting autocorrection... Please wait...

ping 127.0.0.1 -n 3 >nul

echo Correction failed. Initiating paradox sequence.

 

:: Silly loop that pretends to do something

set /a COUNT=0

:LOOP

set /a COUNT+=1

echo Resolving subspace anomaly... %RANDOM%

if %COUNT% LEQ 5 (

    ping localhost -n 2 >nul

    goto LOOP

)

 

:: More nonsense

echo.

echo Compiling useless data packets...

for %%X in (X1 X2 X3 X4 X5) do (

    echo Packet %%X sent to Mars.

    ping 127.0.0.1 -n 1 >nul

)

 

:: Final act

echo.

echo --------------------------------------

echo Mission Accomplished: The Cake is a Lie

echo --------------------------------------

echo Launching banana...

start https://www.youtube.com/watch?v=U9t-slLl30E

timeout /t 3 >nul

echo Done.

exit

  • Thanks 1
  • Haha 2
On 03/07/2025 at 11:46, Nick H. said:

It would make more sense to do that, but instead it looks like he wants the batch script to display a message telling him to manually enable the VPN rather than getting the batch script to connect it for him.

Nick you are exactly right.

  • 4 weeks later...
On 03/07/2025 at 13:43, Som said:

@echo off

title Initializing Quantum Subroutines...

color 0A

 

:: Fake progress bar

setlocal enabledelayedexpansion

set CHARS=....................

for /L %%A in (1,1,20) do (

    set /a idx=%%A

    set BAR=!CHARS:~0,%%A!

    cls

    echo Initializing system protocols...

    echo [!BAR!]

    ping localhost -n 1 >nul

)

 

:: Fake system check

echo.

echo Performing hyperthread integrity verification...

ping 127.0.0.1 -n 2 >nul

echo Error: Quantum integrity mismatch on sector 7G

echo Attempting autocorrection... Please wait...

ping 127.0.0.1 -n 3 >nul

echo Correction failed. Initiating paradox sequence.

 

:: Silly loop that pretends to do something

set /a COUNT=0

:LOOP

set /a COUNT+=1

echo Resolving subspace anomaly... %RANDOM%

if %COUNT% LEQ 5 (

    ping localhost -n 2 >nul

    goto LOOP

)

 

:: More nonsense

echo.

echo Compiling useless data packets...

for %%X in (X1 X2 X3 X4 X5) do (

    echo Packet %%X sent to Mars.

    ping 127.0.0.1 -n 1 >nul

)

 

:: Final act

echo.

echo --------------------------------------

echo Mission Accomplished: The Cake is a Lie

echo --------------------------------------

echo Launching banana...

start https://www.youtube.com/watch?v=U9t-slLl30E

timeout /t 3 >nul

echo Done.

exit

Lol nice one!

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.