/Fepathname
This option specifies a name and directory for the .exe file or DLL created by the compiler. Without this option, the compiler gives the file a default name using base name of the first source or object file specified on the command line and the extension .exe or .dll.
If you specify the /c, to compile without linking, /Fe has no effect.
The following command line compiles and links all C source files in the current directory. The resulting executable file is named PROCESS.exe and is created in the directory C:\BIN.
CL /FeC:\BIN\PROCESS *.C
The following command line creates an executable in C:\BIN
same base name as the first source or object file:
CL /FeC:\BIN\ *.C
Output-File (/F) Options | Compiler Options | Setting Compiler Options | Specifying the Pathname