I don\'t know much about windows .bat file syntax. My simple requirement is to create a folder at a specific location with name as current date. I tried searching this on go
This should work:
mkdir %date%
If it doesn't, try this:
setlocal enableextensions mkdir %date%