batch file snippets

    Table of contents
    No headers

    NewLine in batch file: [link target removed] If you want to output a line in a batch *without* a new line (crlf), there is a work around with the set /P command.

    @set /P dummy="This line has no crlf and quotes are suppressed " < nul
    @echo.(This follows on the same line.)

     

        Send feedback