Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- @echo off
- rem VCRedist from VC++ 2008 installs temporary files in root directory
- rem These temporary files are erroneously created by the installer into the root directory, instead of the temp directory.
- rem These files are unnecessary and can be safely deleted from the system. This batch file is intended to automate the deletions.
- rem The functions of the runtime library will not be affected by the deletion.
- rem This is a known bug and was fixed in VS2008 SP1.
- rem Source: http://support.microsoft.com/kb/950683
- if exist install.exe del install.exe
- if exist install.res.1028.dll del install.res.1028.dll
- if exist install.res.1031.dll del install.res.1031.dll
- if exist install.res.1033.dll del install.res.1033.dll
- if exist install.res.1036.dll del install.res.1036.dll
- if exist install.res.1040.dll del install.res.1040.dll
- if exist install.res.1041.dll del install.res.1041.dll
- if exist install.res.1042.dll del install.res.1042.dll
- if exist install.res.1049.dll del install.res.1049.dll
- if exist install.res.2052.dll del install.res.2052.dll
- if exist install.res.3082.dll del install.res.3082.dll
- if exist vcredist.bmp del vcredist.bmp
- if exist globdata.ini del globdata.ini
- if exist install.ini del install.ini
- if exist eula.1028.txt del eula.1028.txt
- if exist eula.1031.txt del eula.1031.txt
- if exist eula.1033.txt del eula.1033.txt
- if exist eula.1036.txt del eula.1036.txt
- if exist eula.1040.txt del eula.1040.txt
- if exist eula.1041.txt del eula.1041.txt
- if exist eula.1042.txt del eula.1042.txt
- if exist eula.1049.txt del eula.1049.txt
- if exist eula.2052.txt del eula.2052.txt
- if exist eula.3082.txt del eula.3082.txt
- if exist VC_RED.MSI del VC_RED.MSI
- if exist VC_RED.cab del VC_RED.cab
Advertisement
Add Comment
Please, Sign In to add comment