Many people are not aware that vTask Studio includes
PDF capabilities as a step Action. It has the ability to generate PDF documents with just a single step. What's more, it can output PDF without needing any additional libraries or programs (even Adobe isn't required).
The
Create Adobe PDF

action is hidden away under the File category (because there was no other good place to put it). Like all features in vTask Studio, this is fully available for your compiled EXE scripts too, so you can include
PDF reporting capabilities with your distributed scripts.
The latest download includes a sample file that shows how to make a simple PDF document.

VXM Script: (Copy and Paste into vTask)<step>
<action>Comment</action>
<comment>Demonstrate how to create a basic PDF file</comment>
</step>
<step>
<action>Create Adobe PDF</action>
<text>My PDF File
_____________________________________________________________
This PDF was generated from a vTask script.
It only takes a single action to create PDF files in vTask Studio.
You can take any text and create an Adobe document. You can also use a RUN command to immediately open the new document.
Notice the "Table of Contents" on the side, which contains more pages.
{\p}
Another Topic
This is where we would put more information
{\p}
Yet Another Topic{\P}
In Conclusion...
</text>
<options>Contents,PageNum,Wrap</options>
<value1>Document.pdf</value1>
<value2>Arial</value2>
<value3>12</value3>
<value4>1</value4>
<value5>0.75</value5>
<value6>8.5</value6>
<value7>11</value7>
</step>
<step>
<action>Comment</action>
<comment>Open the new PDF document we just created</comment>
</step>
<step>
<action>Start</action>
<text>Document.pdf</text>
<options>Single</options>
</step>