在Windows 7中查找命令

最近从Windows XP迁移到Windows 7.我正在使用eclipse环境来构build项目。 我有一个make文件,下面的命令

clean: find . -type f -name "*.o" -exec rm {} \; 

这用于search和删除当前目录中的目标文件。 我搬到Windows 7后,同样的命令不起作用。 以下是Windows 7上命令的输出。

 cs-make all find . -type f -name "*.o" -exec rm {} \; Access denied - . File not found - -TYPE File not found - F File not found - -NAME File not found - -EXEC File not found - RM File not found - {} File not found - ; cs-make: *** [clean] Error 1*** 

我的帐户拥有pipe理员权限。 另外我尝试使用“以pipe理员身份运行”运行日食。 如果有人知道解决scheme,请让我知道。