Batch file to copy a file to desktop
Posted: 22 Oct 2022 16:02
I have a batch file that will search and delete the files that I want. The code is this:
@echo off
del "%userprofile%\desktop\*hs_err_*.log"
So with that being said, how do I copy a file from a folder to the desktop using a batch file?
@echo off
del "%userprofile%\desktop\*hs_err_*.log"
So with that being said, how do I copy a file from a folder to the desktop using a batch file?