.NET Framework Setup ForumDiscuss and ask questions about the setup and deployment of .NET Framework.© 2009 Microsoft Corporation. All rights reserved.Sun, 29 Nov 2009 05:04:27 Z8a93298d-e8be-4731-a512-c8230582f9e4http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/73aac48e-0cad-4ddd-a651-311de4ba624ehttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/73aac48e-0cad-4ddd-a651-311de4ba624easliyanagehttp://social.msdn.microsoft.com/Profile/en-US/?user=asliyanagewhere to download viaual studio 2008can anyone tell me place to download visual studio 2008?if it is torrent file much better?Sun, 29 Nov 2009 05:04:27 Z2009-11-29T05:04:27Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/fc7cfe6c-dbff-49a5-bc27-5e2dba5ac4cbhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/fc7cfe6c-dbff-49a5-bc27-5e2dba5ac4cbCabzxhttp://social.msdn.microsoft.com/Profile/en-US/?user=CabzxUnable of publishing a VB2008 application; error says unable of finding dotnetfx langpack file I do haveHi, <div>I am a new user here so please forgive if I have missplaced this thread.</div> <div><br/></div> <div>Allow me to detail my problem.</div> <div><br/></div> <div>Recently I have been trying to publish an application I built using Visual Basic 2008. The problem arrises when I hit the &quot;publish&quot; button. I believe it's important to note that I set ubicatoin of the applicatioin requisites to local. Visual starts the publishing process but after a minute or so (maybe less) I get several error messages; they all state that I am missing some files in the Bootstraper folder. I made some research on the topic and I found that because my version is Express Edition some files needed for compilation won't be in their respective folders. I tracked all the files and little by little my errors dissappeared. Except for two. As listed, the Errors are the following:</div> <div><br/></div> <div> <div>Error<span style="white-space:pre"> </span>4<span style="white-space:pre"> </span>La ubicación de instalación de los requisitos previos no se ha establecido en el 'sitio web del proveedor del componente' y no se encuentra el archivo 'DotNetFX35SP1\DotNetFX35\x64\dotnetfx35langpack_x64es.exe' del elemento '.NET Framework 3.5 SP1' en el disco. Vea la Ayuda para obtener más información.<span style="white-space:pre"> </span>Examen_Bimestra_DeLevante</div> <div><br/></div> <div> <div>Error<span style="white-space:pre"> </span>5<span style="white-space:pre"> </span>La ubicación de instalación de los requisitos previos no se ha establecido en el 'sitio web del proveedor del componente' y no se encuentra el archivo 'DotNetFX35SP1\DotNetFX35\x86\dotnetfx35langpack_x86es.exe' del elemento '.NET Framework 3.5 SP1' en el disco. Vea la Ayuda para obtener más información.<span style="white-space:pre"> </span>Examen_Bimestra_DeLevante</div> <div><br/></div> <div>As mentioned I tracked the files and placed them in the corresponding folders, yet I keep getting the error messages.</div> <div>I learned that because these are langpacks they are not actually necessary for the program, so my question is:</div> <div><br/></div> <div>Is there a way to disable this files, and if not, is there a way to fix my issue?</div> <div><br/></div> <div>Also I would appreciate help on solving the following warnnings I get:</div> <div><br/></div> <div> <div>Advertencia<span style="white-space:pre"> </span>2<span style="white-space:pre"> </span>El valor del atributo 'PublicKey' en '.NET Framework 3.5 SP1' no coincide con el del archivo 'C:\Archivos de programa\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\DotNetFX35SP1\dotNetFX30\XPSEPSC-x86-en-US.exe'.<span style="white-space:pre"> </span>Examen_Bimestra_DeLevante</div> <div><br/></div> <div> <div>Advertencia<span style="white-space:pre"> </span>3<span style="white-space:pre"> </span>El valor del atributo 'PublicKey' en '.NET Framework 3.5 SP1' no coincide con el del archivo 'C:\Archivos de programa\Microsoft SDKs\Windows\v6.0A\Bootstrapper\Packages\DotNetFX35SP1\dotNetFX30\XPSEPSC-amd64-en-US.exe'.<span style="white-space:pre"> </span>Examen_Bimestra_DeLevante</div> <div><br/></div> </div> </div> <div><br/></div> <div><br/></div> </div> </div> <div><br/></div> <div><br/></div> <div><br/></div>Sun, 29 Nov 2009 00:02:40 Z2009-11-29T00:02:41Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/b6fa525c-8954-408b-8653-76cb57c30eaehttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/b6fa525c-8954-408b-8653-76cb57c30eaeM Hassan Khanhttp://social.msdn.microsoft.com/Profile/en-US/?user=M%20Hassan%20Khanimport data in gridview from textboxes... in asp.net(csharp)i want to post textbox1.text in mygridview after press a button .......<br/> actually my textbox1 is connected with database(sql) ...from it I select the userid(which is primary index in my sql table)<br/> and its related field are automatically display in other text box ........ so after selecting required userid i want that the data in textboxes export in gridview rows....and ... after i press my save button all gridviews rows should be save in my different table of sql...<br/> <br/> eg:<br/> <br/> texbox1=0001; //userid<br/> textbox2=Jennis; // respective name of given userid<br/> textbox3=11; // age<br/> text box4=southasia; //Country<br/> ---------------<br/> |POst button|<br/> ---------------<br/> <br/> <br/> gridview://<br/> -------------------------------------------------------------------------------------<br/>  userid              |  name                       | age                       |  Country                     <br/> -------------------------------------------------------------------------------------<br/> 001                     jennis                          11                           southsia<br/> 004                     peter                           34                           southamerica<br/> .<br/> .<br/> .<br/> .//other fiels..<br/>  <br/> /after all posting i want my data should be save in other tabel<br/> ------------------<br/> |saveAll button|<br/> ------------------<br/> <br/> this is the rough idea.... hope u guys understand....<br/> <br/> kindly reply asap..<br/> <br/> (may b i post this query in wrong forum.. so plz do tell me where should i post of asp.net question....?)<br/> <br/> thnks<br/> <br/>Tue, 24 Nov 2009 19:36:19 Z2009-11-28T11:05:40Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/fe0838a7-d6e6-4f71-a00a-6e077634c7c7http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/fe0838a7-d6e6-4f71-a00a-6e077634c7c7cheatcountryhttp://social.msdn.microsoft.com/Profile/en-US/?user=cheatcountryCan't seem to get program properly working on Windows MobileI have created a program for Windows Mobile and followed all of the directions for deploying it on to a windows mobile phone but when I try to run the program, I get a Not Supported Exception and I don't know what could be causing this because I rebuilt the project for every Windows target platform and none of them worked on my phone. I also built the application with .NET 2.0 and 3.5 framework. What could be causing this issue?Sat, 28 Nov 2009 08:56:39 Z2009-11-28T08:56:39Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/75b03604-398d-4f52-af70-c61f6492f392http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/75b03604-398d-4f52-af70-c61f6492f392Kulvinderhttp://social.msdn.microsoft.com/Profile/en-US/?user=KulvinderWindows .NET exe on 64 bitHi,<br><br>I have developed a .NET Windows exe in C# 2.0. It refrences two other projects (class libraries) onw is written in C#.NET 2.0 and other is in VC++.NET 2.0.<br><br>On my machine, i have VC++ SP1 installed and my machine is 32 bit Windows OS SP2. Here is the problem :<br><br>When i run this exe on a  64 bit Windows Vista, i get the following error when the exe tries to load the VC++.NET dll. <br><br><span style="font-weight:bold">Could not load file or assembly 'myAssembly, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null' or one of its dependencies. An attempt was made to load a program with an incorrect format.</span><br><br>I have installed VC++.NET 2005 SP1 (x86) on this 64 bit Vista machine.<br><br>What is the issue ?  Any ideas<br><br>Thanks<br>Kulvinder Singh <br>Wed, 16 Apr 2008 05:54:15 Z2009-11-28T03:49:02Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/e6ee8a2d-8025-43f1-b7e5-4896f8386d0ahttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/e6ee8a2d-8025-43f1-b7e5-4896f8386d0a_Rolandhttp://social.msdn.microsoft.com/Profile/en-US/?user=_RolandMissing ADO.NET Entity Framework template after installing SP1 <p class=MsoNormal style="margin:0in 0in 0pt"><span style="font-family:Times New Roman;font-size:small">After installing SP1 and making sure my project is set to use the 3.5 framework I don’t see the ADO.NET Entity Framework template when trying to add a new item to the project. <span style=""> </span>As a side note I also have Visual Studio Express on the same machine and can see it list there, but I can not see in Visual Studio Professional. <span style=""> </span><span style=""> </span>Any help would be greatly appreciated! </span></p>Fri, 05 Jun 2009 13:48:23 Z2009-11-28T02:31:36Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/68b0c8c0-46d8-4b3c-bd5b-12087f5a9b5ehttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/68b0c8c0-46d8-4b3c-bd5b-12087f5a9b5eDeepZonehttp://social.msdn.microsoft.com/Profile/en-US/?user=DeepZoneCannot install .net framework 3.5 SP1<p>Just upgraded my notebook from Vista to Windows 7 and trying to reinstall everything but get stuck on installing .net framework 3.5 SP1.  The following is the error log after turning off windows feature .net framework 3.5.1 (actually tried turn on and off but no lucck to get in installed)<br/><br/>[11/27/09,17:24:57] VS Scenario: [2] CSupportedPlatformCheck failed : You must use &quot;Turn Windows features on or off&quot; in the Control Panel to install or configure Microsoft .NET Framework 3.5 SP1.<br/>[11/27/09,17:24:57] VS Scenario: [2] Failed to pass the Warnings/Blocks checks in CVSScenario::Start()<br/>[11/27/09,17:30:45] VS Scenario: [2] CSupportedPlatformCheck failed : You must use &quot;Turn Windows features on or off&quot; in the Control Panel to install or configure Microsoft .NET Framework 3.5 SP1.<br/>[11/27/09,17:30:45] VS Scenario: [2] Failed to pass the Warnings/Blocks checks in CVSScenario::Start()<br/>[11/27/09,18:23:16] VS Scenario: [2] CSupportedPlatformCheck failed : You must use &quot;Turn Windows features on or off&quot; in the Control Panel to install or configure Microsoft .NET Framework 3.5 SP1.<br/>[11/27/09,18:23:16] VS Scenario: [2] Failed to pass the Warnings/Blocks checks in CVSScenario::Start()<br/>[11/27/09,20:15:59] Microsoft .NET Framework 3.5 (x64) 'package': [2] Error: Installation failed for component Microsoft .NET Framework 3.5 (x64) 'package'. MSI returned error code 1603<br/>[11/27/09,20:16:12] Microsoft .NET Framework 3.0SP1 (x64) (CBS): [2] CBS Component is marked to be uninstalled but CBSPackageName is not authored - CCBSComponent::SetManager()<br/>[11/27/09,20:16:12] Microsoft .NET Framework 3.0SP1 (x64) (CBS): [2] CBS Component can't be uninstalled as CBSPackageName is not authored - CCBSComponent::SetManager()<br/>[11/27/09,20:16:26] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.5 (x64) 'package' is not installed.<br/><br/>Can someone advise me how to fix it?<br/><br/>P.S. I have VS2008 and SP1 installed but I can't see AJAX Control Tookit in toolbox nor Silverlight application template.  Is it because of the framework 3.5 not installed?  I rememeber I was able to see both before upgrading to Windows 7.<br/><br/>Thanks a lot.</p>Sat, 28 Nov 2009 01:56:08 Z2009-11-28T01:56:08Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/554d6b5d-be57-4b77-ac1a-5f61d4bc0843http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/554d6b5d-be57-4b77-ac1a-5f61d4bc0843Dennis Wetherallhttp://social.msdn.microsoft.com/Profile/en-US/?user=Dennis%20Wetherallsafe to install an older .NET framework?<p>Is it safe to install an older .NET framework?<br/><br/>An msi package shows the message &quot;This setup requires the .NET Framework version 1.1.4322.  Please install .NET framework and run this setup again...&quot;  I currently have .NET Framework version <br/><br/>MS .NET Compact Framework 1.0 SP3 Developer<br/>MS .NET Compact Framework 2.0 SP2 Developer<br/>MS .NET Compact Framework 3.5 Developer<br/>MS .NET Framework 2.0 SP1<br/>MS .NET Framework 3.0 SP1<br/>MS .NET Framework 3.5</p>Sat, 14 Nov 2009 00:16:41 Z2009-11-28T00:38:20Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/8b65c3a6-98f5-457e-b39d-bf6a68676fa2http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/8b65c3a6-98f5-457e-b39d-bf6a68676fa2Oli82http://social.msdn.microsoft.com/Profile/en-US/?user=Oli82Online install fails with authenticated proxy Internet connectionsThe .NET 3.5 online installer fails to install due to authenticated proxy internet connection. <br> <br> Why is it that authenticated proxy authentication isn't supported by Microsoft's online installers, this is crazy (note Java updater supports this and many others) as many corporate environments employ this scenario? <br> <br> Microsoft <u>almost never supports auth proxies</u> (note Mesh doesn't) - internet explorer the only exception in my experience.<br> <br> My app is a few hundred Kb and the 250Mb framework makes me any my customers eyes water. I was going to use the client framework but that is no better than a full framework install if you cant access the internet through a auth proxy.<br> <br> <font style="color:rgb(204, 0, 0)" size=4 color="#cc0000"><b>When will this be resolved (I notice the installer is a PREVIEW so I hope this is corrected before it goes final!)?</b></font><br> <br>   <br> Thu, 11 Sep 2008 09:57:57 Z2009-11-27T14:53:32Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/509cf7c5-4789-45a8-b455-3569574a7197http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/509cf7c5-4789-45a8-b455-3569574a7197Suresh Kohandanhttp://social.msdn.microsoft.com/Profile/en-US/?user=Suresh%20KohandanWindows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned er<p align=left><font face=Arial size=2></font> </p> <p>Hi...</p> <p align=left> </p> <p align=left>While i trying to install .Net 3.0 i am getting the following error messages. I am quite tired of installing .Net 3.0 in my machine. </p> <p align=left> </p> <p align=left> </p> <p align=left> </p> <p>[09/25/07,01:58:38] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[09/25/07,01:59:06] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[09/25/07,01:59:06] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[09/25/07,02:16:50] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[09/25/07,02:17:07] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[09/25/07,02:17:07] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[09/25/07,02:24:08] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[09/25/07,02:24:27] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[09/25/07,02:24:27] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[09/25/07,02:38:17] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[09/25/07,02:38:33] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[09/25/07,02:42:43] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[09/25/07,02:42:59] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[09/25/07,02:42:59] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[09/25/07,02:45:56] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[09/25/07,02:46:15] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[09/25/07,02:46:16] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[09/25/07,03:03:46] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[09/25/07,03:04:03] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[09/25/07,03:04:03] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[09/26/07,00:19:42] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[09/26/07,00:20:01] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[09/26/07,00:20:01] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[09/28/07,22:11:33] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[09/28/07,22:11:51] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[09/28/07,22:21:03] VS Scenario: [2] *** Blocking Components exist and must be satisified before continuing to install ***<br>[09/28/07,22:21:03] VS Scenario: [2] Only x64 platforms are supported<br>[09/28/07,22:21:03] VS Scenario: [2] *** End of Blocking Component List ***<br>[09/28/07,22:21:06] VS Scenario: [2] Failed to pass the Warnings/Blocks checks in CVSScenario:<img alt="Tongue Tied" src="http://forums.microsoft.com/MSDN/emoticons/emotion-7.gif">tart()<br>[09/28/07,22:28:07] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[09/28/07,22:28:17] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[09/28/07,22:28:17] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[09/28/07,22:34:36] VS Scenario: [2] *** Blocking Components exist and must be satisified before continuing to install ***<br>[09/28/07,22:34:36] VS Scenario: [2] BITS Service<br>[09/28/07,22:34:36] VS Scenario: [2] *** End of Blocking Component List ***<br>[09/28/07,22:35:23] VS Scenario: [2] Failed to pass the Warnings/Blocks checks in CVSScenario:<img alt="Tongue Tied" src="http://forums.microsoft.com/MSDN/emoticons/emotion-7.gif">tart()<br>[09/28/07,22:36:45] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[09/28/07,22:36:52] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[09/28/07,22:36:52] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[11/19/07,21:25:42] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[11/19/07,21:25:50] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[11/19/07,21:25:50] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[11/19/07,21:32:38] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[11/19/07,21:32:47] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[11/21/07,20:31:56] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[11/21/07,20:32:03] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[11/21/07,20:32:04] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[11/21/07,20:33:28] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[11/21/07,20:33:39] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[11/21/07,20:33:39] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[11/21/07,20:38:38] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[11/21/07,20:38:47] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[11/21/07,20:38:48] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[11/21/07,20:43:32] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[11/21/07,20:43:41] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[11/21/07,20:43:41] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[11/21/07,20:59:59] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[11/21/07,21:00:07] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[11/21/07,21:00:08] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[11/21/07,21:39:43] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[11/21/07,21:39:51] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[11/22/07,18:51:18] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[11/22/07,18:51:27] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[11/22/07,18:51:27] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[11/22/07,19:04:15] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[11/22/07,19:04:22] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[12/06/07,22:21:45] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[12/06/07,22:21:58] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[12/06/07,22:21:58] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[12/06/07,22:29:19] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[12/06/07,22:29:28] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[12/06/07,22:29:28] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[12/07/07,04:48:46] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[12/07/07,04:48:54] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[12/07/07,08:01:36] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[12/07/07,08:04:12] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[12/08/07,12:25:17] Microsoft .NET Framework 2.0: [2] Failed to fetch setup file in CBaseComponent:<img alt="Stick out tongue" src="http://forums.microsoft.com/MSDN/emoticons/emotion-4.gif">reInstall()<br>[12/08/07,12:25:18] setup.exe: [2] ISetupComponent:<img alt="Stick out tongue" src="http://forums.microsoft.com/MSDN/emoticons/emotion-4.gif">re/Post/Install() failed in ISetupManager::InternalInstallManager() with HRESULT -2147467260.<br>[12/08/07,12:25:18] setup.exe: [2] CSetupManager::RunInstallPhase() - Call to Pre/Install/Post for InstallComponents failed<br>[12/08/07,12:25:18] setup.exe: [2] CSetupManager::RunInstallPhaseAndCheckResults() - RunInstallPhase() returned a NULL piActionResults<br>[12/08/07,12:25:18] setup.exe: [2] CSetupManager::RunInstallFromList() - RunInstallPhaseAndCheckResults failed [2]<br>[12/08/07,12:25:18] setup.exe: [2] ISetupManager::RunInstallLists(IP_PREINSTALL failed in ISetupManager::RunInstallFromThread()<br>[12/08/07,12:25:18] setup.exe: [2] ISetupManager::RunInstallFromThread() failed in ISetupManager::RunInstall()<br>[12/08/07,12:25:18] setup.exe: [2] CSetupManager::Run() - Call to RunInstall() failed<br>[12/08/07,12:25:19] WapUI: [2] DepCheck indicates Microsoft .NET Framework 2.0 is not installed.<br>[12/08/07,12:25:19] WapUI: [2] DepCheck indicates Windows Communication Foundation was not attempted to be installed.<br>[12/08/07,12:25:19] WapUI: [2] DepCheck indicates Windows Presentation Foundation was not attempted to be installed.<br>[12/08/07,12:25:19] WapUI: [2] DepCheck indicates Windows Workflow Foundation was not attempted to be installed.<br>[12/08/07,12:25:20] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[12/08/07,12:31:17] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[12/08/07,12:34:04] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[12/08/07,13:02:59] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[12/08/07,13:05:52] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[12/08/07,13:42:24] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[12/08/07,13:45:30] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br>[12/08/07,13:45:30] WapUI: [2] DepCheck indicates Microsoft .NET Framework 3.0 was not attempted to be installed.<br>[12/08/07,13:58:04] Microsoft .NET Framework 2.0: [2] Error: Installation failed for component Microsoft .NET Framework 2.0. MSI returned error code 1601<br>[12/08/07,13:58:17] WapUI: [2] DepCheck indicates Microsoft .NET Framework 2.0 is not installed.<br>[12/08/07,14:17:03] Windows Communication Foundation: [2] Error: Installation failed for component Windows Communication Foundation. MSI returned error code 1603<br>[12/08/07,14:18:24] WapUI: [2] DepCheck indicates Windows Communication Foundation is not installed.<br></p> <p align=left> </p> <p align=left>Any help is greatly appreiciated.</p> <p align=left> </p> <p align=left>Thanks</p> <p align=left> </p> <p align=left>Suresh</p>Sat, 08 Dec 2007 08:56:33 Z2009-11-27T14:45:08Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/58bc467d-d62a-43ed-b694-f3e44f614c5fhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/58bc467d-d62a-43ed-b694-f3e44f614c5fPrathul Prabhakarhttp://social.msdn.microsoft.com/Profile/en-US/?user=Prathul%20Prabhakar.Net 1.1 to 2.0 migration acceleratorHi,<br/>I am aware that there is a list of breaking changes during .Net 1.1 to 2.0 migration listed here.  <br/><br/><a href="http://msdn.microsoft.com/en-us/netframework/aa570326.aspx">http://msdn.microsoft.com/en-us/netframework/aa570326.aspx</a><br/><br/>I wanted to know whether there is any automation framework to fix the breaking errors automatically. Is there any particular reason why the migration wizard doesnt fix these breaking changes? Has anyone attempted to automate the fixing of migration errors? Any pointers to these questions would be highly appreciated. Thank you.Thu, 26 Nov 2009 09:58:44 Z2009-11-27T09:43:54Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/df5d4ef3-1f29-4b99-887a-98f8fe72e572http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/df5d4ef3-1f29-4b99-887a-98f8fe72e572Abhimaanhttp://social.msdn.microsoft.com/Profile/en-US/?user=Abhimaan Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.Error:-   Request for the permission of type 'System.Web.AspNetHostingPermission, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' failed.  <br/> <br/>Thu, 26 Nov 2009 07:07:17 Z2009-11-27T09:39:56Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/743ffddd-134b-4a95-8872-4a25c23ebea3http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/743ffddd-134b-4a95-8872-4a25c23ebea3IngVelhttp://social.msdn.microsoft.com/Profile/en-US/?user=IngVelMicrosoft .NET Framework version 2.0 required software not installed in windows 7Dear MSDN Community, <br/><br/>I just upgraded my machine to Windows 7. After installation was completed and all windows uodated were applied, I am receiving and annoying message every time I log on into my computer a message saying: Microsoft .NET Framework version 2.0 required software not installed in windows 7. I' ve tried every single possible solution to fix this problem but nothing seems to be working. If I tried to re-install the .NET 2.0 it says that it comes with the operating system. If I go to Add/Remove programs I cannot see it. I've installed NET. 3.5 the most recent version for windows 7 but I am still receiving the error message. Any advise to fix this issue permanently???<br/><br/><br/>Thank you all in advance for your assistance.Thu, 26 Nov 2009 13:45:32 Z2009-11-27T08:12:51Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/3acd31f0-61d9-42cc-b0fe-7abdfe2eadf1http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/3acd31f0-61d9-42cc-b0fe-7abdfe2eadf1Wildolsenhttp://social.msdn.microsoft.com/Profile/en-US/?user=WildolsenWindows/System filesI noticed in my files under Windows/System there are a lot of files that have a '$' before and after the file name.  How importane are these files and if I can delete them because they are taking up a lot of space? Thank-you for your helpWed, 25 Nov 2009 21:30:22 Z2009-11-27T07:47:35Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/5c7a0602-0a74-41e9-b5da-eebfd8cd6b36http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/5c7a0602-0a74-41e9-b5da-eebfd8cd6b36csharp add-in develophttp://social.msdn.microsoft.com/Profile/en-US/?user=csharp%20add-in%20developHow to squeeze some codes in Html document in the design-time I have make one add-in that design html .I want to insert Html code  into Html document ,when handle my Add in .this is visual design,like drag a control in html document designer ,at the same time generate corresponding code in html document souce in Visaul StudioFri, 27 Nov 2009 05:51:16 Z2009-11-27T05:51:17Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/33d16914-e5d2-40d2-aca6-15a67ff2b2f5http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/33d16914-e5d2-40d2-aca6-15a67ff2b2f5Mohammad.Adilhttp://social.msdn.microsoft.com/Profile/en-US/?user=Mohammad.Adil.Net run time error<p>when i run the program it displays the message</p> <p>&quot;The application has failed to initialise the memory(07xxxxxxx).Click Ok to terminate.&quot;</p>Fri, 20 Nov 2009 12:07:07 Z2009-11-27T03:30:23Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/f0766c0f-34f1-49ef-b04a-eaf748858288http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/f0766c0f-34f1-49ef-b04a-eaf748858288Nexigen2http://social.msdn.microsoft.com/Profile/en-US/?user=Nexigen2Problem after NET Frameworks 1.1 security updateWindows update was failing attempts to download this update for a month or so, so I decided to manually install it.  To do this I used NET Frameworks cleaner tool, then reinstalled it with frameworks 1.1 Redist.  Ever since that I've been having problems, mainly, one of my games (Quake3) is giving me 1-5 Frames Per Second (FPS) instead of the usual 125 FPS.  It is not the game itself, as no setting has changed, it is something to do with Frameworks.<br/> I've tried uninstalling Frameworks completely, reinstalling 1.0, 1.1, 2.0, even 3.5 along with all of the security updates from 1.0-2.0.  I've also reinstalled and updated the Video Card (nvidia geforce 7900 GS) drivers.<br/> I'm out of ideas.<br/> <br/> On a side note, long ago I had some trouble with Asus Probe II which I use to monitor CPU/MB temps.  It was giving me about a dozen error messages in the startup.  I remember I fixed it by deactivating something (probably Net Frameworks) and renaming one of the folders so that XP would remake it properly.  It worked at the time but gave the same FPS results on Quake.  After a few hours of messing with it, I removed the new folder and put the old one back.  Then I simply had the inconvenience of a dozen error messages.  This is related because the startup error messages for PC Probe II are gone now as well, it's almost as though I can narrow it down to that specific folder, but I don't have a backup copy of it to replace it with this time.  Unfortunately I can't be more specific than that since I'm going strictly off memory and no longer have the error messages to google anymore nor can I recreate the problem.<br/> <br/> It shouldn't matter but in case it does, my specs are Asus m2n32-sli deluxe with AMD Athlon x2 4800, EVGA nvidia Geforce 7900 GS.  Windows XP Home Edition.Wed, 25 Nov 2009 04:32:25 Z2009-11-26T10:14:01Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/5e4e14e4-8dae-4eb7-bedc-eebbf24f0734http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/5e4e14e4-8dae-4eb7-bedc-eebbf24f0734d17mayhttp://social.msdn.microsoft.com/Profile/en-US/?user=d17mayStandard Settings in setup project every team should makeI am working in Infrastructure team. For DotNet application we want to standardize the settings every team should make in setup project. I want to know from people what practices they are following in their organization Thu, 26 Nov 2009 10:08:01 Z2009-11-26T10:08:03Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/2819489f-8921-433d-8c77-ca5624416f9dhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/2819489f-8921-433d-8c77-ca5624416f9dNancyJ58http://social.msdn.microsoft.com/Profile/en-US/?user=NancyJ58HyperLinkField missing in 2.0I am using .Net Framework 2.0 (and VWD 2005 Express) and cannot find the control HyperLinkField in the toolbox. I have the HyperLink, but not the HyperLinkField where I can use the databound field in the Gridview as part of my URL to another page. When I right click in the tollbox, HyperLinkField does not show as a control to add to the toolbox. What do I need to be able to get this control and start using it?<br/><br/>Tue, 24 Nov 2009 20:37:11 Z2009-11-26T09:10:55Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/02eb22ed-674b-4512-bc04-948d03d966b4http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/02eb22ed-674b-4512-bc04-948d03d966b4moneybags390http://social.msdn.microsoft.com/Profile/en-US/?user=moneybags390My computer shows netframe is not installed on new laptop??When I had LexMark do a remote with me we went into device manager, and found that for whatever reason netframe is not installed, or activated.  This is a new computer, with windows seven, and below are some of the results of the scannow.  I have uninstalled my printer temporarily and need to know how to proceed?  Why is netframe not installed, and what needs to be done?  I need your help please.  ======================================================================<br/> [11/23/09,13:29:10] Beginning of new SetupVerifier activity logging session<br/> [11/23/09,13:29:10] Activity log file location: C:\Users\Karen\AppData\Local\Temp\setupverifier_main_11-23-09_13.29.10.txt<br/> [11/23/09,13:29:10] Error log file location: C:\Users\Karen\AppData\Local\Temp\setupverifier_errors_11-23-09_13.29.10.txt<br/> [11/23/09,13:29:10] Build created on October 19, 2009<br/> [11/23/09,13:29:10] Detected operating system: Windows 7 (x64)<br/> [11/23/09,13:29:10] Install state for .NET Framework 1.0: not installed.<br/> [11/23/09,13:29:10] Install state for .NET Framework 1.1: not installed.<br/> [11/23/09,13:29:10] Install state for .NET Framework 2.0: installed with service pack 2.<br/> [11/23/09,13:29:10] Install state for .NET Framework 3.0: installed with service pack 2.<br/> [11/23/09,13:29:10] Install state for .NET Framework 3.5: installed with service pack 1.<br/> [11/23/09,13:29:10] Install state for .NET Framework 4 Client: not installed.<br/> [11/23/09,13:29:10] Install state for .NET Framework 4 Full: not installed.<br/> [11/23/09,13:29:10] Not adding product '.NET Framework 1.0' because it is not currently installed<br/> [11/23/09,13:29:10] Not adding product '.NET Framework 1.1' because it is not currently installed<br/> [11/23/09,13:29:10] Not adding product '.NET Framework 1.1 SP1' because it is not currently installed<br/> [11/23/09,13:29:10] Not adding product '.NET Framework 2.0' because it is not currently installed<br/> [11/23/09,13:29:10] Not adding product '.NET Framework 2.0 SP1' because it is not currently installed<br/> [11/23/09,13:29:10] Not adding product '.NET Framework 3.0' because it is not currently installed<br/> [11/23/09,13:29:10] Not adding product '.NET Framework 3.0 SP1' because it is not currently installed<br/> [11/23/09,13:29:10] Not adding product '.NET Framework 3.5' because it is not currently installed<br/> [11/23/09,13:29:20] Starting verification for product .NET Framework 2.0 SP2<br/> [11/23/09,13:29:20] Section [Files - .NET Framework 2.0 (Common)] - start parsing entries<br/> [11/23/09,13:29:20] File C:\Windows\system32\mscoree.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\system32\netfxperf.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\system32\dfshim.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\system32\mscorier.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\system32\mscories.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\system32\MUI\0409\mscorees.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\CustomMarshalers\2.0.0.0__b03f5f7f11d50a3a\CustomMarshalers.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\ISymWrapper\2.0.0.0__b03f5f7f11d50a3a\ISymWrapper.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\big5.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\bopomofo.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\ksc.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\mscorlib.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\normidna.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\normnfc.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\normnfd.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\normnfkc.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\normnfkd.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\prc.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\prcp.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\sortkey.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\sorttbls.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\mscorlib\2.0.0.0__b77a5c561934e089\xjis.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\System.Data.OracleClient\2.0.0.0__b77a5c561934e089\System.Data.OracleClient.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\System.Data\2.0.0.0__b77a5c561934e089\System.Data.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\System.EnterpriseServices\2.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\System.EnterpriseServices\2.0.0.0__b03f5f7f11d50a3a\System.EnterpriseServices.Wrapper.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\System.Transactions\2.0.0.0__b77a5c561934e089\System.Transactions.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_32\System.Web\2.0.0.0__b03f5f7f11d50a3a\System.Web.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Accessibility\2.0.0.0__b03f5f7f11d50a3a\Accessibility.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\cscompmgd\8.0.0.0__b03f5f7f11d50a3a\cscompmgd.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\IEExecRemote\2.0.0.0__b03f5f7f11d50a3a\IEExecRemote.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\IEHost\2.0.0.0__b03f5f7f11d50a3a\IEHost.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\IIEHost\2.0.0.0__b03f5f7f11d50a3a\IIEHost.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Microsoft.Build.Engine\2.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Engine.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Microsoft.Build.Framework\2.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Framework.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Microsoft.Build.Tasks\2.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Tasks.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Microsoft.Build.Utilities\2.0.0.0__b03f5f7f11d50a3a\Microsoft.Build.Utilities.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Microsoft.JScript\8.0.0.0__b03f5f7f11d50a3a\Microsoft.JScript.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Microsoft.VisualBasic.Compatibility.Data\8.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Compatibility.Data.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Microsoft.VisualBasic.Compatibility\8.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Compatibility.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Microsoft.VisualBasic.Vsa\8.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.Vsa.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Microsoft.VisualBasic\8.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualBasic.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Microsoft.VisualC\8.0.0.0__b03f5f7f11d50a3a\Microsoft.VisualC.Dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Microsoft.Vsa.Vb.CodeDOMProcessor\8.0.0.0__b03f5f7f11d50a3a\Microsoft.Vsa.Vb.CodeDOMProcessor.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Microsoft.Vsa\8.0.0.0__b03f5f7f11d50a3a\Microsoft.Vsa.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\Microsoft_VsaVb\8.0.0.0__b03f5f7f11d50a3a\Microsoft_VsaVb.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\sysglobl\2.0.0.0__b03f5f7f11d50a3a\sysglobl.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Configuration.Install\2.0.0.0__b03f5f7f11d50a3a\System.Configuration.Install.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Configuration\2.0.0.0__b03f5f7f11d50a3a\System.configuration.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Data.SqlXml\2.0.0.0__b77a5c561934e089\System.Data.SqlXml.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Deployment\2.0.0.0__b03f5f7f11d50a3a\System.Deployment.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Design\2.0.0.0__b03f5f7f11d50a3a\System.Design.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.DirectoryServices.Protocols\2.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.Protocols.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.DirectoryServices\2.0.0.0__b03f5f7f11d50a3a\System.DirectoryServices.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Drawing.Design\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.Design.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Drawing\2.0.0.0__b03f5f7f11d50a3a\System.Drawing.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Management\2.0.0.0__b03f5f7f11d50a3a\System.Management.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Messaging\2.0.0.0__b03f5f7f11d50a3a\System.Messaging.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Runtime.Remoting\2.0.0.0__b77a5c561934e089\System.Runtime.Remoting.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Runtime.Serialization.Formatters.Soap\2.0.0.0__b03f5f7f11d50a3a\System.Runtime.Serialization.Formatters.Soap.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Security\2.0.0.0__b03f5f7f11d50a3a\System.Security.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.ServiceProcess\2.0.0.0__b03f5f7f11d50a3a\System.ServiceProcess.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Web.Mobile\2.0.0.0__b03f5f7f11d50a3a\System.Web.Mobile.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Web.RegularExpressions\2.0.0.0__b03f5f7f11d50a3a\System.Web.RegularExpressions.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Web.Services\2.0.0.0__b03f5f7f11d50a3a\System.Web.Services.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Windows.Forms\2.0.0.0__b77a5c561934e089\System.Windows.Forms.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System.Xml\2.0.0.0__b77a5c561934e089\System.XML.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\NETFXSBS10.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\netfxsbs12.hkf is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbs_diasymreader.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbs_iehost.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbs_microsoft.jscript.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbs_microsoft.vsa.vb.codedomprocessor.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbs_mscordbi.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbs_mscorrc.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbs_mscorsec.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbs_system.configuration.install.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbs_system.data.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbs_system.enterpriseservices.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbs_VsaVb7rt.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbs_wminet_utils.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbscmp10.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbscmp20_mscorwks.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\sbscmp20_perfcounter.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\SharedReg12.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v1.1.4322\gacutil.exe.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v1.1.4322\regsvcs.exe.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\1033\alinkui.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\1033\cscompui.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\1033\CvtResUI.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\1033\vbc7ui.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\1033\Vsavb7rtUI.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Accessibility.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\AdoNetDiag.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\adonetdiag.mof is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\alink.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\AppLaunch.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Aspnet.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet.mof is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet.mof.uninstall is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Aspnet_perf.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_perf.h is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_perf.ini is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_perf2.ini is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Aspnet_regsql.exe.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_state_perf.h is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\aspnet_state_perf.ini is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\big5.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\bopomofo.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CasPol.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\caspol.exe.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CLR.mof is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CLR.mof.uninstall is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\avantgo.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\cassio.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\Default.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\docomo.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\ericsson.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\EZWap.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\gateway.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\generic.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\goAmerica.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\ie.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\Jataayu.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\jphone.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\legend.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\MME.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\mozilla.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\netscape.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\nokia.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\openwave.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\opera.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\palm.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\panasonic.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\pie.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\webtv.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\winwap.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\Browsers\xiino.browser is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\DefaultWsdlHelpGenerator.aspx is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config.comments is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\machine.config.default is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\web.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\web.config.comments is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\web.config.default is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\web_hightrust.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\web_hightrust.config.default is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\web_lowtrust.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\web_lowtrust.config.default is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\web_mediumtrust.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\web_mediumtrust.config.default is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\web_minimaltrust.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CONFIG\web_minimaltrust.config.default is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CORPerfMonExt.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\csc.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\csc.exe.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\csc.rsp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\cscomp.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\cscompmgd.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Culture.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\CustomMarshalers.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\cvtres.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\dfdll.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\dfsvc.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\diasymreader.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\dv_aspnetmmc.chm is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\EventLogMessages.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\fusion.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\IEExec.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\ieexec.exe.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\IEExecRemote.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\IEHost.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\IIEHost.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\ilasm.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\ilasm.exe.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallCommon.sql is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallMembership.sql is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallPersistSqlState.sql is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallPersonalization.sql is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallProfile.SQL is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallSqlState.sql is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallSqlStateTemplate.sql is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallUtil.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallUtilLib.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\InstallWebEventSqlProvider.sql is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\ISymWrapper.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\jsc.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\jsc.exe.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\ksc.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Build.Engine.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Build.Framework.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Build.Tasks.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Build.Utilities.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Build.xsd is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.Tasks is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.CSharp.targets is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.JScript.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.JScript.tlb is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualBasic.Compatibility.Data.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualBasic.Compatibility.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualBasic.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualBasic.targets is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualBasic.Vsa.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualC.Dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Vsa.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Vsa.tlb is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Vsa.Vb.CodeDOMProcessor.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft.Vsa.Vb.CodeDOMProcessor.tlb is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\Microsoft_VsaVb.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\MmcAspExt.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\MSBuild.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\msbuild.exe.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\MSBuild.rsp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\MSBuild\Microsoft.Build.Commontypes.xsd is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\MSBuild\Microsoft.Build.Core.xsd is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscordacwks.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscordbc.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscordbi.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscoree.tlb is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorie.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorjit.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorld.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorlib.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorlib.tlb is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorpe.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorrc.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorsec.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorsn.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorsvc.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorsvw.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscortim.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\mscorwks.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\MUI\0409\mscorsecr.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\ngen.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\normalization.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\normidna.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\normnfc.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\normnfd.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\normnfkc.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\normnfkd.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\peverify.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\prc.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\prcp.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\RedistList\FrameworkList.xml is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\RegAsm.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\regasm.exe.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\RegSvcs.exe is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\regsvcs.exe.config is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\sbscmp20_mscorlib.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\shfusion.chm is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\shfusion.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\ShFusRes.dll is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\sortkey.nlp is installed on the system<br/> [11/23/09,13:29:20] File C:\Windows\Microsoft.NET\Framework\v2.0.50727\sorttbls.nlp is installed on the systemWed, 25 Nov 2009 16:29:45 Z2009-11-26T07:22:44Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/4e3bd1ad-458a-4d8b-8721-0c55fc3027f9http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/4e3bd1ad-458a-4d8b-8721-0c55fc3027f9Ken I Friedmanhttp://social.msdn.microsoft.com/Profile/en-US/?user=Ken%20I%20FriedmanCannot uninstall remove .net framwork 3.0 and 3.5 fixes after base uninstalledI uninstalled the base framework.net 3.0 and 3.5 products. But the a .net framework 3.0 hot fix and  .net framework 3.5 SP1 are still there. I cannot remove these nor can I reinstall the base products. How do I remove this hot fix and SP?Mon, 23 Nov 2009 01:39:28 Z2009-11-27T02:40:45Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/d0702c5e-702e-451f-8646-7caf23429177http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/d0702c5e-702e-451f-8646-7caf23429177JimGuyerhttp://social.msdn.microsoft.com/Profile/en-US/?user=JimGuyerAsking for FrontPage Server ExtensionsI am using Windows 7, Visual 2008 proffesional, Office Proffesional 2007<br/><br/>I am trying to get up to speed on E-Commerce using APress' book &quot;Beginnning ASP.net E-commerce in C#&quot;<br/><br/>The exercise ask us to create a web page that will run on the local IIS<br/><br/>It asks us to turn on IIS (which I have)<br/>It asks us to add the new site to C:\Windows\System32\drivers\etc\hosts (which I have)<br/>It asks us ot go to Control Panel&gt;Administrative&gt;IIS manager tool and  and add the new site (which I have) <br/><br/>From within Visual Studio, we are told to go to <br/>File&gt;New&gt;WebSite and choose ASP.Net Web Site<br/><br/>Go to the location Combox and change to &quot;HTTP&quot;<br/>Enter the web Site.<br/><br/>When I click the &quot;OK&quot; button I get an error message that I have not installed FrontPage Server Extensions<br/><br/>I looked around on the web for Front Page Server Extensions and most of what I found said that it was a Windows feature that you would turn on, but was obsolete.<br/><a href="http://support.microsoft.com/kb/298158">http://support.microsoft.com/kb/298158</a>    <a href="http://msdn.microsoft.com/en-us/library/aa140179(office.10).aspx">http://msdn.microsoft.com/en-us/library/aa140179(office.10).aspx</a>  <a href="http://support.microsoft.com/kb/312073">http://support.microsoft.com/kb/312073</a><br/>I looked for it anyway, but I could not find it amongst the features in Windows 7<br/><br/><br/>Is it something I need to turn on or download?<br/><br/>Is there something newer that I need to be using in place of FrontPage Server Extensions?Wed, 25 Nov 2009 14:38:04 Z2009-11-26T06:22:36Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/863c8a24-2a84-4ba5-8f14-4f146b6953aahttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/863c8a24-2a84-4ba5-8f14-4f146b6953aamailzyokhttp://social.msdn.microsoft.com/Profile/en-US/?user=mailzyokHow to create .Net framework 1.1 bootstrapper using visual studio 2008?I didn't know how to add .Net framework 1.1 as prerequisities in my setup project. Can someone help me?Tue, 24 Nov 2009 06:16:28 Z2009-11-26T05:45:37Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/50d439e9-b6df-4e83-b674-ef5bb3d401c2http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/50d439e9-b6df-4e83-b674-ef5bb3d401c2bhshahhttp://social.msdn.microsoft.com/Profile/en-US/?user=bhshahHelp needed for ASP.Net HTTPHandler<p>I would like to help on creating the real life example on using the IHTTPHandler, where on submitting the form from (page1.aspx), the Handler (implement HTTPHandler) should receive and process the request and transfer user to the Page2.aspx.</p> <p>And the same Handler should process the request and transfer/redirect usert to the Page3.aspx on submitting the form from the Page2.aspx.</p> <p>When I tried, the Handler receives and process the request on submitting the form from page1.aspx and on redirecting/transfering user to page2.aspx the control comes back to the Handler and control never comes out of the Handler.</p> <p>I would like to implement the front controller pattern in my application and I'm very new to ASP.NET.</p> <p>Thanks in advance.</p> <p> </p>Wed, 25 Nov 2009 17:19:27 Z2009-11-26T05:04:27Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/47bee01a-6440-4c2c-afd2-04e9907712f0http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/47bee01a-6440-4c2c-afd2-04e9907712f0Jkbjerryhttp://social.msdn.microsoft.com/Profile/en-US/?user=JkbjerryNet Framework 3.0 will not install XPSEPSC installer not installed<p align=left><font face=Arial size=2>I can find no way to install the XPSEPSC installer that Net Framework needs to install.  I have versions 1.1 and 2 properly installed.  I am running XP w/SP2 and have seen lots of reports regarding the same error.  An excerpt from the dd_XPS.txt file is shown.  In the dd_dotnetfx3.txt file, it reports that Net Framework 3 is already installed (which I feel is an error iteself <strong>see text in bold</strong>) since it is not in the installed files and updates under the control panel and even if it really were installed, why would setup fail due to an error.  I believe my issue is completely due to the XPSEPSC installer being installed.  </font></p> <p align=left><strong>dd_dotnetfxerror.txt</strong></p> <p align=left>12/18/07,10:47:03] XPSEPSC x86 Installer: [2] Setup Failed on component XPSEPSC x86 Installer<br>[12/18/07,10:47:04] WapUI: [2] DepCheck indicates XPSEPSC x86 Installer is not installed.<br>[12/18/07,11:17:47] XPSEPSC x86 Installer: [2] Error code 1603 for this component means &quot;Fatal error during installation.<br>&quot;<br>[12/18/07,11:17:48] XPSEPSC x86 Installer: [2] Setup Failed on component XPSEPSC x86 Installer<br>[12/18/07,11:17:49] WapUI: [2] DepCheck indicates XPSEPSC x86 Installer is not installed.</p> <p align=left><strong></strong> </p> <p align=left><strong>dd_dotnetfxinstall.txt</strong></p> <p align=left>[12/18/07,10:46:32] Setup.exe: ========== Logging started ==========<br>[12/18/07,10:46:32] Setup.exe: =====================================<br>[12/18/07,10:46:32] Setup.exe: Command line: c:\774cd28cf8a361c7e2c8694617ebf958\setup.exe <br>[12/18/07,10:46:32] Setup.exe: ISetupManager::LoadSetupLog() completed<br>[12/18/07,10:46:32] UTILS::RunNGENAction: Started<br>[12/18/07,10:46:32] UTILS::RunNGENAction: starting &quot;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen.exe queue pause&quot;<br>[12/18/07,10:46:33] UTILS::RunNGENAction: ngen.exe returned -1<br>[12/18/07,10:46:33] Setup.exe: ISetupManager::RunIntro() : LoadManagers<br>[12/18/07,10:46:33] Setup.exe: MoveLoadProgress()<br>[12/18/07,10:46:33] Setup.exe: inside ISetupManager::LoadDependencyMgr()<br>[12/18/07,10:46:33] Setup.exe: inside ISetupManager::LoadCDInfoMgr()<br>[12/18/07,10:46:33] Setup.exe: inside ISetupManager::LoadDiskInfoMgr()<br>[12/18/07,10:46:33] Setup.exe: inside ISetupManager::LoadUIManager()<br>[12/18/07,10:46:33] vs70uimgr: Entering InitializeModule() method.<br>[12/18/07,10:46:33] Setup.exe: MoveLoadProgress()<br>[12/18/07,10:46:33] Setup.exe: ISetupManager::RunIntro() : LoadDatabaseValues<br>[12/18/07,10:46:33] Setup.exe: MoveLoadProgress()<br>[12/18/07,10:46:33] Setup.exe: AddGlobalCustomProperty<br>[12/18/07,10:46:34] Setup.exe: AddGlobalCustomProperty<br>[12/18/07,10:46:36] Setup.exe: MoveLoadProgress()<br>[12/18/07,10:46:36] Setup.exe: MoveLoadProgress()<br>[12/18/07,10:46:36] Setup.exe: MoveLoadProgress()<br>[12/18/07,10:46:36] Setup.exe: MoveLoadProgress()<br>[12/18/07,10:46:36] Setup.exe: MoveLoadProgress()<br>[12/18/07,10:46:36] Setup.exe: MoveLoadProgress()<br>[12/18/07,10:46:36] Microsoft .NET Framework 3.0: Begining CSubComponent creation for: WAP 1.0 Core [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL]<br>[12/18/07,10:46:36] Microsoft .NET Framework 3.0: Begining CSubComponent creation for: Servicing [eCurrentState = INSTALLSTATE_ABSENT eDesiredState = INSTALLSTATE_LOCAL]<br>[12/18/07,10:46:36] Setup.exe: MoveLoadProgress()<br>[12/18/07,10:46:36] Setup.exe: MoveLoadProgress()<br>[12/18/07,10:46:36] Only x86 platforms are supported: Return type:<br>[12/18/07,10:46:36] Only x86 platforms are supported: IeReturnCheck<br>[12/18/07,10:46:36] Windows XP Service Pack 2 Update Information: Return type:<br>[12/18/07,10:46:36] Windows XP Service Pack 2 Update Information: IeReturnCheck<br>[12/18/07,10:46:36] Windows 2003 Server Service Pack 1 Update Information: Return type:<br>[12/18/07,10:46:36] Windows 2003 Server Service Pack 1 Update Information: IeReturnCheck<br>[12/18/07,10:46:36] Microsoft Windows Installer 3.0: Return type:<br>[12/18/07,10:46:36] Microsoft Windows Installer 3.0: Win32ReturnCheck<br><strong>[12/18/07,10:46:36] Microsoft .NET Framework 3.0 (STD) is already installed: Return type:<br>[12/18/07,10:46:36] Microsoft .NET Framework 3.0 (STD) is already installed: Win32ReturnCheck<br></strong>[12/18/07,10:46:36] Please uninstall Windows Workflow Foundation before installing this product: Return type:<br>[12/18/07,10:46:36] Please uninstall Windows Workflow Foundation before installing this product: IeReturnCheck<br>[12/18/07,10:46:36] Microsoft DirectX 9.0: Return type:<br>[12/18/07,10:46:36] Microsoft DirectX 9.0: Win32ReturnCheck<br>[12/18/07,10:46:36] RGB Rast: Return type:<br>[12/18/07,10:46:36] RGB Rast: NetRtReturnCheck<br>[12/18/07,10:46:36] MSXML 6.0 Parser: Return type:<br>[12/18/07,10:46:36] MSXML 6.0 Parser: NetRtReturnCheck<br>[12/18/07,10:46:36] WIC Installer: Return type:<br>[12/18/07,10:46:36] WIC Installer: NetRtReturnCheck<br>[12/18/07,10:46:36] Microsoft .NET Framework 2.0: Return type:<br>[12/18/07,10:46:36] Microsoft .NET Framework 2.0: NetRtReturnCheck<br>[12/18/07,10:46:36] XPSEPSC x86 Installer: Return type:<br>[12/18/07,10:46:36] XPSEPSC x86 Installer: Win32ReturnCheck<br>[12/18/07,10:46:36] Windows Communication Foundation: Return type:<br>[12/18/07,10:46:36] Windows Communication Foundation: NetRtReturnCheck<br>[12/18/07,10:46:36] Windows Presentation Foundation: Return type:<br>[12/18/07,10:46:36] Windows Presentation Foundation: NetRtReturnCheck<br>[12/18/07,10:46:36] Windows Workflow Foundation: Return type:<br>[12/18/07,10:46:36] Windows Workflow Foundation: NetRtReturnCheck</p> <p align=left><strong></strong> </p> <p align=left><strong>XPSEPSC.TXT file</strong></p> <p align=left>0.610: 2007/12/18 11:17:40.562 (local)<br>0.610: c:\965c969c34c304ccb48c490bbc7a60\update\update.exe (version 6.2.29.0)<br>0.610: Hotfix started with following command line: /quiet /norestart /log:C:\DOCUME~1\jkb\LOCALS~1\Temp\dd_XPS.txt <br>0.625: GetKernelType: GetInternalFilename failed<br>7.641: In Function TestVolatileFlag, line 11873, RegOpenKeyEx failed with error 0x2<br>7.641: In Function TestVolatileFlag, line 11905, RegOpenKeyEx failed with error 0x2<br>7.641: DoInstallation: CleanPFR failed: 0x2 <br>7.719: SetProductTypes: InfProductBuildType=BuildType.Sel<br>7.719: SetAltOsLoaderPath: No section uses DirId 65701; done.<br>7.797: Unexpected Error While Executing Line 1 ( Condition.Requirement ) of W2K.Condition <br>7.797: ExConditionalEvaluateSection: Syntax error in 'Condition' key of section W2K.Condition.<br>7.797: DoInstallation:  Error 0xf00c while evaluating extended conditional section [ProductInstall.ExtendedConditional].<br>7.813: The XpsEPSC c:\965c969c34c304ccb48c490bbc7a60\update\update.inf file is not correct.<br>7.813: Update.exe extended error code = 0xf00c<br>7.813: Update.exe return code was masked to 0x643 for MSI custom action compliance.</p> <p align=left> </p> <p align=left><strong>dd_dotnetfx3.txt file (partial)</strong></p> <p align=left>CProgressPage::RunningComponent()<br>[12/18/07,11:17:49] WapUI: {4F8791EE-486F-44B5-952B-F28F9FD58BD0}<br>[12/18/07,11:17:49] Setup.exe: ISetupManager::RunInstallFromList(IP_POSTINSTALL) completed<br>[12/18/07,11:17:49] Setup.exe: ISetupManager::RunInstallLists() completing<br>[12/18/07,11:17:49] WapUI: ISetupManager::GetGlobalCustomProperty() failed to find global prop in CProgressPage::RunningComponent()<br>[12/18/07,11:17:49] WapUI: {4F8791EE-486F-44B5-952B-F28F9FD58BD0}<br>[12/18/07,11:17:49] vs70uimgr: Entering DisplayFinal() method.<br>[12/18/07,11:17:49] vs70uimgr: Entering Next() method.<br>[12/18/07,11:17:49] WapUI: FProductIsInstalled(): MsiQueryProductState: {15095BF3-A3D7-4DDF-B193-3A496881E003}<br>[12/18/07,11:17:49] WapUI: FProductIsInstalled (NOT installed): -1<br>[12/18/07,11:17:49] WapUI: Obtained failed/cancel flag<br>[12/18/07,11:17:49] Setup.exe: GetComponents()<br>[12/18/07,11:17:49] Setup.exe: get_Components()<br>[12/18/07,11:17:49] WapUI: DepCheck indicates XPSEPSC x86 Installer is not installed.<br>[12/18/07,11:17:49] Setup.exe: AddGlobalCustomProperty<br>[12/18/07,11:17:49] WapUI: ***ERRORLOG EVENT*** : DepCheck indicates XPSEPSC x86 Installer is not installed.<br>[12/18/07,11:17:49] WapUI: Return for Windows Communication Foundation indicates a successful installation. DepCheck indicates the component is installed.<br>[12/18/07,11:17:49] WapUI: Return for Windows Presentation Foundation indicates a successful installation. DepCheck indicates the component is installed.<br>[12/18/07,11:17:49] WapUI: Return for Windows Workflow Foundation indicates a successful installation. DepCheck indicates the component is installed.<br>[12/18/07,11:17:49] Setup.exe: AddGlobalCustomProperty<br>[12/18/07,11:17:49] WapUI: CFinishPage::LaunchWatson() - Launching Watson with manifest: C:\DOCUME~1\jkb\LOCALS~1\Temp\MAN14.tmp<br>[12/18/07,11:17:49] Setup.exe: AddGlobalCustomProperty<br>[12/18/07,11:17:49] vs70uimgr: CUIMgr:<img alt="Big Smile" src="http://forums.microsoft.com/MSDN/emoticons/emotion-2.gif">isplayFinal(): Reseting Main Thread Events<br>[12/18/07,11:17:49] vs70uimgr: CUIMgr:<img height=19 alt="Big Smile" src="http://forums.microsoft.com/MSDN/emoticons/emotion-2.gif" width=19>isplayFinal(): Finished reseting Main Thread Events<br>[12/18/07,11:17:58] Complete_Finish: <br>[12/18/07,11:17:58] vs70uimgr: CUIMgr::ThreadUI(): Destroying Window()<br>[12/18/07,11:17:58] vs70uimgr: Entering OnDestroy() Method.<br>[12/18/07,11:17:58] vs70uimgr: CUIMgr:<img alt=Surprise src="http://forums.microsoft.com/MSDN/emoticons/emotion-3.gif">nDestroy(): Launching the calling application<br>[12/18/07,11:17:58] vs70uimgr: CUIMgr::LaunchCallingApp()<br>[12/18/07,11:17:58] vs70uimgr: CUIMgr:<img height=19 alt=Surprise src="http://forums.microsoft.com/MSDN/emoticons/emotion-3.gif" width=19>nDestroy(): Finished launching the calling application<br>[12/18/07,11:17:58] vs70uimgr: Entering Exit() method.<br>[12/18/07,11:17:58] vs70uimgr: CUIMgr::Exit(): Setting Main Thread Event: E_ME_FINISH<br>[12/18/07,11:17:58] vs70uimgr: CUIMgr::Exit(): Finished setting Main Thread Event: E_ME_FINISH<br>[12/18/07,11:17:58] vs70uimgr: CUIMgr::ThreadUI(): Finished destroying Window()<br>[12/18/07,11:17:58] vs70uimgr: CUIMgr::ThreadUI(): Exiting UI Try block.<br>[12/18/07,11:17:58] vs70uimgr: CUIMgr::ThreadUI(): Exiting UI Thread<br>[12/18/07,11:17:58] vs70uimgr: CUIMgr::ThreadUI(): Setting Main thread event: E_ME_FINISH<br>[12/18/07,11:17:58] vs70uimgr: CUIMgr::ThreadUI(): Finished setting Main thread event: E_ME_FINISH<br>[12/18/07,11:17:58] Setup.exe: CSetupManager::RunInstall() - Launching Post Setup Runs...<br>[12/18/07,11:17:58] Setup.exe: SetupManager::RunPostSetupLaunch() starting<br>[12/18/07,11:17:58] Setup.exe: SetupManager::RunPostSetupLaunch() ending<br>[12/18/07,11:17:58] Setup.exe: CSetupManager::RunInstall() - Finished launching Post Setup Runs<br>[12/18/07,11:17:58] Setup.exe: Exiting RunInstall<br>[12/18/07,11:17:58] Setup.exe: UnloadSuiteComponents()<br>[12/18/07,11:17:58] UTILS::RunNGENAction: Started<br>[12/18/07,11:17:58] UTILS::RunNGENAction: starting &quot;C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ngen.exe queue continue&quot;<br>[12/18/07,11:17:58] UTILS::RunNGENAction: ngen.exe returned 0<br>[12/18/07,11:17:58] Setup.exe: SETUP EXIT CODE - 1603<br>[12/18/07,11:17:58] End_Session: </p> <p align=left> </p> <p align=left><font face=Arial size=2></font> </p> <p align=left><font face=Arial size=2>Please help  Please</font></p>Tue, 18 Dec 2007 21:02:55 Z2009-11-26T04:12:30Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/47d473e3-0693-4c1e-8ab4-b8f117de2f64http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/47d473e3-0693-4c1e-8ab4-b8f117de2f64Tys Angelhttp://social.msdn.microsoft.com/Profile/en-US/?user=Tys%20AngelCannot load file or assembly 'CLI.implementation, Version=2.0.2693.36850<p>All I wanted to do was update my ATI Catalyst and my video drivers... but no. I had to install a new version of the .NET framework. </p> <p>After installing .NET framework 3.0 from the Microsoft Updates page, I restarted my computer. Upon reaching the desktop, the ATI Catalyst Control Center would not open, giving me the message:</p> <p> </p> <p> </p> <p>Cannot load file or assembly 'CLI.implementation, Version=2.0.2693.36850, culture=neutral, publickeytoken=90ba9c70f846762e' or one of it's dependencies. The system cannot find the file specified.</p> <p> </p> <p> </p> <p>I'm really not savvy with this stuff, and I have no idea what to do. I'd like to learn, if not for bettering my knowledge than for the purpose of getting my Catalyst to work again.. Please help!</p> <p> </p> <p> </p>Sun, 10 Jun 2007 16:07:12 Z2009-11-25T14:06:04Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/edd34c9d-267d-41dd-9ae0-d32397a45658http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/edd34c9d-267d-41dd-9ae0-d32397a45658Sha_woophttp://social.msdn.microsoft.com/Profile/en-US/?user=Sha_woopMVC2 NUnit<p>Hi </p> <p>I have followed one of your video on the link: <br/><a href="http://www.asp.net/learn/mvc-videos/video-406.aspx"><span style="color:#034efa">http://www.asp.net/learn/mvc-videos/video-406.aspx</span></a> by stephen walther</p> <p> </p> <p>Could you please help me how to include NUnit in the MVC framework.  I have downloaded a few stuffs to include NUnit in the MVC framework and was successful. </p> <p>However, when I created a default MVC project with the usual test, this time using NUnit I got the following error messag:</p> <p>MvcApplication6Tests.Controllers.HomeControllerTest.Index:<br/>  Expected: &quot;Home Page&quot;<br/>  But was:  null</p> <p><br/>MvcApplication6Tests.Controllers.HomeControllerTest.About:<br/>  Expected: &quot;About Page&quot;<br/>  But was:  null</p> <p><br/>How can I create unit test using NUnit and run them successfully?</p> <p> </p> <p> </p><hr class="sig">Sha_woopTue, 24 Nov 2009 11:08:20 Z2009-11-25T07:57:22Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/5e197625-db18-4507-86e8-9efc94ca8927http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/5e197625-db18-4507-86e8-9efc94ca8927Bhavin Mistryhttp://social.msdn.microsoft.com/Profile/en-US/?user=Bhavin%20MistrySetup of .Net framework is found tedious.Hi,<br/> <br/> I have Windows Client Application build with VB.Net 3.5<br/> <br/> For installing this Application at my clients place I go through 2 ways.<br/> <br/> 1. I Install .Net framework manually that is provided in VS 2008 DVD in WCU folder<br/> 2. I make a Setup Project that installs .Net Framework and my App both.<br/> <br/> But in both the ways I found trouble installing .Net framework. (On computer with 1Gb RAM and XP Professional 32 bit as OS)<br/> First it takes too much time to install about 20-25 minutes on one computer<br/> Second it fails on some computers. <br/> Then I use a software System Mechanic (A general software to clean registry and remove junk files and more.)<br/> Then I start installation it works fine.<br/> <br/> This failure is also found on brand new machines that even starts for the first time so I am not able to get why this kind of trouble happens?<br/> Anybody of you also face this kind of problem?<br/> <br/> What are the other ways for installing .Net framework?<br/> My client have a huge set of computers to which I need to install my app.<br/><hr class="sig">Bhavin.Tue, 24 Nov 2009 06:20:58 Z2009-11-25T07:32:18Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/df435214-7937-47ac-8b5a-a0a1bc321188http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/df435214-7937-47ac-8b5a-a0a1bc321188depub2http://social.msdn.microsoft.com/Profile/en-US/?user=depub2Visual Studio 2008 does not really target .NET 2.0Hi! I'm working on a Windows Forms Visual C++ application. As I'm using Visual Studio 2008, it started targeting Framework 3.5, but now I have selected on the project options to target Framework 2.0. I'm trying to use System::Web::Mail features and I get the message <br/><span style="font-size:xx-small"><br/>warning C4947: 'System::Web::Mail::MailMessage' : marked as obsolete<br/></span><br/>but that should NOT be happening because I'm targeting Framework 2.0 for which this should compile and run fine.<br/><br/>Thanks a lot in advance!Tue, 24 Nov 2009 22:38:49 Z2009-11-25T07:06:19Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/e26f34f3-6cb1-4fec-b66f-e0b4e8f89124http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/e26f34f3-6cb1-4fec-b66f-e0b4e8f89124Suchi Pahariahttp://social.msdn.microsoft.com/Profile/en-US/?user=Suchi%20Paharia.net 1.1 to 2.0 migrationCan anybody guide me on the risks involved in .net 1.1 to 2.0 migration. I have nearly 240 applications to migrate. Can anybody give me an estimation how much time it takes to convert one application.Fri, 20 Nov 2009 07:37:58 Z2009-11-27T03:37:02Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/d276ca0c-83d8-4e7e-85ae-7dc0c5274675http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/d276ca0c-83d8-4e7e-85ae-7dc0c5274675Steve B_http://social.msdn.microsoft.com/Profile/en-US/?user=Steve%20B_auto-install .Net framework ?Hi<br/> <br/> I'd like to provide on DVD a demo application that is build with .Net and that does not need to be installed.<br/> <br/> Is there any way to create an unique application executable that detects the presence of the targetted .net framework ?<br/> <br/> I'm quite sure that's not possible, but I can accept a &quot;launcher&quot;. In this case, what is the easiest way to create such a launcher ?<br/> <br/> it should do something like this :<br/> <br/> -if framework &gt;= 3.5 not installed then install last framework<br/> -launch the application<br/> <br/> Thanks for advices...<br/> SteveMon, 23 Nov 2009 15:48:13 Z2009-11-24T08:16:19Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/958013a3-4bf5-4da3-bc15-dc2a4b88094dhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/958013a3-4bf5-4da3-bc15-dc2a4b88094dRyPhttp://social.msdn.microsoft.com/Profile/en-US/?user=RyP.net 2003 into 2008Folks<br/>Wondering if it is possible to run a 2003 project from within 2008 without converting the 2003 project files.<br/>Many thanks.Mon, 23 Nov 2009 10:39:39 Z2009-11-25T12:51:28Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/4262eca2-18dd-4517-bf0b-75b94f519fb8http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/4262eca2-18dd-4517-bf0b-75b94f519fb8TumCamhttp://social.msdn.microsoft.com/Profile/en-US/?user=TumCamError in using Microsoft.ApplicationBlocks.DataI created one C# application I used <span style="text-decoration:underline"><strong>'using Microsoft.ApplicationBlocks.Data'</strong> </span> but it showing an error<br/> <br/> Error    1    The type or namespace name 'ApplicationBlocks' does not exist in the namespace 'Microsoft' (are you missing an assembly reference?)   <br/> <br/> <br/> can anybody tell me a solution to using this namespaceMon, 23 Nov 2009 12:21:07 Z2009-11-24T06:17:52Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/6e1ede11-6350-4f4f-b028-60fd3a7d848ehttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/6e1ede11-6350-4f4f-b028-60fd3a7d848echickiehttp://social.msdn.microsoft.com/Profile/en-US/?user=chickietest machine setup for framework 3.0<p>Anyone know what's the recomended hardware requirements for ms studio winform development (sql2005 db).<br/>I'm developing winform appz with studio 2008 on sql 2005 and would like to recomend my customer some reliable desktop to run.</p><hr class="sig">Smile, Joshua SiewMon, 23 Nov 2009 10:09:09 Z2009-11-24T06:47:24Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/b0b23905-99c9-4052-b9bd-abfb735780fbhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/b0b23905-99c9-4052-b9bd-abfb735780fbSanosukeDAhttp://social.msdn.microsoft.com/Profile/en-US/?user=SanosukeDAProblem Installing .Net FrameworkOS: Microsoft XP Media Center Edition Version 2002 SP3<br/> <br/> I seem to have a problem installing .Net Framework 3.5 SP1.<br/> I can't update my graphics card until I finish installing .Net Framework (I did a system restart due to a virus, so I'm getting all my settings back to normal).<br/> <br/> Error Log:<br/> [11/22/09,14:16:24] WapUI: [2] DepCheck indicates Microsoft .NET Framework 2.0a is not installed.<br/> [11/22/09,14:28:01] Microsoft .NET Framework 2.0a: [2] Error: Installation failed for component Microsoft .NET Framework 2.0a. MSI returned error code 1603<br/> <br/> I then go to download 2.0, only to get the error on install of:<br/> &quot;Error 25015.Failed to install assembly 'C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.VisualBasic.Compatibility.dll' because of system error: 0x80131107&quot;<br/> <br/> What should I do?<br/> <br/>Sun, 22 Nov 2009 23:41:48 Z2009-11-27T02:40:52Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/cbcc3def-016d-467f-952d-27184cadff52http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/cbcc3def-016d-467f-952d-27184cadff52imtufailhttp://social.msdn.microsoft.com/Profile/en-US/?user=imtufailwhat is the proper definition of framwork and platform?plz some one explane me these and also the difference between them <br/>thanksSun, 22 Nov 2009 16:13:38 Z2009-11-27T02:39:25Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/7184bce4-c82b-4656-8065-bc030dfdb62ehttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/7184bce4-c82b-4656-8065-bc030dfdb62emoneybags390http://social.msdn.microsoft.com/Profile/en-US/?user=moneybags390Should I back up first?Hi,<br/> <br/> I only received the 'need to download netframe 2.0, after I installed my printer.  Also If I try to repair OS, Don't I need the original disk?  <br/> <br/> <br/> Thanks,<br/> <br/> KarenSat, 14 Nov 2009 17:29:32 Z2009-11-23T21:35:04Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/061546b7-c405-4411-bd95-276e62128c39http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/061546b7-c405-4411-bd95-276e62128c39PdNethttp://social.msdn.microsoft.com/Profile/en-US/?user=PdNetHow to find version of the installed dot net framework version<span style="font-family:Arial;font-size:13px;white-space:pre">How to find version of the installed dot net framework version programitically by vb.net.</span> <div><span style="font-family:Arial;font-size:small"><span style="font-size:13px;white-space:pre"><br/></span></span></div> <div><span style="font-family:Arial;font-size:small"><span style="font-size:13px;white-space:pre">I have many version in my system 1.1,2.0,3.0,3.5. But how cani find that framework 3.5 installed or not.<br/></span></span> <div><span style="font-family:Arial;font-size:small"><span style="font-size:13px;white-space:pre"><br/></span></span> <div><span style="font-family:Arial;font-size:small"><span style="font-size:13px;white-space:pre"><br/></span></span></div> </div> </div>Sat, 21 Nov 2009 13:55:54 Z2009-11-27T03:38:32Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/8e0e2d37-7ced-447c-a692-3c062239b9d3http://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/8e0e2d37-7ced-447c-a692-3c062239b9d3vikas02http://social.msdn.microsoft.com/Profile/en-US/?user=vikas02how to make plug in for outlook<p>hello..</p> <p>how i make plug in for outlook by using asp.net(c#)....</p> <p>give exlpanation....</p> <p>plz reply</p>Sat, 21 Nov 2009 07:40:55 Z2009-11-27T03:41:10Zhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/cc546f3e-4c4b-4ae1-a702-efa555a01b5dhttp://social.msdn.microsoft.com/Forums/en/netfxsetup/thread/cc546f3e-4c4b-4ae1-a702-efa555a01b5dSqlStudent_ASPNEThttp://social.msdn.microsoft.com/Profile/en-US/?user=SqlStudent_ASPNETFramework 1.1 To Visual Studio 2003 For Window Forms and Framework 2.0 To Visual Studio 2005 For ASP.NET<p>Hello, i already have a window aplication in production that was developed in visual studio 2003 whit 1.1 framework. So, i want to develop a new ASP.NET Web Site whit Visual Studio 2005 and 2.0 Framework. Do i have any problem if i run both?<br/><br/>How can i have both in production whitout affect my window form application?</p>Fri, 20 Nov 2009 16:47:40 Z2009-11-27T03:43:10Z