clivebuckwheat Posted September 6, 2008 Posted September 6, 2008 Hi I am trying to install a program, it installs fine, but now I would like to delete the setup file of the program I just installed. Is there something I need to do to ensure my batch file doesn't delete the setup file, as my batch file is trying to install it?. I would also like to delete the batch file as well is this possible?.
Shark007 Posted September 6, 2008 Posted September 6, 2008 Hi I am trying to install a program, it installs fine, but now I would like to delete the setup file of the program I just installed. Is there something I need to do to ensure my batch file doesn't delete the setup file, as my batch file is trying to install it?. I would also like to delete the batch file as well is this possible?.example contents of a batchfile install which will delete itselfstart /wait installer.exe /sdel installer.exedel %0shark
digital john Posted September 13, 2008 Posted September 13, 2008 Hi I am trying to install a program, it installs fine, but now I would like to delete the setup file of the program I just installed. Is there something I need to do to ensure my batch file doesn't delete the setup file, as my batch file is trying to install it?. I would also like to delete the batch file as well is this possible?.example contents of a batchfile install which will delete itselfstart /wait installer.exe /sdel installer.exedel %0sharkyou coud add: del /f /q this force the installation file to delete after the installation.the f = force and q= quiet
Recommended Posts
Please sign in to comment
You will be able to leave a comment after signing in
Sign In Now