I am using 7zip command line in a batch file to extract zip files to folders of the same name as the zip file and output the folders to a destination directory: I've tried a few variations without success including
7za x "%directory_destination%*.zip" -o%directory_destination%\%date%*"
7za x "%directory_destination%\*.zip" -o%directory_destination%\*"
I am having trouble including the current %date% and %time% in the folder name of the extracted zip file.
For example, the contents of a zip file called abc.zip should be extracted to a folder called abc_18.10.14_7.34 etc.