What is the best way to deploy vcredist_x86.exe?

We use XML files to build the updater files at the command line.

Here's the line that has to do with the VC++ redist

<Files dir="temp"> <File source="vcredist_x86.exe" execute="before" commandline="/q" /> </Files>

After the redist is installed, we don't want to leave the .exe on the user's machine. How do we remove it? In the XML above, it says "temp". That's a help, but not great. How do we totally remove the .exe after the redist is finished?

Any files in the "temp" folder will be deleted when the update has completed.