cmd.exe /k switch
Correct syntax is:
cmd /k "cd /d c:\myfolder && startbatch.bat"
ssg already posted correct answer. I would only add /d switch to cd
command (eg. cd /d drive:\directory
). This ensures the command works in case current directory is on different drive than the directory you want to cd to.