如何复制使用BATCH FILE隐藏的.exe或任何类型的文件?

时间:2014-03-07 15:51:18

标签: batch-file cmd

{-----------------------------------
rem thx to RBI
rem note nsona.exe is a hidden file
title trigger
copy nsona.exe %temp%
---------end of the script --------}

我的问题是

nsona.exe未启动,因为nsona.exe是一个隐藏文件! 如何解决这个问题?

并尝试回答how to close a particular window using BATCH or CMD?

1 个答案:

答案 0 :(得分:2)

请改为尝试:

xcopy /h nsona.exe %temp%