Hello,
I'll explain some basics for creating a batch file
First,
Batch files are created in notepad, or any text editor, and saved as .bat
Batch files are files you can execute.
With this tutorail i won't teach you how to do much things, but just the layout.
first, you should start with
This means, it won't show echo, it will only show the text after echo
if you want to show text if you execute the file, you will have to place echo in front
so "echo hello" without the quotes will be shown as hello
this will change the title of the file when you open it
This will "pause" it, you'll have to enter any key to proceed
This closes the batch file
This changes the color of the text, and the background color
This will ping google, you can place any website you want
This was just a basic tutorial, of the stuff that i know!
I'll explain some basics for creating a batch file
First,
Batch files are created in notepad, or any text editor, and saved as .bat
Batch files are files you can execute.
With this tutorail i won't teach you how to do much things, but just the layout.
first, you should start with
Code:
@echo off
Code:
echo text
so "echo hello" without the quotes will be shown as hello
Code:
title Stefans tutorial
Code:
pause
Code:
cls
Code:
color a1
Code:
ping google.com
This was just a basic tutorial, of the stuff that i know!