Within Power Automate Desktop, I can create an action to run a VBScript.
For example, if I have created a variable CurrentDate
with the
Get current date and time
action, then the following script in
a VBScript action will generate output in a text variable in PAD:
VBTest = 3
WScript.Echo VBTest
WScript.Echo "%CurrentDate%"
WScript.Echo "Year %CurrentDate.Year%"&" DOW %CurrentDate.DayOfWeek%"
Output captured in variable:
3
12/5/21 12:00:00 AM
Year 2021 DOW Sunday
But what is the version of the scripting engine used, and how can I get more info about what is available?