
Originally Posted by
LeftEyeNine
Blowing up whole content would... ?
Remove a significant number of runtime libraries from your system, though the OS itself *should* continue to work fine. However the registry would be unaffected and other programs might no longer run.
(I tried to install it via its redist installer downloaded from Microsoft Download, not Windows Update. When I tried to remove the one with "Extend blabla" (?) next to it, it said it couldn't find the files to do it and offered a removal of the related entry. When I wanted to re-run the installer, it said "the framework itself or a higher version is already installed" and stalled)
If that is a MSI file (or you can open it with something like 7zip and extract the MSI file from it) then you can use the following from the commandline to repair the installation:
Code:
msiexec /f amus the_file.msi
See: http://msdn.microsoft.com/en-us/libr...88(VS.85).aspx
EDIT:
The code posted does the following:
Run the msi package installer included with Windows, and instruct it to:
(1) Re-install all files in the MSI package regardless of whether or not a file exists at the location it will be installed to
(2) Rewrite all machine specific registry settings for the MSI package
(3) Rewrite all user specific registry settngs for the MSI package
(4) Re-install any shortcuts for the MSI package if applicable.
Bookmarks