Visual Studio 2013 Update 4 - VSTest.console Output SDOUT Messages DURING Test Run, NOT After Test Run Completes

I am using vstest.console.exe and running a test from our internal CI build system, our internal CI build system requires console standard out to be updated at least every 30 minutes to
ensure that the process has not hung. 
I am executing the following command using a customer logger and test settings files:
vstest.console.exe /testcasefilter:"TestCategory=LongTest" /settings:"C:\testing\CodedUI.testsettings" /logger:TRX /logger:CodedUITestLogger "C:\AppTests\CodedUITest.dll" /InIsolation
I have copied and modified the following custom logger(see
here for more info):
https://github.com/ppiotrowicz/AwesomeLogger
Such that after the test is executed the pass/fail/success information is printed to the standard out console.
Tests run: 1, Errors: 0, Failures: 0, Inconclusive: 0, Time: 00:00:87.9331298 minutes
Not run: 0, Invalid: 0, Ignored: 0, Skipped: 0
It's important to be clear that the test run takes 90 minutes, it's a long running test.
Time: 00:00:87.9331298 minutes
When the test run is executed for 90 minutes I see the following and our CI build system kills the process after 30 minutes of no output, so in the failure log I see:
vstest.console.exe /testcasefilter:"TestCategory=LongTest" /settings:"C:\testing\CodedUI.testsettings" /logger:TRX /logger:CodedUITestLogger C:\AppTests\CodedUITest.dll
Microsoft (R) Test Execution Command Line Tool Version 12.0.31101.0
Copyright (c) Microsoft Corporation. All rights reserved.
Running tests in C:\testing\bin\debug\TestResults
Starting test execution, please wait...
However I have a data-driven codedUI test pulling from a csv data source, that successfully executes, however the test takes 90 minutes to run....which means that for 90 minutes the console output displayed is only:
Running tests in C:\testing\bin\debug\TestResults
Starting test execution, please wait...
How can I have vstest.console output to standard out DURING the test run to the console?
Is there a way in the .testsettings file to enable more verbose logging
DURING the test execution?
In MSTest it was possible to use the parameter (/detail:stdout) which would display info while the test was running.  
MSTEST /testcontainer:MyDllToTest.dll /testSettings.local.TestSettings /detail:stdout
Ian Ceicys

I ended up solving the issue for our internal CI system with the following threaded coded. I don't like that it just prints: CodedUI Test Run in progress. How can I query for a percent complete for test execution status or get a reading on the iteration
that's running for each row in the csv data source?
[Test, Category("RunCodedUITest")]
public void RunVsTestConsole()
//ARRANGE
var outputPath = "C:\Tests\bin\debug"
var codedUIAssembly = Path.Combine(outputPath, "CodedUITest.dll");
string output;
string codedUIAssemblyFile = @codedUIAssembly.ToString();
if (File.Exists(codedUIAssemblyFile))
//ACT
CodedUITestRunner codedUiTestRunnerObject = new CodedUITestRunner();
Thread workerThread = new Thread(codedUiTestRunnerObject.RunTest);
workerThread.Start();
while (workerThread.IsAlive)
TimeSpan oneminute = new TimeSpan(0, 1, 0);
Console.WriteLine("CodedUI Test Run in progress...");
Thread.Sleep(oneminute);
workerThread.Join();
Console.WriteLine("CodedUI Test Run completed.");
else
Console.WriteLine("ERROR: CodedUI Test Assembly file Does NOT exist @ Path : " + codedUIAssemblyFile);
Assert.IsTrue(File.Exists(codedUIAssemblyFile), "CodedUI Binary DLL exists!" + codedUIAssemblyFile);
public class CodedUITestRunner
// This method will be called when the thread is started.
public void RunTest()
var outputPath = "C:\Tests\bin\debug"
var codedUIAssembly = Path.Combine(outputPath, "CodedUITest.dll");
string output;
string codedUIAssemblyFile = @codedUIAssembly.ToString();
output = TestFrameworkHelper.Exec("vstest.console.exe", string.Format("/testcasefilter:\"TestCategory=LongTest\" /settings:\"C:\\tests\\CodedUI.testsettings\" /logger:TRX /logger:CodedUITestLogger {0}",
codedUIAssembly), WorkingDir: outputPath, RequestEC: false);
StringAssert.Contains("EXIT CODE: 0", output, "Exit code was not 0.");
Ian Ceicys

Similar Messages

  • Publish cloud service fails from Visual Studio 2013 Update 4: Published Asset Entry for Image Microsoft.Azure.Diagnostics_PaaSDiagnostics_europeall_manifest.xml not found.

    I have a cloud service project with two roles (service and worker). In Visual Studio 2013 Update 4 when I choose "Publish..." from the "Solution Explorer",  it opens "Microsoft Azure Activity Log" and quickly terminates.
    Here the log:
    9:43:47 AM - Applying Diagnostics extension.
    9:44:09 AM - Published Asset Entry for Image Microsoft.Azure.Diagnostics_PaaSDiagnostics_europeall_manifest.xml not found.
    All works fine when uploading the package and updating from https://manage.windowsazure.com/. It only fails from within Visual Studio.
    What can I do to get it working?

    I have the same problem with our Azure project. Two web roles (service and worker). Just updated from SDK2.2 to SDK2.5 and Visual Studio 2013 Update 2 to Update 4. The main reason behind this was to move from log4net to WAD and in doing so, of course directly
    move to the new diagnostics version.
    Now, I get the same error message in Visual Studio:
    11:45:24 - Checking for Remote Desktop certificate...
    11:45:25 - Applying Diagnostics extension.
    11:45:45 - Published Asset Entry for Image Microsoft.Azure.Diagnostics_PaaSDiagnostics_europeall_manifest.xml not found.
    With my small testing project - also two roles (service and worker) - everything is fine. However, I'm looking for a solution to make by existing production service working.
    Also the test project shows no Microsoft.Azure.Diagnostics_PaaSDiagnostics_europeall_manifest.xml,
    but this is no problem - so what's the meaning of or solution to this error messages?
    What I found so far:
    I deployed the Azure project from the same development environment to another Azure test service: Deployment
    showed no errors and the service is running fine! So the problem is not with the source, the development environment, library dependencies etc.
    Trying Azure cmdlets for PowerShell also work fine for the new service and fails for the production service with almost the same error message:
    Following http://blogs.msdn.com/b/kwill/archive/2014/12/02/windows-azure-diagnostics-upgrading-from-azure-sdk-2-4-to-azure-sdk-2-5.aspx
    I tried:
    PS C:\> Set-AzureServiceDiagnosticsExtension -StorageContext $storageContext -DiagnosticsConfigurationPath $public_config -ServiceName $service_name -Slot 'Staging' -Role $role_name
    VERBOSE: Setting PaaSDiagnostics configuration for MyWebRole.
    Set-AzureServiceDiagnosticsExtension : BadRequest : Published Asset Entry for Image
    Microsoft.Azure.Diagnostics_PaaSDiagnostics_europeall_manifest.xml not found.
    At line:1 char:1
    + Set-AzureServiceDiagnosticsExtension -StorageContext $storageContext -Diagnostic ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [Set-AzureServiceDiagnosticsExtension], CloudException
        + FullyQualifiedErrorId : Microsoft.WindowsAzure.CloudException,Microsoft.WindowsAzure.Commands.ServiceManagement.
       Extensions.SetAzureServiceDiagnosticsExtensionCommand
    The problem seems to be related to those service configuration parts in the cloud which are not replaced
    by a new deployment... So what are possible reasons or fixes for this behaviour?
    Best regards,
     Andreas

  • Visual studio 2013 update 4 will not install

    I am currently running visual studio 2013 Version 3, and i recently just downloaded the update 4 file.  I've tried installing it multiple times but all it does is show the splash screen and then wink out.  Checked the task processes and its not
    running.  I've checked the event log, and nothing interesting in there either.  I copied the file to another machine and it ran fine, so i know the file is good.  I've also downloaded the DVD ISO version of the updater from MSDN, with the same
    results.  Am i missing something?  Is there a different way i can debug this to find out why it's not working for me?  Thanks for any help!
    Phil Johnson

    Hi there.  I actually am entirely up to date on windows update, i show nothing needs to install there.  
    I am running F-secure, but when i go into services and disable all of the F-secure services, I still get the same problem.
    When i run the update file, i get 3 new files that occur in my temp folder.  Below is the contents of the log file that is created:
    [2520:2C8C][2014-11-16T20:02:23]i001: Burn v3.7.3424.0, Windows v6.3 (Build 9600: Service Pack 0), path: C:\Users\phil.johnson\Downloads\VS2013.4.exe, cmdline: ''
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'EditionDisplayName' to value '#loc.vsupdatededitiondisplayname'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'FactorMsi' to value '1.3'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'MoreLanguageFwlinkId' to value '427825'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'PrivacyAgreementFwlinkId' to value '427803'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'PrivacyStatementFwlinkId' to value '427803'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'MinOsLevelFwlinkId' to value '427813'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'SolutionFwlinkId' to value '427804'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'HelpFwlinkId' to value '427805'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'IE10FwlinkId' to value '427807'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'WinBlueFwlinkId' to value '427810'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'SHA256BlockFwlinkId' to value '427811'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'Win81PreRelBlockFwlinkId' to value '427809'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'NetfxProductVersion' to value '4.5.31101'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'ProfessionalVSVersion' to value '11.0.50727'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'BaselineBundleVersion' to value '12.0.21005'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'FirstSlipstreamBundleVersion' to value '12.0.21006'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'ProductKey' to value 'VVXKCDCCWD3B29PWQK2C3GYD7'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'PerfToolsRES_LangRelevant_chs' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'PerfToolsRES_LangRelevant_cht' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'PerfToolsRES_LangRelevant_csy' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'PerfToolsRES_LangRelevant_deu' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'PerfToolsRES_LangRelevant_esn' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'PerfToolsRES_LangRelevant_fra' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'PerfToolsRES_LangRelevant_ita' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'PerfToolsRES_LangRelevant_jpn' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'PerfToolsRES_LangRelevant_kor' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'PerfToolsRES_LangRelevant_plk' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'PerfToolsRES_LangRelevant_ptb' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'PerfToolsRES_LangRelevant_rus' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'PerfToolsRES_LangRelevant_trk' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'Win8Dev_Dev11Path' to value '[ProgramFilesFolder]Microsoft Visual Studio 11.0\'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'Dev11_UT_Path' to value '[ProgramFilesFolder]Microsoft Visual Studio 11.0\'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'WinSDK_Common_KitsRootPath' to value '[ProgramFilesFolder]Windows Kits\8.0\'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'Dev11_VC_Path' to value '[ProgramFilesFolder]Microsoft Visual Studio 11.0\'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'IsChainingx64VSTODT' to value '1'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'IsChainingx86VSTODT' to value '1'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'IsChainingx64VSTORT' to value '1'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing numeric variable 'IsChainingx86VSTORT' to value '1'
    [2520:2C8C][2014-11-16T20:02:23]i000: Initializing string variable 'Include_WindowsPhoneAppxEmulator' to value 'true'
    [2520:2C8C][2014-11-16T20:02:23]i000: Setting string variable 'WixBundleLog' to value 'C:\Users\PHIL~1.JOH\AppData\Local\Temp\dd_vsupdate_KB2829760_20141116200223.log'
    [2520:2C8C][2014-11-16T20:02:23]i000: Setting string variable 'WixBundleOriginalSource' to value 'C:\Users\phil.johnson\Downloads\VS2013.4.exe'
    [2520:2C8C][2014-11-16T20:02:23]i000: Setting string variable 'WixBundleOriginalSourceFolder' to value 'C:\Users\phil.johnson\Downloads\'
    [2520:2C8C][2014-11-16T20:02:23]i000: Setting string variable 'WixBundleName' to value 'Visual Studio 2013 Update 4 (KB2829760)'
    [2520:2C8C][2014-11-16T20:02:23]i000: Loading managed bootstrapper application.
    [2520:2C8C][2014-11-16T20:02:23]e000: Error 0x80070002: Failed to create the managed bootstrapper application.
    [2520:2C8C][2014-11-16T20:02:23]e000: Error 0x80070002: Failed to create UX.
    [2520:2C8C][2014-11-16T20:02:23]e000: Error 0x80070002: Failed to load UX.
    [2520:2C8C][2014-11-16T20:02:23]e000: Error 0x80070002: Failed while running 
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: BaselineBundleVersion = 12.0.21005
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: Dev11_UT_Path = C:\Program Files (x86)\Microsoft Visual Studio 11.0\
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: Dev11_VC_Path = C:\Program Files (x86)\Microsoft Visual Studio 11.0\
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: EditionDisplayName = #loc.vsupdatededitiondisplayname
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: FactorMsi = 1.3
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: FirstSlipstreamBundleVersion = 12.0.21006
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: HelpFwlinkId = 427805
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: IE10FwlinkId = 427807
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: Include_WindowsPhoneAppxEmulator = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: IsChainingx64VSTODT = 1
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: IsChainingx64VSTORT = 1
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: IsChainingx86VSTODT = 1
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: IsChainingx86VSTORT = 1
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: MinOsLevelFwlinkId = 427813
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: MoreLanguageFwlinkId = 427825
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: NetfxProductVersion = 4.5.31101
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PerfToolsRES_LangRelevant_chs = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PerfToolsRES_LangRelevant_cht = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PerfToolsRES_LangRelevant_csy = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PerfToolsRES_LangRelevant_deu = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PerfToolsRES_LangRelevant_esn = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PerfToolsRES_LangRelevant_fra = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PerfToolsRES_LangRelevant_ita = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PerfToolsRES_LangRelevant_jpn = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PerfToolsRES_LangRelevant_kor = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PerfToolsRES_LangRelevant_plk = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PerfToolsRES_LangRelevant_ptb = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PerfToolsRES_LangRelevant_rus = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PerfToolsRES_LangRelevant_trk = true
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PrivacyAgreementFwlinkId = 427803
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: PrivacyStatementFwlinkId = 427803
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: ProductKey = VVXKCDCCWD3B29PWQK2C3GYD7
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: ProfessionalVSVersion = 11.0.50727
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: ProgramFilesFolder = C:\Program Files (x86)\
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: SHA256BlockFwlinkId = 427811
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: SolutionFwlinkId = 427804
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: Win81PreRelBlockFwlinkId = 427809
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: Win8Dev_Dev11Path = C:\Program Files (x86)\Microsoft Visual Studio 11.0\
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: WinBlueFwlinkId = 427810
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: WinSDK_Common_KitsRootPath = C:\Program Files (x86)\Windows Kits\8.0\
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: WixBundleAction = 5
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: WixBundleElevated = 0
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: WixBundleLog = C:\Users\PHIL~1.JOH\AppData\Local\Temp\dd_vsupdate_KB2829760_20141116200223.log
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: WixBundleManufacturer = Microsoft Corporation
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: WixBundleName = Visual Studio 2013 Update 4 (KB2829760)
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: WixBundleOriginalSource = C:\Users\phil.johnson\Downloads\VS2013.4.exe
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: WixBundleOriginalSourceFolder = C:\Users\phil.johnson\Downloads\
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: WixBundleProviderKey = vsupdate_KB2829760
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: WixBundleTag = vsupdate_KB2829760,1033
    [2520:2C8C][2014-11-16T20:02:23]i410: Variable: WixBundleVersion = 12.0.31101.0
    [2520:2C8C][2014-11-16T20:02:23]e000: Error 0x80070002: Failed to run per-user mode.
    [2520:2C8C][2014-11-16T20:02:24]i007: Exit code: 0x80070002, restarting: No
    Phil Johnson

  • Visual studio 2013 update 2 windows 8 windows phone 8 app

    hi
    i am using
    Windows 8.1 Enterprise 64 bit os
    Visual studio 2013 Update 2
    I want know how to create Windows 8 app and Windows phone 8 app how to create , its showing only 8.1 templates
    please Help Me someone

    Hello,
    Welcome to MSDN forum.
    I am afraid that the issue is out of support range of VS General Question forum which mainly discusses
    the usage of Visual Studio IDE such as WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    As far as I know, in order to develop windows phone 8 app, you need to install Windows Phone 8.0 SDK. If no help, I suggest you conuslt your issue on windows phone development forum for better support like this thread:
    http://social.msdn.microsoft.com/Forums/en-US/96f5d84c-d6af-4de9-bfb6-d86b516ab9af/how-to-target-wp-80-from-visual-studio-2013-with-update-2-rc?forum=wpdevelop
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Which Visual C++ redistributable package needed for Visual Studio 2013 Update 3 and 4?

    Which redistributable package should be installed at the client side for binaries built with either Visual C++ 2013 Update 3 or 4? 
    From the Download Center, "Visual C++ Redistributable Packages for Visual Studio 2013",
    http://www.microsoft.com/en-us/download/details.aspx?id=40784 I downloaded "vcredist_x86.exe" and "vcredist_x64.exe", which have version number 12.0.21005.1
    My system, which has installed VS2013 Update 3, also has "vcredist_x86.exe" and "vcredist_x64.exe", at "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\redist\1033", but these having a higher version number: 12.0.30501.0
    A colleague of mine has installed  VS2013 Update 4, but has the same redistributable files as my VS2013 Update 3 installation: version 12.0.30501.0.
    Is it correct to conclude that
    the VS2013 redistributables at Microsoft's Download Center (12.0.21005.1) are outdated?
    VS2013 Update 3 and Update 4 based applications may share the very same redistributable package (12.0.30501.0)?

    @Niels,
    Maybe we cannot say it is not uploaded. We can see the package is named as
    Visual C++ Redistributable Packages for Visual Studio 2013 Update 4
    So the package may only specific for one version and does not mean it should have Visual C++ Redistributable Packages
    for Visual Studio 2013 Update 2
    If you want to report anything you can consider use Connect:
    https://connect.microsoft.com/
    However I don't think we need to report this case on Connect.
    For your last question, since the version 30501 seems to be the update version of 21005, I think you will not have them together. Anyway, for this particular VC++ runtime, I would recommend you keep it update to date.
    https://support.microsoft.com/kb/2019667?wa=wsignin1.0
    Then you may get the latest features. And if you have any specific reason that you need a specific version, I think we can handle it case by case. For example, if you want to deploy you C++ application and you need a runtime version.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Have mutiple registry key error while installing visual studio 2013 update 4

    please find the log below after the installation visual studio 2013 
    2588:1F14][2015-03-11T09:24:55]i000: MUX:  SetupAction: Install
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  ProductVersion: 12.0.31101.00.00
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  ProductLanguage: 1033
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Branch: Rel
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  OS: Windows 7 Enterprise
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  OSVersion: 6.1.7601.65536
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  OSLanguage: 1033
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  OSArchitecture: AMD64
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Ux Initialized
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Aquiring mutex 'Global\Devdiv' with a timeout of 0 ms
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Mutex 'Global\Devdiv' ownership: True
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Seen existing cache mutex 'Global\Devdiv CacheMutex': False
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Aquiring mutex 'Global\Devdiv CacheMutex' with a timeout of 60000 ms
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Mutex 'Global\Devdiv CacheMutex' ownership: True
    [2588:1C24][2015-03-11T09:24:55]i100: Detect begin, 246 packages
    [2588:1F14][2015-03-11T09:24:55]i000: MUX:  Wait for Detect to complete
    [2588:1C24][2015-03-11T09:24:55]i000: MUX:  Detection Phase
    [2588:1C24][2015-03-11T09:24:55]i000: MUX:  ---------------
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VisualStudio12'; variable = 'AspNetWebFxTools_VS2013_Version'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VWDExpress12'; variable = 'AspNetWebFxTools_VWD2013_Version'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'blend_core_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Classes\Installer\Dependencies\Microsoft.VS.Bliss_Core,v12'; variable = 'bliss_core_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'bliss_core_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\12.0\CompilerCore'; variable = 'compilerCore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerCore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\12.0\CompilerCore86'; variable = 'compilerCore86_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerCore86_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\CompilerCore86'; variable = 'compilerCore86D11_Inst'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerCore86D11_Inst' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\CompilerCore86'; variable = 'compilerCore86D11_Ver'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\CompilerCore'; variable = 'compilerCoreD11_Inst'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerCoreD11_Inst' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\CompilerCore'; variable = 'compilerCoreD11_Ver'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\CompilerCoreWP80'; variable = 'compilerCoreWP80_Inst'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerCoreWP80_Inst' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\CompilerCoreWP80'; variable = 'compilerCoreWP80_Ver'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\12.0\CompilerX64Arm'; variable = 'compilerx64arm_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerx64arm_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\12.0\CompilerX64Nat'; variable = 'compilerx64nat_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerx64nat_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\12.0\CompilerX64X86'; variable = 'compilerx64x86_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'compilerx64x86_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry value not found. Key = 'SOFTWARE\Microsoft\VisualStudio\SxS\VS7', Value = '11.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'Dev11_VC_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'Dev11_VC_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\devenv'; variable = 'devenv_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'devenv_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'DevEnvAppIdKeyPath' to value ''
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Policies\Microsoft\SystemCertificates\AuthRoot'; variable = 'DisableRootAutoUpdate'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft Corporation\DataFxTools\12.0.0.0'; variable = 'EFTools_2013_VersionKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'Ews_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\professional'; variable = 'FLP_Version'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'help3vs_49_DetectKey' to value '2.1.21005'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'help3vs_49_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'IEsvcVersionExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'IEsvcVersion' to value '10.0.9200.17229'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\LibraryCore86'; variable = 'libraryCore86D11_Inst'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'libraryCore86D11_Inst' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\LibraryCore86'; variable = 'libraryCore86D11_Ver'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\LibraryCore'; variable = 'libraryCoreD11_Inst'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'libraryCoreD11_Inst' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vc\Servicing\11.0\LibraryCore'; variable = 'libraryCoreD11_Ver'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\lightswitch'; variable = 'lightswitchcore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'lightswitchcore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\lightswitch\1033'; variable = 'lightswitchcoreres_DetectKeyExists_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'lightswitchcoreres_DetectKeyExists_enu' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2010AuthRootExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\SystemCertificates\ROOT\Certificates\3B1EFD3A66EA28B16697394703A72CA340A05BD5'; variable = 'MicrosoftRootCertificateAuthority2010RootExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2010RootExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2011AuthRootExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\SystemCertificates\ROOT\Certificates\8F43288AD272F3103B6FB1428485EA3014C0BCFE'; variable = 'MicrosoftRootCertificateAuthority2011RootExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2011RootExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry value not found. Key = 'SOFTWARE\Microsoft\NET Framework Setup\NDP\v4\Full', Value = 'CBS'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'netfxfullredist_43_DetectKey' to value '4.5.50938'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'NetFxFullRedist_InstalledRelease' to value '378758'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'NetFxFullRedist_InstalledReleaseExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'NetFxInstallRoot' to value 'C:\Windows\Microsoft.NET\Framework\'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'NetFxInstallRoot64' to value 'C:\Windows\Microsoft.NET\Framework64\'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'OpenXmlSDK_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'OS_BuildNumber' to value '7601'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\MobileTools\Servicing\11.0\WPSDKCore'; variable = 'Phone80Sdk_detectkey'
    [2588:1C24][2015-03-11T09:24:55]i000: No products found for UpgradeCode: {2BB587DC-B13D-48C2-A4E0-6523821BCE7D}
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: (null)
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'PortableLibrary_DTP_Exists' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\premium'; variable = 'premiumcore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'premiumcore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\professional'; variable = 'professionalcore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'professionalcore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'Ria_Services_Dev12_DetectKey' to value '4.1.62812.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'Ria_Services_Dev12_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'silverlight5_DRT_DetectKey' to value '5.1.30514.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'silverlight5_SDK_DetectKey' to value '5.0.61118.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'silverlight5_SDK_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'SP15_Client_DetectKey' to value '15.0.4569.1506'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\sptools\Servicing\12.0\setup'; variable = 'SPTools_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'SPTools_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\sptools\Servicing\12.0\setup\1033'; variable = 'SPToolsLOC_DetectKeyExists_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'SPToolsLOC_DetectKeyExists_enu' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'ssceruntime_x64_msi_DetectKey' to value '4.0.8876.1'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'ssceruntime_x64_msi_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'ssceruntime_x86_msi_DetectKey' to value '4.0.8876.1'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'ssceruntime_x86_msi_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'ssdt_lang_detect_enu' to value '1033'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\tfs\Servicing\12.0\storyboardingcore'; variable = 'storyboardingcore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'storyboardingcore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\tfs\Servicing\12.0\storyboardingcore'; variable = 'storyboardingcore_x64_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'storyboardingcore_x64_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'SystemDataVersion' to value '2.0.50727.5483'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'SystemData64Version' to value '2.0.50727.5483'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'SystemWebVersion' to value '2.0.50727.5477'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'SystemWeb64Version' to value '2.0.50727.5477'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\teamExplorerCore'; variable = 'teamExplorercore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'teamExplorercore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt12_84_DetectKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt12_84_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trinodt12_84_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt12_core_DetectKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt12_core_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trinodt12_core_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15_1033'; variable = 'trinodt12lp_85_DetectKey_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15_1033'; variable = 'trinodt12lp_85_DetectKeyExists_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trinodt12lp_85_DetectKeyExists_enu' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt14_83_DetectKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt14_83_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trinodt14_83_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt14_core_DetectKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15'; variable = 'trinodt14_core_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trinodt14_core_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15_1033'; variable = 'trinodt14lp_86_DetectKey_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VSTO Designtime Setup\VS12\O15_1033'; variable = 'trinodt14lp_86_DetectKeyExists_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trinodt14lp_86_DetectKeyExists_enu' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'trintrir_71_DetectKey' to value '10.0.50903'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trintrir_71_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'trintrir_72_DetectKey' to value '10.0.50903'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'trintrir_72_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\ultimate'; variable = 'ultimatecore_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'ultimatecore_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: No products found for UpgradeCode: {A910AA6F-893F-3B76-AB22-B285913B5CE1}
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: (null)
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'UltimateCore_Version' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\VC\Servicing\11.0\RuntimeDebug'; variable = 'vcRuntimeDebugD11_Inst'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'vcRuntimeDebugD11_Inst' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\VC\Servicing\11.0\RuntimeDebug'; variable = 'vcRuntimeDebugD11_Ver'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry value not found. Key = 'SOFTWARE\Microsoft\VisualStudio\SxS\VS7', Value = '12.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'VS_Install_Path_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'VS_Install_Path_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Registry value not found. Key = 'SOFTWARE\Microsoft\VisualStudio\SxS\VS7', Value = '12.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'VS_Install_Path_VC_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'VS_Install_Path_VC_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'VSComponentPathVariable' to value ''
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Updates\Microsoft Visual Studio 2013\vsupdate_kb2829760'; variable = 'vsupdate_DetectKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Updates\Microsoft Visual Studio 2013\vsupdate_kb2829760'; variable = 'vsupdate_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'vsupdate_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'VSWinExpressAppIdKeyPath' to value ''
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'webdeploy_x64_en_usmsi_902_DetectKey' to value '9.0.1763.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'webdeploy_x86_en_usmsi_901_DetectKey' to value '9.0.1763.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio 12'; variable = 'WebTools_VS2013_VersionKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio 2013'; variable = 'WebTools_VS2013_VersionKey_2'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio Express 12 for Web'; variable = 'WebTools_VWD2013_VersionKey'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio Express 2013 for Web'; variable = 'WebTools_VWD2013_VersionKey_2'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'WIF_DetectKey' to value 'C:\Program Files\Windows Identity Foundation\v3.5\'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'WIF_DetectKey_64' to value 'C:\Program Files\Windows Identity Foundation\v3.5\'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WIF_DetectKeyExists' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WIF_DetectKeyExists_64' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Microsoft Identity Extensions\Setup\1.0'; variable = 'WIFEXT_DetectKeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WIFEXT_DetectKeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WIFEXT_DetectKeyExists_64' to value 1
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\VisualStudio\11.0\Setup\VS'; variable = 'Win8Dev_Dev11Path_KeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'Win8Dev_Dev11Path_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'Win8Dev_Dev11Path_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\Win8\Servicing\12.0\DevTools'; variable = 'Win8DevTools_detectkey'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {1D2CEC61-C3F0-C27E-7280-F9D6B10378BE}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_AppCertKitx64' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {F395FD4F-40E5-7B56-2BCB-B3CF52B3B52C}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_AppCertKitx64x86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {550760A2-DC4A-CD2B-3C1B-01E0F9F1279E}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_AppCertKitx86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {76FF502F-6811-F75B-2FEB-0B69BB584031}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_AppCertKitx86x86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Windows Kits\Installed Roots'; variable = 'WinBlue_Common_KitsRoot_KeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WinBlue_Common_KitsRoot_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'WinBlue_Common_KitsRoot_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Windows Kits\Installed Roots'; variable = 'WinBlue_Desktop_KitsRoot_KeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WinBlue_Desktop_KitsRoot_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'WinBlue_Desktop_KitsRoot_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Windows Kits\Installed Roots'; variable = 'WinBlue_Intellisense_KitsRoot_KeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WinBlue_Intellisense_KitsRoot_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'WinBlue_Intellisense_KitsRoot_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {984022F2-9BCA-A41D-6A38-1AE658F01415}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_SDK_x86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {5247E16E-BCF8-95AB-1653-B3F8FBF8B3F1}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_SDKDXRem_x64' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {A1CB8286-CFB3-A985-D799-721A0F2A27F3}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_SDKDXRem_x86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {37464E70-B0B9-9DFF-649A-CBE169BAD657}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_SDKStore_x86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {96F4525A-470D-F15C-796E-58D9988C3E5F}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_SDKStoreDXRem_x64' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: {56AD3004-0B49-967F-F682-B05650B61A78}
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'WinBlue_SDKStoreDXRem_x86' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'Software\Microsoft\Windows Kits\Installed Roots'; variable = 'Windows_EspCD11_LP_detectKey_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting string variable 'WindowsBuildNumber' to value '7601'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\winexpress\Servicing\12.0\coremsi\1033'; variable = 'WinExpress12_detectkey_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Windows Kits\Installed Roots'; variable = 'WinSDK_Desktop_KitsRoot_KeyExists'
    [2588:1C24][2015-03-11T09:24:55]i000: Setting numeric variable 'WinSDK_Desktop_KitsRoot_KeyExists' to value 0
    [2588:1C24][2015-03-11T09:24:55]i052: Condition 'WinSDK_Desktop_KitsRoot_KeyExists' evaluates to false.
    [2588:1C24][2015-03-11T09:24:55]i000: No products found for UpgradeCode: {D82433A9-1D86-3695-B4C5-25E8B1794AE2}
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: (null)
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'BuildTools_CoreRes_Installed' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: No products found for UpgradeCode: {7A02D697-899C-3AB4-8A85-421BE7CBFD9E}
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: (null)
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'BuildTools_Core_Installed' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\MobileTools\Servicing\11.0\WPSDKCore\1033'; variable = 'WpSdk_detectkey_enu'
    [2588:1C24][2015-03-11T09:24:55]i000: No products found for UpgradeCode: {D3FFD34D-B716-4496-BFF0-0C34E536DC64}
    [2588:1C24][2015-03-11T09:24:55]i000: Product not found: (null)
    [2588:1C24][2015-03-11T09:24:55]i000: Setting version variable 'PythonTools_Installed' to value '0.0.0.0'
    [2588:1C24][2015-03-11T09:24:55]i106: Calculating patch applicability for target product code: {CFEF48A8-BFB8-3EAC-8BA5-DE4F8AA267CE}, context: Machine
    [2588:1C24][2015-03-11T09:24:55]i106: Calculating patch applicability for target product code: {0398BFBC-991B-3275-9463-D2BF91B3C80B}, context: Machine
    [2588:1C24][2015-03-11T09:24:56]i106: Calculating patch applicability for target product code: {7BF61FA9-BDFB-4563-98AD-FCB0DA28CCC7}, context: Machine
    [2588:1C24][2015-03-11T09:24:56]i052: Condition '(CurrentOperation = "Repair") OR (CurrentOperation = "Uninstall")' evaluates to false.
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vs_preclean_vs to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i052: Condition '(NOT(RelationType = "Patch") AND NOT (CurrentOperation = "Install"))' evaluates to false.
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: Preparation_Uninstall_vs_premium to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeMinimum_x64 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: VCRedistD11x86 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: VCRedistD11x64 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeAdditional_x86 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeAdditional_x64 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeDebug_x86 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeDebug_x64 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeDebugD11_x86 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: vcRuntimeDebugD11_x64 to package detect list
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Reset Result
    [2588:1C24][2015-03-11T09:24:56]i052: Condition '(((SystemDataVersion >= v2.0.50727.5459) AND (SystemDataVersion < v2.0.50727.5650)) OR (SystemDataVersion >= v2.0.50727.5721)) AND (((SystemWebVersion >= v2.0.50727.5459) AND (SystemWebVersion <
    v2.0.50727.5650)) OR (SystemWebVersion >= v2.0.50727.5721))' evaluates to true.
    [2588:1C24][2015-03-11T09:24:56]i000: MUX:  Adding package: windows61_kb2664825_x86msu to package detect list

    Hello Pavanredd,
    From current logs you pasted, your error may due to the following:
    1. The installation package is corrupt. Ensure you are trying to download the ISO from official site and try verify checksum before use it.
    2. You do not have the right to install this product, ensure you are admin when installing and AV software disabled.
    3. Your OS has registry error, this may due to corrupt OS and you need to repair or reinstall.
    To resolve the above things, please do the following:
    1. Downlad the ISO and verify the ISO checksum first, you can find download link from official site and here is the article for you to verify your ISO
    https://www.visualstudio.com/en-us/downloads/visual-studio-2013-iso-sha1-vs
    In this way you will be able to use a good ISO to install, it will fix corruptpackage problem.
    2. Check your privilege and run the setup as admin
    3. It is hard to say whether it is a OS issue. Maybe more logs are required, please use 
    http://aka.ms/vscollect 
    to gather the installation logs. After using it, you will find vslogs.cab from %temp% folder. Please upload the file to
    https://skydrive.live.com/ 
    and share the link here.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can,t install visual studio 2013 update 4

    i was trying to install vs 2013 update 4 but there is an error and setup failed.  i'd tried several times to install it still facing same error. it says" //visual studio core features fatal error during installation .// microsoft visual c++
    2013 microsoft foundation class libraries  user cancelled installation//". my os is win 8.1 industry pr
    i downloaded it from dreamspark recently.
    helps are appreciated...

    Hello kbk gen,
    Most of the cases related to the info "visual studio core features fatal error during installation" are caused by corrupt package. Can you consult dreamspark support to know whether you can verify your source(VS installer)? Dreadmspark
    seems use some different ways to provide you the source file, so I'm not sure common ISO verify step works for you.
    Anyway, actually you can try the VS2013 Community Edition and you can verify the ISO of it by refer to here:
    https://www.visualstudio.com/en-us/downloads/visual-studio-2013-iso-sha1-vs
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • I can't install multi language pack - english for visual studio 2013 update 3

    Error : Microsoft portable library multi-targeting  language pack - enu element not fount
    Error : Microsoft visual studio 2013 performance collection tools - ENU package failed.
    I have downloaded visual studio 2013 in some other language. I wanted to change it to English so I downloaded multi language pack- English and installed. I came up with the above error. Please help me. Thanks in advance. 

    I don't know of a reason you posted your question in a Visual Basic forum. You should probably find a Visual Studio forum to post your question in.
    However I've never tried to do what you want to do. But maybe these links can assist you.
    Microsoft Language Interface Packs (LIPs) and Visual Studio
    "When you install different language versions of Visual Studio on the same computer, you can only switch languages between matching editions. For example, if you have an English Express Edition installed, a German Express Edition installed, and a Professional
    Edition installed, you can only switch languages for the Express Editions, not for the Professional Edition.
    Starting with Visual Studio 2012, the Professional, Premium, and Ultimate products use a unified language pack. To install more than one language version of these products, you must install a full language product first and then install one or more language
    packs." |||||||||| "NOTE: The Professional, Premium, and Ultimate products starting in Visual Studio 2012 don't support installing multiple language versions of the full language product on the same computer. After you install one
    full language product, you must add language versions by using language packs. You can still install multiple full language products of the Express editions on the same computer."
    Visual Studio 2013 - Microsoft Language Interface Packs (LIPs) and Visual Studio
    Frequently Asked Questions - Windows Language Interface Pack (LIP)
    La vida loca

  • Design view is unavailable for x64 and ARM target platforms. - Visual Studio 2013 Update 3

    Hello. I am having this problem at design view when i set project to x64. However problem disappear when i set to any cpu which makes it 32 bit.
    Design view is unavailable for x64 and ARM target platforms.
    Here my full XAML code
    <Window x:Class="doktora_tez_projesi_crawler_program.MainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:doktora_tez_projesi_crawler_program"
    Title="Doktora Tez Crawler" Height="874.099" Width="1092.99">
    <Grid>
    <Grid.ColumnDefinitions>
    <ColumnDefinition Width="827*"/>
    <ColumnDefinition Width="258*"/>
    </Grid.ColumnDefinitions>
    <Button Content="Init Root Crawlin - This Deletes All Data" HorizontalAlignment="Left" Margin="10,10,0,0" VerticalAlignment="Top" Width="279" Click="click_start_Crawling" />
    <ListBox Name="lstBoxEvents" HorizontalAlignment="Left" ItemsSource="{x:Static local:PublicStaticFunctions.ocEventsCollection }" Height="138" Margin="10,155,0,0" VerticalAlignment="Top" Width="1065" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxMoreCommonFiredEvents" HorizontalAlignment="Left" ItemsSource="{x:Static local:PublicStaticFunctions.ocEventsCollectionMoreCommonFiredEvents}" Height="265" Margin="10,298,0,0" VerticalAlignment="Top" Width="1065" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxLinkCountFireEvents" HorizontalAlignment="Left" ItemsSource="{x:Static local:PublicStaticFunctions.ocEventsCollectionLinkCountEvents}" Height="265" Margin="10,568,0,0" VerticalAlignment="Top" Width="1065" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxGlobalStatistics" ItemsSource="{x:Static local:GlobalStats.myObserveGlobalStatics}" HorizontalAlignment="Left" Height="114" Margin="10,36,0,0" VerticalAlignment="Top" Width="426">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxGlobalStatistics_2" ItemsSource="{x:Static local:GlobalStats.myObserveGlobalStatics_2}" HorizontalAlignment="Left" Height="114" Margin="441,36,0,0" VerticalAlignment="Top" Width="634" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <Label DataContext="{x:Static local:PublicStaticFunctions.ocEventsCollection }" Content="{Binding Path=[1]}" HorizontalAlignment="Left" Margin="324,10,0,0" VerticalAlignment="Top"/>
    </Grid>
    </Window>
    Browser based Pokemon Style MMORPG Game Developer Used asp.net 4.0 routing at it's
    Monsters

    Hi MonsterMMORPG,
    I made a mistake in my previous reply. What I suggested is that you created a new and simple WPF app, set the platform to
    x64 rather than x86, and then build the app to check the result.
    If a new WPF app also has this issue, then I doubt whether this issue is related to your VS.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.
    no it doesn't happen
    it is triggered by one of these bindings in the xaml
    <ListBox Name="lstBoxEvents" HorizontalAlignment="Left" ItemsSource="{x:Static local:PublicStaticFunctions.ocEventsCollection }" Height="138" Margin="10,155,0,0" VerticalAlignment="Top" Width="1065" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxMoreCommonFiredEvents" HorizontalAlignment="Left" ItemsSource="{x:Static local:PublicStaticFunctions.ocEventsCollectionMoreCommonFiredEvents}" Height="265" Margin="10,298,0,0" VerticalAlignment="Top" Width="1065" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxLinkCountFireEvents" HorizontalAlignment="Left" ItemsSource="{x:Static local:PublicStaticFunctions.ocEventsCollectionLinkCountEvents}" Height="265" Margin="10,568,0,0" VerticalAlignment="Top" Width="1065" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxGlobalStatistics" ItemsSource="{x:Static local:GlobalStats.myObserveGlobalStatics}" HorizontalAlignment="Left" Height="114" Margin="10,36,0,0" VerticalAlignment="Top" Width="426">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    <ListBox Name="lstBoxGlobalStatistics_2" ItemsSource="{x:Static local:GlobalStats.myObserveGlobalStatics_2}" HorizontalAlignment="Left" Height="114" Margin="441,36,0,0" VerticalAlignment="Top" Width="634" Grid.ColumnSpan="2">
    <ListBox.ItemsPanel>
    <ItemsPanelTemplate>
    <StackPanel />
    </ItemsPanelTemplate>
    </ListBox.ItemsPanel>
    </ListBox>
    Browser based Pokemon Style MMORPG Game Developer Used asp.net 4.0 routing at it's
    Monsters

  • Visual Studio 2013 Setup and Installation gets stuck at system restore point. what are the issues?, help me out!!!

    Visual Studio 2013 Setup and Installation gets stuck at system restore point. what are the issues?, help me out ASAP

    Hello nitinrathod29,
    There are some possible fixes for this issue.
    Please check the following thread:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/47bc6990-00f2-4d85-b3f8-9de03c637f43/visual-studio-2013-update-2rc-stucks-on-creating-system-restore?forum=vssetup
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/81478f51-37bb-4dbb-bd0c-beade1fd50ab/visual-studio-2012-professional-installation-getting-stuck-creating-a-system-restore-point?forum=vssetup
    So here are them:
    1. Check if you have any software which may prevent the installer from running. For example, Windows Defender or any other software which may restrict your permissions.
    2. Just start the computer.
    3. Run the setup as admin.
    4. Check your UAC permissions.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Visual Studio 2013 hangs/freezes when trying to click the designer view

    my Visual Studio 2013 update 1 hangs/freezes when trying to click the designer view, after clicking "Design" I can not click "split" neather "Source". What can I do ? I already tried to set the "HTML (Web Forms) Editor
    " as "Default"... thanks for support.
    In VS2010 the same worked fine.
    I "Run as Administrator".
    ty for help

    Hi,
    I assume that you are not using VS2013 Express version. In order to get the reason about the hang issue, please use devenv /log to gather activity.xm log and find HR error from this log.If it shows some package corrupt, try to repair your VS.
    Here are my general suggestions:
    Please try to run devenv /ResetSettings (in command prompt) to eliminate the related potential settings problem.
    Try disabling Add-ins (e.g. “Tools” | “Add-in Manager”) or run “devenv.exe /SafeMode”.This can eliminate the possibility that third party Add-ins or packages are causing problems. Also you can try these command lines:
    devenv.exe /resetskippkgs and devenv.exe /resetuserdata 
    Try to create a new user account. This can help isolate user profile corruption related causes.
    If the suggestions above are no help, please reinstall your VS.
    Thanks,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unable to add controller to MVC project on Visual studio 2013

    I am trying to add a empty MVC5 controller to the MVC project. I am getting an error as soon as I try and create the controller.
    The system is running on Windows 7 with Visual studio 2013 update 4. I have uninstalled and re installed visual
    studio with no success.
    

    Hi Mahesh.Janardhanan,
    If this issue is related to web app, you could ask this question in the ASP.NET forum:
    http://forums.asp.net. If then, you could get an answer more quickly and professional. Thanks for
    your cooperation.
    Best Regards,
    Jack
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unit Testing with Microsoft Sharepoint Emulators and Fakes with Visual Studio 2013

    Hi All,
    I have created Test Project and now creating Test cases for Sharepoint. I found a link on MSDN which suggests using Fakes framework but it supports VS2012 and I am using Visual Studio 2013.
    So how can I use it with VS2013 or is there any other way with which I can implement the Test cases with VS2013.
    Please suggest.
    Thanks in advance.
    Himanshu Nigam

    Hi HimanshuNigam,
    According to your descrition, my understanding is that you want to use Fakes framework to create test case for SharePoint project in Visual Studio 2013.
    If you want to test using Fakes Framework, you can use the codeplex extension to achieve it. It supports Visual Studio 2013.
    Here is a detailed article for your reference:
    Better Unit Testing with Microsoft Fakes
    About how to include the Nuget package, you can use the package with the link below:
    NuGet Package Manager for Visual Studio 2013
    Installing NuGet
    If you still have question about this issue, I suggest you can create a post in Visual Studio, more experts will help you and you can get more detailed information from there:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?category=visualstudio%2Cvsarch%2Cvsdbg%2Cvstest%2Cvstfs%2Cvsdata%2Cvsappdev%2Cvisualbasic%2Cvisualcsharp%2Cvisualc
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • Visual Studio 2013 Profession vs. Visual Studio 2013 Express

    One of my colleagues tried to open a .sln file created with Visual Studio 2013 Professional Edition using Visual Studio 2013 Express Desktop. He got messages about project files being incompatible.  Is it not possible to do this?

    Hello liorb,
    It seems your issue is related to C++ 2015 so I moved it here. If your VS2015 and VS2013 are both on the same machine I recommend you follow pvdg42's advice to report this issue to connect and share the link back to here. Maybe it is a problem with
    this beta version.
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Can't update SQL 2014 DB during web publish from Visual Studio 2013

    According to Visual Studio 2013 I have "SQL Server Data Tool 12.0.40706.0" installed, which should allow me to update a SQL 2014 database but when I try to publish my web application I get the error: "Web deployment task failed. (Could not
    generatedeployment script. Internal Error. The database platform service with type Microsoft.Data.Tools.Schema.Sql.Sql120DatabaseSchemaProvider is not valid. You must make sure the service is loaded, or you must provide the full type name of a valid database
    platform service. Internal Error. The database platform service with type Microsoft.Data.Tools.Schema.Sql.Sql120DatabaseSchemaProvider is not valid. You must make sure the service isloaded, or you must provide the full type name of a valid database platform
    service. Learn more at:
    http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_EXECUTING_METHOD.)" I can update the database fine if I go into the package managment console and run -UPDATE-DATABASE but I don't want to have to go into myweb.config, update it to point to the production
    database, run the update command, and then change my web.config back everytime I try to update my database. What do I have to do to getthis working? I had no problems when I was on an Azure DB.

    Actually problem seems to be related when web publish to remote server. I tried local web publish to sql2014 db and it works.
    For remote server web publish works to sql 2012 express db but when try with sql 2014 express db on same server get bellow error.
    Error message "The database platform service with type Microsoft.Data.Tools.Schema.Sql.Sql120DatabaseSchemaProvider
    is not valid. You must make sure the service is loaded, or you must provide the full type name of a valid database platform service."
    Any ideea what may be causing it? I have installed the sql server 2014 express with advanced services x86, exact same version as on my local machine, and also restarted server after install. Need install/configure anything else on server like SSDT 2014 to
    make this work? 
    Cheers!

Maybe you are looking for

  • How do I get all my songs on my ipod to my computer's itunes?

    I have a new laptop and want to download all my songs from my ipod to my new pc's itunes?  It seems the only sync is itunes to ipod and that will wipe out my songs on my ipod.

  • Pricing proceedure

    hi, regarding import pricing proceedure, i have removed the account key in pricing proceedure. but still system is posting the Cusoms and freight clearing account. where will be the assignment? can any one guide me on this. govind. - account key effe

  • How do I reduce the size of a picture that I dragged into a document

    How do I change the size of a photo that I dragged from pictures into a document?  It's huge.

  • Photo sizes when using Medium Book

    Hello all, I am trying to create the 8x6 book. I have jpegs that we have created in Photoshop, that are 300 DPI and are 8x6 in size. They are also set to RGB. For some reason when we start with an 8x6 book and try to place the jpeg into the book it s

  • Bookmarks are not syncing

    Just install ios5, and bookmarks are not syncing