Okay. Assuming that file exists (and it definitely should, unless your installation was aborted or something deleted files from it - please confirm it does first), then it likely means that the .cmd file extension on your computer has been assigned to something else than the default.
Files with .cmd extension should be, like .bat files, associated with the Windows command interpreter. To make sure it's the case on your machine, open a command prompt and type:
% Windows command prompt
assoc .cmd
%
It should output: .cmd=cmdfile
Then validate that the "cmdfile" type is executed directly and not through another program:
% Windows command prompt
ftype cmdfile
%
It should output: cmdfile="%1" %*
If it outputs anything different than the above, open the command prompt in *Administrator* mode, and type:
% Windows command prompt (Administrator mode)
assoc .cmd=cmdfile
ftype cmdfile="%1" %*
%
Let me know if it fixes the problem.