sql2005使用master..xp_cmdshell bcp导出excel文件默认格式问题

最近遇到一个问题,需要定期将查询结果生产EXCEL文件,并发送到各个部门。
在网上查询sql导出excel文件,都是说使用master..xp_cmdshell bcp。导出现在是没问题了,只不过导出的文件默认是文本格式,在excel打开或保存的时候,都是提示数据兼容性问题。求大神解决。
sql语句如下
EXEC master..xp_cmdshell 'bcp "SELECT * from budgetemporary" queryout "E:\budget\qiguanbu\renliziyuanbu\月度费用报表.xls" -c -S "sqlservername" -U "user" -P "key"'