January 20, 200521 yr HiOK, having done 23 installs so far, the "cleanup" batch file always kills itself just before it finishes. Here is my code:ECHO.ECHO Removing Program Installation DirectoriesECHO Please wait...rmdir %systemdrive%\Install /S/Q--------------------------ECHO.ECHO Removing Temporary Driver Installation DirectoriesECHO Please wait...rmdir %systemdrive%\Drivers /S/Q It always kills itself where i have put the -------Anyone ideas?TIAOli
January 20, 200521 yr HiOK, having done 23 installs so far, the "cleanup" batch file always kills itself just before it finishes. Here is my code:ECHO.ECHO Removing Program Installation DirectoriesECHO Please wait...rmdir %systemdrive%\Install /S/Q--------------------------ECHO.ECHO Removing Temporary Driver Installation DirectoriesECHO Please wait...rmdir %systemdrive%\Drivers /S/Q It always kills itself where i have put the -------Anyone ideas?TIAOliPut ECHO in front of the ---------------------------- and it should work.
January 20, 200521 yr Author The ----------------- doesnt exist in the actual file - put it there as an indicator of where the file was breaking.Any ideas?TIAOli
January 20, 200521 yr You are deleting the folder with the batch in, before it has finished running.Switch them around and make sure that the last command is the one deleting the folder in which your running batch resides.
Create an account or sign in to comment