Kirill - 2015-01-24

Strictly speaking, it's not a bug in Console, but limitations of command-line parsing. Technically, you need to escape "&" as "^&" before passing it as an argument to Console. Console can't decide whether you want "date & time" or "date ^& time".

If all you want is "cd %v", try

console.exe -d "%v"

(reminder: that's how you would type it into regedit)

If you want to open a specific tab, add

-t TabName

(reminder: tab names are case-sensitive)

And if you want to open all of them in the same instance of console, add

-reuse

(this works in my build from http://kirill.ca/ )