Erros toda vez, dizendo "O nome do arquivo, nome do diretório ou a sintaxe do rótulo do volume está incorreta."
A sintaxe do seu comando está errada.
CMD [charset] [options] [/C Command]
- Command - The command, program or batch script to be run. This can even be several commands separated with '&' (the whole should also be surrounded by "quotes")
Você precisa cercar toda a string Command com aspas "
Use o seguinte:
cmd.exe /C "TYPE "%CMDER_ROOT%\scripts\elpfile.txt" && pause && exit"
Sintaxe
CMD [charset] [options] CMD [charset] [options] [/C Command] CMD [charset] [options] [/K Command]
Options
/C
- Run Command and then terminate
/K
- Run Command and then return to the CMD prompt. This is useful for testing, to examine variablesCommand - The command, program or batch script to be run. This can even be several commands separated with '&' (the whole should also be surrounded by "quotes")
Fonte cmd
Leitura Adicional
- Um índice A-Z da linha de comando do Windows CMD - Uma excelente referência para todas as coisas relacionadas à linha do Windows cmd.
- cmd - Inicie um novo shell CMD e (opcionalmente) execute um programa de comando / executável.