This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- Re: install specific windows update after VC++ 2005?
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 05, 2012
03:32 PM
install specific windows update after VC++ 2005?
Hi there;
I have an installer that checks for the existence of VC++ 2005 SP1 and installs it if needed etc etc. Unfortunately, I ALSO need it to check for and install a certain Windows Update http://support.microsoft.com/kb/2538242
Is this possible? Can I have my installer do the following:
1) Check for and install VC++ 2005 (I've got this part working already.)
THEN:
2) install Windows Update KB2538242
Any advice is appreciated!
I have an installer that checks for the existence of VC++ 2005 SP1 and installs it if needed etc etc. Unfortunately, I ALSO need it to check for and install a certain Windows Update http://support.microsoft.com/kb/2538242
Is this possible? Can I have my installer do the following:
1) Check for and install VC++ 2005 (I've got this part working already.)
THEN:
2) install Windows Update KB2538242
Any advice is appreciated!
(3) Replies
Not applicable
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 05, 2012
08:34 PM
Check registery key:
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\KB2538242
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\KB2538242
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 06, 2012
07:37 AM
Ok that helps me establish if the windows update has already been installed but how do I proceed to install it if I find that it is needed?
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎Dec 06, 2012
11:19 AM
Ok I have created a custom prerequisite and it seems to be doing the trick.