Collections:
Other Resources:
Hello.bat - First Batch File
How to write a batch file? I want to print "Hello world!" message on the screen.
✍: FYIcenter.com
You can follow this tutorial to write your first batch file to print a message on the screen.
1. Open "Notepad" to create a file called, \fyicenter\Hello.bat, with the following commands:
@echo off echo Hello world!
2. Open a command line window, and type in the following command to verify the batch file:
C:\>cd \fyicenter C:\fyicenter>dir Hello*.* Directory of C:\fyicenter 11/22/2033 07:27 PM 28 Hello.bat
3. Make sure the batch file name extension is ".bat".
4. Run the batch file, Hello.bat, by typing the batch file name with or without the file name extension. You see the "Hello world!" message displayed on the screen:
C:\fyicenter>Hello.bat Hello world! C:\fyicenter>Hello Hello world!
⇒ Batch File Structure and Syntax
⇐ Commands Supported in Batch Files
2023-09-06, 61382🔥, 11💬
Popular Posts:
What is "Microsoft SharePoint Workspace Audit Service" in my Windows 7 service list? And how is "Mic...
What is the "Security Accounts Manager (SamSs)" system service on Windows Server 2008? Can I disable...
What is "SynTPEnh Caller Service" in my Windows 7 service list? And how is "SynTPEnh Caller Service"...
What is the scheduled task "\Microsoft\Windows\Sett ingSync\BackgroundUpload Task"on my Windows 8 com...
What is service "wuauserv" and library "wuauserv.dll" on Windows Vista? "wuauserv" is a system servi...