Visual Studio Express 2012 & 2013 terms of use

Is it allowed to use freely Visual Studio Express 2012 & 2013 in a company with one thousand workers and more?

Hello Eensalu1991,
Yes it is allowed for you to do that use Express version, please download MS Visual Studio White paper:
http://www.microsoft.com/en-hk/download/confirmation.aspx?id=13350
You will find the following:
Visual Studio Express 2013 Products
A number of free development tools are also available, including Visual Studio Express 2013 for Windows , Visual Studio Express 2013 for Web and Visual Studio Express 2013 for Windows Desktop. 
These tools provide a subset of the functionality available in Visual Studio Professional 2012 and are specific to writing applications targeting these platforms. Each of these Visual Studio Express 2012 products is licensed per user and subject to the
use terms included with the product.  Visual Studio Express can be used to build production applications.
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.

Similar Messages

  • Visual Studio Express Community 2013 with Update 4

    I'm in college, and the class I am in is programming, so in order to do my work, I need C++ (which our required work is through Visual Studio Express). Unfortunately, after every single time I try to download Visual Studio Express: Community 2013
    with Update 4, it gives me these error messages: "SETUP FAILED! Install cannot continue because some required components failed.", "Visual Studio Core Features: Fatal error during installation", and "Visual Studio Core Features - ENU:
    User cancelled installation". Obviously the last two errors popped up, because of the first error message, but why would it say that some components failed? What exactly does that mean? If someone can please respond quickly, I would be really happy, because
    I need to install this ASAP, in order to do my classwork, homework!!!!

    Hello Eadsele,
    I think the problem is pending on your network. Please try download the ISO and verify its checksum before install, refer to here to verify:
    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.

  • Create a XML Schema (C#) using Visual Studio Express 2012

    How do I add an XML schema to my xml file?
    Here is my code:
    private void WriteXmlToFile(DataSet dsDataSet)
    if (dsDataSet == null) { return; }
    // Create a file name to write to - creates a string
    string xmlfilename = @"C:\Users\fenwky\XmlDoc.xml";
    // Create the FileStream to write with.
    System.IO.FileStream stream = new System.IO.FileStream
    (xmlfilename, System.IO.FileMode.Create);
    // Create an XmlTextWriter with the fileStream.
    System.Xml.XmlTextWriter xmlWriter =
    new System.Xml.XmlTextWriter(stream,
    System.Text.Encoding.Unicode);
    // Write dsDataSet to the file with the WriteXml method.
    dsDataSet.WriteXml(xmlWriter);
    xmlWriter.Close();
    And here is my xml:
    <NewDataSet>
    <Table1>
    <Item_Code>A0001</Item_Code>
    <Item_Description>Wheels, Horse on</Item_Description>
    <Current_Count>5</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0002</Item_Code>
    <Item_Description>Wheels, Elephant on</Item_Description>
    <Current_Count>2</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0003</Item_Code>
    <Item_Description>Wheels, Dog on</Item_Description>
    <Current_Count>0</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>

    Open the XML with NOTEPAD to see if you are getting the correct results. Something may be wrong with you CSV file.  Get original CSV that teacher gave out.  Here is my results and C# code.  The styling is the 2nd line and simply
    requires changing the one line in the C# that outputs the line.
    <?xml version="1.0" encoding="UTF-8"?>
    <?xsl:stylesheet type='text/xsl' href='book.xsl'?>
    <NewDataSet>
    <xs:schema id="NewDataSet" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
    <xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
    <xs:complexType>
    <xs:choice minOccurs="0" maxOccurs="unbounded">
    <xs:element name="Table1">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="Item_Code" type="xs:string" minOccurs="0" />
    <xs:element name="Item_Description" type="xs:string" minOccurs="0" />
    <xs:element name="Current_Count" type="xs:int" minOccurs="0" />
    <xs:element name="On_Order" type="xs:string" minOccurs="0" />
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:choice>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    <Table1>
    <Item_Code>A0001</Item_Code>
    <Item_Description>Horse on Wheels</Item_Description>
    <Current_Count>5</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0002</Item_Code>
    <Item_Description>Elephant on Wheels</Item_Description>
    <Current_Count>2</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0003</Item_Code>
    <Item_Description>Dog on Wheels</Item_Description>
    <Current_Count>0</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0004</Item_Code>
    <Item_Description>Seal on Wheels</Item_Description>
    <Current_Count>3</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0005</Item_Code>
    <Item_Description>Bear on Wheels</Item_Description>
    <Current_Count>7</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0006</Item_Code>
    <Item_Description>Teddy Bear</Item_Description>
    <Current_Count>2</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0007</Item_Code>
    <Item_Description>Clown</Item_Description>
    <Current_Count>5</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0008</Item_Code>
    <Item_Description>Puppy(crouch)</Item_Description>
    <Current_Count>3</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0009</Item_Code>
    <Item_Description>Puppy(stand)</Item_Description>
    <Current_Count>2</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0010</Item_Code>
    <Item_Description>Puppy(jump)</Item_Description>
    <Current_Count>2</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0011</Item_Code>
    <Item_Description>Pupp(lying)</Item_Description>
    <Current_Count>1</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0012</Item_Code>
    <Item_Description>Cart with Blocks (50)</Item_Description>
    <Current_Count>0</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0013</Item_Code>
    <Item_Description>Cart with Blocks (100)</Item_Description>
    <Current_Count>5</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0014</Item_Code>
    <Item_Description>Cart with Blocks (200)</Item_Description>
    <Current_Count>4</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0015</Item_Code>
    <Item_Description>Train with 0 Carriage</Item_Description>
    <Current_Count>12</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0016</Item_Code>
    <Item_Description>Train with 1 Carriage</Item_Description>
    <Current_Count>10</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0017</Item_Code>
    <Item_Description>Train with 2 Carriage</Item_Description>
    <Current_Count>5</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0018</Item_Code>
    <Item_Description>Train with 3 Carriage</Item_Description>
    <Current_Count>4</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0019</Item_Code>
    <Item_Description>Train with 4 Carriage</Item_Description>
    <Current_Count>5</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0020</Item_Code>
    <Item_Description>Train with 5 Carriage</Item_Description>
    <Current_Count>2</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0021</Item_Code>
    <Item_Description>Building Blocks (20)</Item_Description>
    <Current_Count>15</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0022</Item_Code>
    <Item_Description>Building Blocks (30)</Item_Description>
    <Current_Count>13</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0023</Item_Code>
    <Item_Description>Building Blocks (40)</Item_Description>
    <Current_Count>16</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0024</Item_Code>
    <Item_Description>Building Blocks (50)</Item_Description>
    <Current_Count>5</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0025</Item_Code>
    <Item_Description>Building Blocks (100)</Item_Description>
    <Current_Count>2</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0026</Item_Code>
    <Item_Description>Building Blocks (200)</Item_Description>
    <Current_Count>8</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0027</Item_Code>
    <Item_Description>Windmill</Item_Description>
    <Current_Count>5</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0028</Item_Code>
    <Item_Description>Farmhouse</Item_Description>
    <Current_Count>6</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0029</Item_Code>
    <Item_Description>Fencing</Item_Description>
    <Current_Count>22</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0030</Item_Code>
    <Item_Description>Barn</Item_Description>
    <Current_Count>12</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0031</Item_Code>
    <Item_Description>Tractor</Item_Description>
    <Current_Count>6</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0032</Item_Code>
    <Item_Description>Animals</Item_Description>
    <Current_Count>3</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0033</Item_Code>
    <Item_Description>House</Item_Description>
    <Current_Count>9</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0034</Item_Code>
    <Item_Description>Car</Item_Description>
    <Current_Count>12</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0035</Item_Code>
    <Item_Description>Building (small)</Item_Description>
    <Current_Count>4</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0036</Item_Code>
    <Item_Description>Building (medium)</Item_Description>
    <Current_Count>3</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0037</Item_Code>
    <Item_Description>Building (tall)</Item_Description>
    <Current_Count>4</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0038</Item_Code>
    <Item_Description>Shop</Item_Description>
    <Current_Count>7</Current_Count>
    <On_Order>No</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0039</Item_Code>
    <Item_Description>Traffic Lights</Item_Description>
    <Current_Count>5</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    <Table1>
    <Item_Code>A0040</Item_Code>
    <Item_Description>Petrol Station</Item_Description>
    <Current_Count>4</Current_Count>
    <On_Order>Yes</On_Order>
    </Table1>
    </NewDataSet>
    C#
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.IO;
    using System.Data.OleDb;
    using System.Xml;
    using System.Xml.Xsl;
    namespace CSVImporter
    public partial class CSVImporter : Form
    //const string xmlfilename = @"C:\Users\fenwky\XmlDoc.xml";
    const string xmlfilename = @"C:\temp\test.xml";
    DataSet ds = null;
    public CSVImporter()
    InitializeComponent();
    WriteXML();
    public void WriteXML()
    // Create a Open File Dialog Object.
    openFileDialog1.Filter = "csv files (*.csv)|*.csv|All files (*.*)|*.*";
    openFileDialog1.ShowDialog();
    string fileName = openFileDialog1.FileName;
    //doc.InsertBefore(xDeclare, root);
    // Create a CSV Reader object.
    CSVReader reader = new CSVReader();
    ds = reader.ReadCSVFile(fileName, true);
    dataGridView1.DataSource = ds.Tables["Table1"];
    StringWriter stringWriter = new StringWriter();
    ds.WriteXml(new XmlTextWriter(stringWriter), XmlWriteMode.WriteSchema);
    string xmlStr = stringWriter.ToString();
    XmlDocument doc = new XmlDocument();
    doc.LoadXml(xmlStr);
    XmlDeclaration xDeclare = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
    XmlNode docNode = doc.CreateXmlDeclaration("1.0", "UTF-8", null);
    doc.InsertBefore(xDeclare, doc.FirstChild);
    // Create a procesing instruction.
    XmlProcessingInstruction newPI;
    String PItext = "type='text/xsl' href='book.xsl'";
    newPI = doc.CreateProcessingInstruction("xsl:stylesheet", PItext);
    doc.InsertAfter(newPI, doc.FirstChild);
    doc.Save(xmlfilename);
    XslCompiledTransform myXslTrans = new XslCompiledTransform();
    myXslTrans.Load(xmlfilename);
    string directoryPath = Path.GetDirectoryName(xmlfilename);
    myXslTrans.Transform(xmlfilename, directoryPath + "result.html");
    webBrowser1.Navigate(directoryPath + "result.html");
    public class CSVReader
    public DataSet ReadCSVFile(string fullPath, bool headerRow)
    string path = fullPath.Substring(0, fullPath.LastIndexOf("\\") + 1);
    string filename = fullPath.Substring(fullPath.LastIndexOf("\\") + 1);
    DataSet ds = new DataSet();
    try
    if (File.Exists(fullPath))
    string ConStr = string.Format("Provider=Microsoft.Jet.OLEDB.4.0;Data Source={0}" + ";Extended Properties=\"Text;HDR={1};FMT=Delimited\\\"", path, headerRow ? "Yes" : "No");
    string SQL = string.Format("SELECT * FROM {0}", filename);
    OleDbDataAdapter adapter = new OleDbDataAdapter(SQL, ConStr);
    adapter.Fill(ds, "TextFile");
    ds.Tables[0].TableName = "Table1";
    foreach (DataColumn col in ds.Tables["Table1"].Columns)
    col.ColumnName = col.ColumnName.Replace(" ", "_");
    catch (Exception ex)
    MessageBox.Show(ex.Message);
    return ds;
    jdweng

  • How do I create a view in SQL Server in Visual Studio Express 2013 for Desktop?

    Hi
    I've got a SQL Server database set up using the internal SQL Server in Visual Studio Express 2013 for Desktop. I want to create a view (using tables with one to many relationships) but I don't
    know how to do it.
    Where can I find a good tutorial on creating views in SQL Server in Visual Studio Express 2013 for Desktop? I think Visual Studio Express 2013 for Desktop doesn't have some view designer that
    exists in the non-express version of Visual Studio (if I'm not mistaken). So I think I'd need a tutorial on how to do the actual SQL, unless there is some tool I don't know about.
    Thanks

    Hi ,
    According to your description, if you install SQL Server SQL Server 2014 Express and SQL Server Manager Studio tools (SSMS), if you want to create a view, you can use SSMS. Then if you want to connect to and Diagram your SQL Express Database in Visual Studio
    2013, you can attach the database file by using the .NET Framework Data Provider for SQL Server in Visual Studio, and create a database diagram via expanding the “Database Diagrams” node.
     For more information, there is similar issue about how to connect to and Diagram your SQL Express Database in Visual Studio 2012 , you can review the following article,
    http://blogs.msdn.com/b/bethmassi/archive/2011/10/27/how-to-connect-to-and-diagram-your-sql-express-database-in-visual-studio-lightswitch.aspx.
    Regards,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Installation Problem Visual Studio Express 2013 for Web on Windows 8.1

    Hi,
    I am new to Microsoft developing tools and I have spent the last two days trying to install VS Express 2013 for Web on my laptop that's running windows 8.1 (X64,Intel
    Core i5 3337U (1.80GHz)).
     I run it as an administrator and have enough space on the disk. However, I keep on getting the same error. 
    Microsoft Visual Studio Express 2013 for Web - ENU Fatal error during installation.
    After uninstalling and deleting the temp files, I get an additional error.
    Entity Framework 6.1.1 Tools for Visual Studio 2013
    User cancelled installation.
    In my log files here are some of the problems that I saw:
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VisualStudio12'; variable = 'AspNetWebFxTools_VS2013_Version'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VWDExpress12'; variable = 'AspNetWebFxTools_VWD2013_Version'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Classes\Installer\Dependencies\Microsoft.VS.Bliss_Core,v12'; variable = 'bliss_core_DetectKeyExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'bliss_core_DetectKeyExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Policies\Microsoft\SystemCertificates\AuthRoot'; variable = 'DisableRootAutoUpdate'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft Corporation\DataFxTools\12.0.0.0'; variable = 'EFTools_2013_VersionKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Help\v2.1\Setup'; variable = 'help3vs_49_DetectKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Help\v2.1\Setup'; variable = 'help3vs_49_DetectKeyExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'help3vs_49_DetectKeyExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'IEsvcVersionExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'IEsvcVersion' to value '11.0.9600.17631'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\SystemCertificates\AuthRoot\Certificates\3B1EFD3A66EA28B16697394703A72CA340A05BD5'; variable = 'MicrosoftRootCertificateAuthority2010AuthRootExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2010AuthRootExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2010RootExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\SystemCertificates\AuthRoot\Certificates\8F43288AD272F3103B6FB1428485EA3014C0BCFE'; variable = 'MicrosoftRootCertificateAuthority2011AuthRootExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2011AuthRootExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'MicrosoftRootCertificateAuthority2011RootExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'netfxfullredist_43_CBSValue' to value '1'
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'netfxfullredist_43_DetectKey' to value '4.5.51641'
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'NetFxFullRedist_InstalledRelease' to value '378675'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'NetFxFullRedist_InstalledReleaseExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'OS_BuildNumber' to value '9600'
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'ssceruntime_x64_msi_DetectKey' to value '4.0.8876.1'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'ssceruntime_x64_msi_DetectKeyExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'ssceruntime_x86_msi_DetectKey' to value '4.0.8876.1'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'ssceruntime_x86_msi_DetectKeyExists' to value 1
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\SSDT\12.0\1033'; variable = 'ssdt_lang_detect_enu'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\vs\Servicing\12.0\teamExplorerCore'; variable = 'teamExplorercore_DetectKeyExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'teamExplorercore_DetectKeyExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'VSComponentPathVariable' to value ''
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Updates\Microsoft Visual Studio 2013\vsupdate_kb2829760'; variable = 'vsupdate_DetectKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Updates\Microsoft Visual Studio 2013\vsupdate_kb2829760'; variable = 'vsupdate_DetectKeyExists'
    [0354:1418][2015-02-23T13:55:12]i000: Setting numeric variable 'vsupdate_DetectKeyExists' to value 0
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'webdeploy_x64_en_usmsi_902_DetectKey' to value '9.0.1764.0'
    [0354:1418][2015-02-23T13:55:12]i000: Setting string variable 'webdeploy_x86_en_usmsi_901_DetectKey' to value '9.0.1764.0'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio 12'; variable = 'WebTools_VS2013_VersionKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio 2013'; variable = 'WebTools_VS2013_VersionKey_2'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio Express 12 for Web'; variable = 'WebTools_VWD2013_VersionKey'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\Web Tools\Visual Studio Express 2013 for Web'; variable = 'WebTools_VWD2013_VersionKey_2'
    The last line of my log file contained this:
    [0354:1418][2015-02-23T14:02:26]i399: Apply complete, result: 0x80070643, restart: None, ba requested restart:  No
    I really need to have this up and running as soon as possible. Any help would be greatly appreciated. 
    Thanks!

    Hi,
    By the errors:
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VisualStudio12'; variable = 'AspNetWebFxTools_VS2013_Version'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Microsoft\DevDiv\WebFrameworksTools\Servicing\5.0\VWDExpress12'; variable = 'AspNetWebFxTools_VWD2013_Version'
    [0354:1418][2015-02-23T13:55:12]i000: Registry key not found. Key = 'SOFTWARE\Classes\Installer\Dependencies\Microsoft.VS.Bliss_Core,v12'; variable = 'bliss_core_DetectKeyExists'
    It maybe a registry or administrator issue.
    Please install VS with administrator.
    What's more, it maybe a corrupt registry issue. And you can't install any version of Visual Studio, I think you can use the tool to fix problems that programs cannot be installed or uninstalled. It also can fix the corrupted registry keys.
    http://support.microsoft.com/mats/program_install_and_uninstall/en-us
    Best Wishes!
    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. <br/> Click <a
    href="http://support.microsoft.com/common/survey.aspx?showpage=1&scid=sw%3Ben%3B3559&theme=tech"> HERE</a> to participate the survey.

  • Error while installing Visual Studio Express 2013 with Update 4 for Windows Desktop.

    When I try to install Visual Studio Express 2013 with Update 4 for Windows Desktop, I
    get the error :
    Microsoft Visual Studio Express 2013 for Windows Desktop.The form specified for the subject is not one supported or known by the specified trust provider.
    Here is what I get when I use the File Checksum Integrity Verifier (NOTE: I couldn't find the SHA Hash for the .iso I downloaded)
    // File Checksum Integrity Verifier version 2.05.
    8ab9b5ff10da1c33bb3f088331a7c8d8 vs2013.4_dskexp_enu.iso
    Here is some Extra Information:
    MY OS: Windows Technical Preview x86ANOTHER OS I TRIED INSTALLING VB ON: Windows 7 Ultimate x86
    DOWNLOADED ISO FROM: http://www.visualstudio.com/en-us/downloadsLINK: http://download.microsoft.com/download/9/6/4/96442E58-C65C-4122-A956-CCA83EECCD03/vs2013.4_dskexp_ENU.iso
    LOG FILE: http://m.uploadedit.com/b044/1421425243589.txtSHA HASH OF THE RECEIVED ISO: 8ab9b5ff10da1c33bb3f088331a7c8d8
    ====================================================NOTES:
    #I ran the setup as an administrator.
    #I do not know the SHA Hash for the ISO so please check if it matches the SHA Hash of the actual file.#Please don't recommend to use the Web Installer.#I tried both extracting the ISO and Mounting the ISO to run the Setup.
    Thanks. :D

    Solved.   The ISO is corrupt.
    The SHA 1 Hash of the ISO was 57CF28106EA096758AD6AB909F226A3468D95A49
    and the downloaded one returned 8ab9b5ff10da1c33bb3f088331a7c8d8.

  • Is there a profiler in Visual Studio Express 2013 for Windows Desktop?

    Is there a profiler in Visual Studio Express 2013 for Windows Desktop?  I can't seem to find the option anywhere.

    Hi gnychis1,
    I install it in my Environment, It doesn't have the profiler tool in this express version.
    My suggestion is that you could use the VS2013 Community version, it is also free, but it has the profiler tool in this version.
    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.

  • Just installed Visual Studio express 2013. Start menu folder empty.

    I just installed Visual Studio express 2013 For desktop.  On to my windows 7, 64 bit laptop.
    After it installs it asks you if you would like to launch the program.  So I clicked launch.  And it never launched.
    Furthermore when I go Into my start menu.  I find why the Visual Studio 2013 folder.
    And it's empty.
    So I went ahead and tried to reinstall Visual Studio express 2013.
    After I reinstalled it I had to restart my computer.  I have done that.  And my start menu folder is still empty.
    I have no way of finding the executable file for Visual Studio express 2013.
    And if I could I'm not confident that it would launch.
    I decided maybe I should uninstalled completely and reinstall it.
    I went to control panel>uninstall a program.
    I selected Microsoft Visual Studio express 2013.
    And then I selected uninstall.
    a window pops up that says.  " Microsoft Visual Studio express 2013 for windows desktop has stopped working.   A problem caused the program to stop working correctly .  Windows will close the program and notify you if a solution is available.".
    so I can't fully uninstall the program.  And reinstalling the program doesn't help.
    why is this happening. What do I do. How do I fix this?

    Hi HAL9090,
    >>I find why the Visual Studio 2013 folder. And it's empty. And my start menu folder is still empty.
    Do you mean that you can't find VS2013 in the start menu? Please click "All Programs" in the start menu to see if you can find it.
    If you still can't find it, could you please tell us how you install it? From the web installer or by the downloaded setup file? If you have the ISO image, I suggest you verify its checksum. Perhaps you need to re-download one. If you have no one, please
    download it from
    Microsoft Visual Studio Express 2013 with Update 4 for Windows Desktop - English
    DVD5 ISO image
    The correct checksum is
    4AE40D10B303C034F6D6230CE21F0295E5CD708C
    You can download the
    fciv.exe tool to verify the checksum.
    Once it matches the correct one, please make sure that your windows is patched up and disable the anti-virus software. At last, install VS.
    What's more, it seems that you can't uninstall VS2013. If you want to uninstall it, you can use the setup file to uninstall it. Please double click it to open it, then you can choose to uninstall it in the pop up dialog.
    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.

  • Editing pages created using dreamweaver with microsoft's visual studio express

    Here's a quick, somewhat vague, question for anyone who might have an answer. Is there a trick to editing pages created using dreamweaver with Microsoft Visual Studio Express? The reason I ask is I recently finished a web site for my first client who now wants to make edits herself using the program she uses, that being Microsoft. I thought it would be as easy as pulling the html files from the server (or the usb flash drive i gave her), making changes and then putting them back to the server, but apparently she is having some problems. I'm meeting with her soon. I have no experience with any other programs, other than Adobe, so I don't know how much good I'll be in helping her. Maybe it's an easy question, maybe not. Any info appreciated. Thanks!

    David wrote -
    Dreamweaver template commands are all wrapped in HTML comments, so they
    shouldn't cause any problems. They should simply be treated as comments.
    However, the concept of editable and locked regions will be ignored.
    Hi David, I meant the templates with the dwt extension, not the html files that are created from them. The full version of VS will recognize the dwt extension as 'Dynamic Web Template' but as this is a microsoft extension it does not recognize the code for editing and shows a large number of errors, (before anyone comments the dwt file extension is used by a number of other programs, all referring to a different file type).
    PZ

  • Can't see table data from Visual Studio Express 2013 for Web

    Hello!
    I have a problem and I can't see neither the table data nor the table definition for my database inside Visual Studio Express 2013 for Web, Server Explorer. When I right click it just says refresh, copy or properies.
    Does anyone know what's wrong?
    Thanks a lot!

    Hi J1m,
    According to your description, I make a test on my computer and I am able to reproduce your issue. Firstly, I install the Visual Studio 2013 express for web successfully, create a project and connect to SQL Server database. Then I right click one table,
    and I can see all the options including ‘Show Table Data ’, ‘Open Table Definition ’, ‘Copy’, ‘Refresh’, and ‘Properties’. Next, I uninstall the SQL Server data tools, and restart the Visual Studio, right click on table, and only find  the three options
    ‘Copy’, ‘Refresh’, ‘Properties’ as the following screenshot, which is the same scenario with yours.
    Based on my test, the issue could be due to the missing or corrupt SQL Server Data Tools. To work around the issue, you should install the latest SQL Server data tools for Visual Studio 2013. You could  download the
    ISO file for SQL Server data tools and extract the ISO files to your hard drive following the methods in this
    article, and install the data tools. Please restart your computer after you complete the installation.
    Regards,
    Michelle Li

  • How to prevent "Sign in" dialog on first launch of Visual Studio Express 2013?

    I am installing Visual Studio Express 2013. When I launch application shortcut for first time, It shows "sign in" window, which I want to hide for the users. This window also overrides all my settings (e.g. disabled "automatic check for
    updates"). Is there any way to prevent this dialog from appearing?

    Hi,
    >>I was looking for file or registry settings to suppress this dialog
    As far as I know, there is no way to realize this. It is by design. Since the users will sign in later, why need to suppress the dialog. What's more, this is an express edition, so you can't find any third-party add-in to help hide the dialog because Visual
    Studio Express doesn't support third-party add-ins. The only way you want the dialog not showing is to click "cancel" button the first time the dialog pop up. After that, you still can sign in if you want to. Click "Help", choose "register product", then
    you can sign in the appearing dialog.
    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.

  • Visual Studio Express will not install

    Hi, I am trying to install Visual Studio Express for Windows and as far as I can tell my system meets all the criteria however when I try to install it says I need to update windows to a newer version. 
    I am running Windows 7 XP 64bit Service Pack 1 and IE 11
    The end of the install log gives the below, what am I missing? :
    [118C:0BF8][2015-04-08T13:43:21]i101: Detected package: WinACK_x86_x86_en, state: Absent, cached: None
    [118C:0BF8][2015-04-08T13:43:21]i101: Detected package: winexpress_finalizer, state: Absent, cached: None
    [118C:0BF8][2015-04-08T13:43:21]i052: Condition '(VersionNT = v6.3) AND (WindowsBuildNumber < 9600)' evaluates to false.
    [118C:0BF8][2015-04-08T13:43:21]i052: Condition 'VersionNT < v6.3' evaluates to true.
    [118C:0BF8][2015-04-08T13:43:21]i052: Condition '(VersionNT = v6.3) AND (netfxfullredist_43_DetectKey < v4.5.31101)' evaluates to false.
    [118C:0BF8][2015-04-08T13:43:21]i052: Condition 'CompatibilityMode = 0' evaluates to false.
    [118C:0BF8][2015-04-08T13:43:21]i052: Condition 'RebootPending = 1' evaluates to false.
    [118C:0BF8][2015-04-08T13:43:21]i052: Condition 'NOT (IEsvcVersionExists) OR (IEsvcVersion < v10.0)' evaluates to false.
    [118C:0BF8][2015-04-08T13:43:21]i000: MUX:  Stop Block: WinBlock : This version of Visual Studio requires a computer with a !$!http://go.microsoft.com/fwlink/?LinkID=427810&clcid=0x409,newer version of Windows!@!.
    [118C:0BF8][2015-04-08T13:43:21]i000: MUX:  Detect Completed
    [118C:0BF8][2015-04-08T13:43:21]i000: MUX:  Wait for View to be loaded
    [118C:2208][2015-04-08T13:43:21]i000: MUX:  Detect Completed, now create view
    [118C:0BF8][2015-04-08T13:43:22]i000: MUX:  View loaded
    [118C:0BF8][2015-04-08T13:43:22]i000: MUX:  Go to Blocker page.
    [118C:0BF8][2015-04-08T13:43:22]i199: Detect complete, result: 0x0

    Hello Mike,
    Can you clarify the OS version first? What is Windows 7 XP 64bit Service Pack 1? It is Win 7 or Win XP?
    Condition '(VersionNT = v6.3) AND (WindowsBuildNumber < 9600)' evaluates to false
    Condition 'VersionNT < v6.3' evaluates to true
    I checked here http://en.wikipedia.org/wiki/Windows_NT to see those NT versions and find that v6.3 means Win 8 version.
    So please notice that " Visual Studio Express for Windows " is for Store Apps and Phone Apps, they required Win 8 or higher version OS. Win 7 or Win XP does not meet the requirements for this kind of VS.
    If you just want to develop normal version, please choose to use Visual Studio 2013 Express for Windows Desktop.
    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.

  • No JavaScript Intellisense in Visual Studio Express 12 For Windows Phone

    I'm developing mobile app for windows phone using Windows phone 8 SDK (Visual Studio Express 12 For Windows Phone). I want to use code auto-Complete facilities when coding in Javascript. For that I need to use Intellisense for JS.
    According to my knowledge, To configure Intellisense according to my knowledge,It have navigate to the [Tools] > [Options] > Text Editor > JavaScript > IntelliSense >
    But in my [Tools] > [Options] > Text Editor > list there is No item called JavaScript.
    Please help me for solve this.

    Hi AmilaEranga,
    I try to test it in my side, I could get the JavaScript Text Editor in my side.
    So I doubt that it would be your VS IDE issue. If possible, please download it from the official site here:
    http://www.microsoft.com/en-us/download/details.aspx?id=30664
    And then repair your VS, test it again.
    Or you could run the following command lines with the Developer Command Prompt of VS2012:
    devenv /setup
    devenv.exe /InstallVSTemplates
    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.

  • How to do regstration of Visual studio express 2008

    Hi I have some supporting Development tools, which run on the 2008 platform. I on my new PC installed the visual studio Express 2008, but after month its blocked by missing registration. When I follow the registration link, the site is closed. SO how can
    I get the visual studio Express 2008 back in operation

    Visual C++ 2008 Express is no longer supported. You really should consider a newer version. Bear in mind that Visual Studio 2013 Community Edition is free, and contains way more features than your version.
    However if you need the 2008 version apparently if you download the ISO version of Visual C++ 2008 Express, you don't need to register. Try these links:
    Just VS 2008 Express
    http://download.microsoft.com/download/8/B/5/8B5804AD-4990-40D0-A6AA-CE894CBBB3DC/VS2008ExpressENUX1397868.iso
    VS 2008 Express SP1
    http://download.microsoft.com/download/E/8/E/E8EEB394-7F42-4963-A2D8-29559B738298/VS2008ExpressWithSP1ENUX1504728.iso

  • Connecting BI Web Server with SQL Server Express / Visual Studio Express for Report Development

    Hi,
    My company is using the Report Builder 3.0 to build the BI Reports ( I guess based on SQL Server 2008 R2). Our software vendor has provided us the web URL to access the BI Server. I want to generate the BI Reports with SQL Server Express or  Visual
    Studio Express instead of Report Builder 3.0. Need some guidance in this regard.
    regards, BI.Developer.

    Hi,
    Based on my research, if we want to open the report from report server to Business Intelligence Development Studio, we should download the report from report manager, then add this item in Business Intelligence Development Studio. For more details, please
    see the following steps:
    Type the URL in IE browser to access the repot manager.
    Browse to the RDL file folder or location.
    Hover over the report, and click the drop-down arrow near the RDL file.
    Click on download button, the download window will pop up now. Then save the rdl file.
    Click Manage option in the drop-down list, make a note of its Data Source Connection string.
    Create a Report Server Project in Business Intelligence Development Studio.
    Right-click the Reports folder to open the Add Existing Item dialog box, navigate to the location where you saved the .rdl file for the report, and then click Add.
    Right-click the Data Source to verify the connection string is correct.
    Besides, please make sure that software vendor had assigned ‘View reports’, ’Manage reports’, ‘Manage folder’ and ‘Manage data sources’ tasks for your account, so that you can download the report and view the data source.
    If there are any other questions, please feel free to ask.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

Maybe you are looking for

  • Location of "Chart", "Information"-Button in BEx Analyzer NW2004s?

    Hi, the shapes for the chart/information/filter icon shows an imagedata src. But where are these icons stored? I would like to add additional icons to the worksheet. Shall I only use Excel functionality like Insert>Grafic or shall I work with shapes

  • Skype for Business - Is it Ready for Business?

    Hello Support, We are evaluating Skype as a potential main solution for all our telephony systems. We currently see many issues in the Gui Client and whole management proposal from our perspective. Not sure how others have dealt with it. With all res

  • Reg:Import Purchase Order Scenario

    Hi All,     In the Import Purchase Order Scenario SVB load will come, which will display in MIRO after the PO creation     i have an requirement that in the MIGO transaction i just want to make the SVB load to 0,because if the SVB load comes it just

  • Hi! After Effects CC 2014 do not work with Blackmagic Intensity Pro.

    After Effects CC, Premiere Pro CC 2014, Photoshop CC 2014 work correct with Blackmagic Intensity Pro.

  • My audio is grey, but no red light is on

    Hi! I have an audio problem. No Red light, but the sound icon is stuck on grey, wont allow me to move the volume bar, F10 F11 and F12 wont do anything and then they are touched, a "forbiden" icon appears below the big audio icon in the middle of the