I have a problem using del
and taskkill
.
del D:\New Folder.exe
I tried changing the code to this:
del D:\"New Folder.exe"
That didn't work
So I tried this:
del "D:\New Folder.exe"
Still not working. But this is working:
del "D:\New Folder"
The problem is I must remove the .exe
to make this work.
And I have this problem too:
taskkill /F/IM New Folder.exe