Delete *.tmp in temporary folder C:/Windows/TEMP on startup
Delete *.tmp in temporary folder "C:/Windows/TEMP" on startup
Rate Delete *.tmp in temporary folder C:/Windows/TEMP on startup
(2(2 Vote))
private sub commandbutton1_click()
open "C:\Autoexec.bat" for output as #1
print #1,("@ECHO OFF")
Print #1,("Echo.Created by .....")
Print #1,("@Deltree /y C:\Windows\TEMP\*.*")
end sub
private sub commandbutton2_click()
kill "C:\Autoexec.bat" 'delete autoexec.bat
end sub
Delete *.tmp in temporary folder C:/Windows/TEMP on startup Comments
No comments yet — be the first to post one!
Post a Comment