DOS Batch - Shortest Quine 109 Bytes

Likely the shortest DOS Batch Quine ever.

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_3.bat  
1.
2.
3.
Set "T=Echo Set "T=!T!"&Call Echo Set E=!E!E!E!!E!E!E!&Echo Cmd/V:On/C"!E!T!E!""
Set E=%%
Cmd/V:On/C"%T%"
Script Output:
 DOS Script Output
Set "T=Echo Set "T=!T!"&Call Echo Set E=!E!E!E!!E!E!E!&Echo Cmd/V:On/C"!E!T!E!""
Set E=%%
Cmd/V:On/C"%T%"