xcopy file, rename, suppress “Does xxx specify a file name…” message

This seems pretty simple and maybe I’m just overlooking the proper flag, but how would I, in one command, copy a file from one directory to another and rename it in the destination directory? Here’s my command: if exist “bin\development\whee.config.example” if not exist “TestConnectionExternal\bin\Debug\whee.config” xcopy “bin\development\whee.config.example” “TestConnectionExternal\bin\Debug\whee.config” It prompts me with the following every time: … Read more