Hi, you didn't include the bcp command to the post, but I believe that you are exporting a table directly (like: bcp tablename...). Instead of that, try exporting based on a query where you convert the datetime colun to varchar in desired format and use that query in bcp. For example:
bcp "SELECT CONVERT(varchar(50), DatetimeColumnName, 103), ..." queryout, ...
Mika