Ask a questionAsk a question
 

AnswerVisual Studio 2005 WPF Extensions Problem

Answers

  • Sunday, December 16, 2007 4:17 PMErich Eichinger Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    If you want to install the "Visual Studio 2005 extensions for .NET Framework 3.0 (WCF & WPF), November 2006 CTP" *after* you have installed .NET 3.0 Service Pack 1 you will receive a message saying

    "Setup has detected that a prerequisite is missing.  To use Visual Studio 2005 extensions for .NET Framework 3.0 (WCF & WPF), November 2006 CTP you must have the .NET Framework 3.0 runtime installed.  Please install the .NET Framework 3.0 runtime and restart setup."


    In this you either need to

    1) uninstall 3.0sp1, reinstall 3.0, install vsexwfx, reinstall 3.0sp1

    or

    2) or add the following value to your registry

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{15095BF3-A3D7-4DDF-B193-3A496881E003}]
    "DisplayName"="Microsoft .NET Framework 3.0"

    to "emulate" the presence of 3.0


    .NET Framework 3.0sp1 does not *update* 3.0 - it *replaces* 3.0 which causes installers checking for the presence of 3.0 to fail.

    cheers,
    Erich

  • Monday, April 14, 2008 2:25 PMJuan Fernando G_ Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer

    I found a solution here (http://blog.tfanshteyn.com/2008/01/fixing-wcfwpf-vs-2005-extensions.html) that work's for me:

    Simply run the installer from the command line with the following:

    msiexec /i vsextwfx.msi WRC_INSTALLED_OVERRIDE=1

    • Proposed As Answer byNiklasE2 Wednesday, June 11, 2008 11:25 AM
    • Marked As Answer byCaddreModeratorThursday, November 20, 2008 8:58 PM
    •  

All Replies

  • Sunday, December 16, 2007 4:17 PMErich Eichinger Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer
    If you want to install the "Visual Studio 2005 extensions for .NET Framework 3.0 (WCF & WPF), November 2006 CTP" *after* you have installed .NET 3.0 Service Pack 1 you will receive a message saying

    "Setup has detected that a prerequisite is missing.  To use Visual Studio 2005 extensions for .NET Framework 3.0 (WCF & WPF), November 2006 CTP you must have the .NET Framework 3.0 runtime installed.  Please install the .NET Framework 3.0 runtime and restart setup."


    In this you either need to

    1) uninstall 3.0sp1, reinstall 3.0, install vsexwfx, reinstall 3.0sp1

    or

    2) or add the following value to your registry

    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{15095BF3-A3D7-4DDF-B193-3A496881E003}]
    "DisplayName"="Microsoft .NET Framework 3.0"

    to "emulate" the presence of 3.0


    .NET Framework 3.0sp1 does not *update* 3.0 - it *replaces* 3.0 which causes installers checking for the presence of 3.0 to fail.

    cheers,
    Erich

  • Monday, December 17, 2007 5:24 AMdjmike Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

     

    Thank you Enrich.  That is exactly what I needed.

     

    Cheers,

    Mike

  • Wednesday, February 27, 2008 5:31 AMRashidQuamar Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Hi,

     First of all the registery key number is different. But i found the exact registery key. Changed the display name. Restarted the system but still getting the same issue.

     

    Can you still help on this.

     

    Regards

    Rashid

  • Thursday, February 28, 2008 3:03 AMandre bin asril bin zahari Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

     

    yup I also have the same problem.

    Any help guys?

     

    THX very2 much. I want to learn the WPF things. They are coolll!

  • Tuesday, March 04, 2008 4:55 PMdjhawley Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
     RashidQuamar wrote:

    Hi,

     First of all the registery key number is different. But i found the exact registery key. Changed the display name. Restarted the system but still getting the same issue.

     

    Can you still help on this.

     

    Regards

    Rashid

     

    The key is one that doesn't currently exist in the registry. You have to add it yourself.

     

    They key was removed when installing sp1 so adding in that key again makes the installation believe .net 3 is installed and not .net 3 sp1

     

  • Wednesday, March 05, 2008 2:25 PMmutterholzbein Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
     RashidQuamar wrote:

    ...

    First of all the registery key number is different.

    ...

    ...

    And:

     Erich Eichinger wrote:

    ...
    2) or add the following value to your registry

    ...

     

    Any questions?!

     

    I didn't have one...

     

     

    greetz mhb

  • Wednesday, March 05, 2008 6:46 PMVBEric1 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

     

    Just wanted to chime in and say I had the same issue.

     

    Adding the key mentioned above solved the issue.

     

    Thanks
  • Tuesday, March 11, 2008 10:26 AMRashidQuamar Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    Hi,

     Even after adding the registry key I first restarted the system then tried to install. But still same problem.Installation fails.

     

    Regards

    Rashid

     

  • Tuesday, March 18, 2008 5:34 PMBrian Holland Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     

    I am having the exact same problem. I added the key and string, tried to install, but it still failed. Restarted the system tried again and it still fails. It also won't let me uninstall it.

  • Monday, April 14, 2008 2:25 PMJuan Fernando G_ Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Answer

    I found a solution here (http://blog.tfanshteyn.com/2008/01/fixing-wcfwpf-vs-2005-extensions.html) that work's for me:

    Simply run the installer from the command line with the following:

    msiexec /i vsextwfx.msi WRC_INSTALLED_OVERRIDE=1

    • Proposed As Answer byNiklasE2 Wednesday, June 11, 2008 11:25 AM
    • Marked As Answer byCaddreModeratorThursday, November 20, 2008 8:58 PM
    •  
  • Friday, April 18, 2008 5:47 AMDeepa14 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Hi,

    Thanks a lot Juan. This command line thing worked for me.

    Deepa
  • Wednesday, August 06, 2008 1:23 PMHaresh123 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Thank you very much. Your solution rocks.
    haresh
  • Thursday, August 21, 2008 3:48 PMcoolpran Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Thanks guys.. The command-line did the trick
  • Monday, September 08, 2008 8:48 PMabcdfrx Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     Proposed Answer

     Juan,

    Thnk for your posting. This works for me.


     

    • Proposed As Answer bytuanvd000 Wednesday, October 15, 2008 6:36 AM
    •  
  • Wednesday, October 15, 2008 6:40 AMtuanvd000 Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    Thanks for this help.
    After many times finding the solutions to install VS 2005 extensons for WPF.
    I added new key value in registry and it works ok.
    Now i can develop with WPF.
    cheers,
  • Wednesday, January 27, 2010 1:58 PMKingD Users MedalsUsers MedalsUsers MedalsUsers MedalsUsers Medals
     
    hey another prob...i wnt to discuss with u...???  i m having 2.0 in vs 2005, culd i go for 3.5 or 3.0..??  will vs2005 recognize the newer versions of .net..???  guys plz help me out....i want to upgrade...to wcf, wpf....etc....