A forum to discuss Visual Studio setup / install related issue
Sometimes the VS component may not appear in the add/remove program list, but VS setup thinks it is installed. Below are some steps you could try to perform manual clean up if the uninstall fails either by using the uninstall tool or uninstalling through the add/remove program entries.
Thanks
Hong
If you would like to receive an email when updates are made to this post, please register here
Subscribe to this post's comments using RSS
@Ali
To save to a text file use msiinv on the command line, like this:
c:\> msiinv > c:\inv.log
The > is standard command line syntax meaning "redirect standard out" and the following argument c:\inv.log is the name of a file or special device to which you want the output redirected.
For more information google "output redirection". Most results will be for the UNIX shell but it's largely the same in cmd.exe.