Use the echo.
command to print an empty line.
@echo off
echo This is a line of text
echo.
echo This is a new line of text
This will produce the output:
This is a line of text
This is a new line of text
Using echo.
is a common method for printing newline characters in batch scripts to create visual separation between lines of text.