March 25, 200521 yr I want my cleanup.cmd, after it is finished, to be deleted.Without user interaction.How do I do that?This is a part of my cleanup.cmd:CLS@echo offTITLE Windows XP SP2 - Cleanup after Unattended InstallationCLScolor 0AECHO.ECHO Cleaning up ECHO.ECHO.ECHO.del /f /q stuffrd /s /q stuffEXIT
March 25, 200521 yr Here Is The Thread If You Need Instruction To Edit It.ThreadHere This Is A Link To A Silent Clean Up VBs Script.Silent Clean Up
March 25, 200521 yr DEL CLEANUP.CMDEXITWhat I want to know it how to make a self destruct file. For example, a .jpg file. So it will delete itself after closing it.
March 25, 200521 yr for a batch file to delete itself all you need is the following right at the end (no exit necessary):del %0try this as a test, copy /paste the following into a file and name it anything.cmd or anythingelse.bat@echo offdel %0 now double click it!
March 25, 200521 yr Here A VBS code That Will Delete Anything ListedBlue Is The File Or Folder These Must Be In QuotesOn Error Resume Next Set Action = CreateObject("Scripting.FileSystemObject") Action.deleteFile ( "NAME THE FILE" ) Action.deleteFolder ( "NAME THE FOLDER" )This One Ask A Question Do You Want To Delete!On Error Resume Next Set Action = CreateObject("Scripting.FileSystemObject") Ques=Msgbox("Would You Like To" & vbcrlf & "Delete A File Or Folder", 4 + 64,"Delete What?")If Ques = 6 then Action.deleteFile ( "NAME THE FILE" ) Action.deleteFolder ( "NAME THE FOLDER" )elseend ifIf Ques = 7 Then msgbox "User Selected To Quit" & vbcrlf & "Not Deleting Nothing", 0 +32,"Good-Bye"Else End IfThis Is For The Question Delete VBs Edited January 4, 200620 yr by gunsmokingman
March 26, 200521 yr I was also thinking about an auto destruct for some time now.Let's say I put the unattended install on a CDRW is there any way to create a command to use the cd drive to delete everything on the cdrw after the install is complete?ThanksJosh
March 27, 200521 yr @Yazowl Very nice. I'll be incorporating that trick into all of my batches, thanks.
Create an account or sign in to comment