DOS Batch - Quine 159 bytes

A pretty short DOS Batch Quine.

Description: A Quine is a program whose only output is its program code.
Run the Quine using the following command in order to make sure Delayed Expansion is disabled and ECHO is OFF:
C:> Cmd /Q /V:Off /C BatchQuine.bat
If you use this code make sure to add a reference to DosTips.com.
Script: Download: BatchQuine_1_1_1.bat  
1.
2.
3.
4.
Set "T=Echo Set "T=!T!"&Call Echo Set "E=!E!E!E!!E!E!E!"&Echo Setlocal Enabledelayedexpansion&Echo !E!T!E!"
Set "E=%%"
Setlocal Enabledelayedexpansion
%T%
Script Output:
 DOS Script Output
Set "T=Echo Set "T=!T!"&Call Echo Set "E=!E!E!E!!E!E!E!"&Echo Setlocal Enabledelayedexpansion&Echo !E!T!E!"
Set "E=%%"
Setlocal Enabledelayedexpansion
%T%