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
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now