Hi everyone,
I have a question that I'cant really figure out; how to use the Command Tool properly. All I'm trying to do is create a Folder with today's date with Alteryx, and I can do that through the Command Prompt.
for /f "tokens=2-4 delims=/ " %i in ('date /t') do MD "H:\%k%i%j"


However, when doing this through Alteryx, it is not working.
I don't really need an input or anything, but some people suggested that I convert the code /f "tokens=2-4 delims=/ " %i in ('date /t') do MD "H:\%k%i%j" to a BAT file and
read it as a result, but that is not working either. When I run the workflow, it just stops midway at 50% and it doesn't finish unless I close the CMD manually.

So right now I'm stuck and don't really know what is the best approach..writing the script as a separate file, as a formula input or in the Command Arguments section which I thought would work.
Any help is greatly appreciated.
Thanks!!