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
You need to get rid of the '/' characters in the date before you can use it in mkdir like this:
setlocal enableextensions set name=%DATE:/=_% mkdir %name%