Rem


Applies To: Windows Vista,Windows Server 2003,Windows Server 2000,Windows 7,Windows Server 2003 R2,Windows Server 2008,Windows Server 2008 R2,Windows XP

Records comments (remarks) in a batch file or CONFIG.SYS. If no comment is specified, rem adds vertical spacing.

For examples of how to use this command, see Examples.

Syntax


Copy Code

rem [<Comment>]

Parameters

Parameter

Description

<Comment>

Specifies a string of characters to include as a comment.

/?

Displays help at the command prompt.

Remarks

Examples

The following example shows a batch file that uses remarks for comments and for vertical spacing:


Copy Code

@echo off
rem  This batch program formats and checks new disks.
rem  It is named Checknew.bat.
rem
rem echo Insert new disk in Drive B.
pause
format b: /v chkdsk b:

To include an explanatory comment before the prompt command in your CONFIG.SYS file, add the following lines to CONFIG.SYS:


Copy Code

rem Set prompt to indicate current directory
prompt $p$g

Additional references

Command-Line Syntax Key