Windows 7 with SharePoint 2013 Foundation and Visual Studio 2013

Hi,
I am begginer with Sharepoint 2013 Foundation. 
My company installed Sharepoint 2013 Foundation on a virtual Server. I installed
Visual Studio 2013 on my local computer. Also i created a developer site.
Based on http://msdn.microsoft.com/en-us/library/office/jj220047(v=office.15).aspx#RDOverview I installed Office
Developer Tools for Visual Studio 2013 on my local computer. 
I am trying to remotely develop apps
with Visual Studio 2013. In the option What SharePoint site do you want to use for debugging your App? i put the url
of developer site.
First of all, i had to choose if the apps will be SharePoint-hosted or Provider-hosted apps. Based on http://msdn.microsoft.com/en-us/library/office/fp142379(v=office.15).aspx and http://msdn.microsoft.com/en-us/library/office/fp142381(v=office.15).aspx,
i decided to followed SharePoint-hosted because is the only type that applies to SharePoint 2013 Foundation.
I followed the steps of http://msdn.microsoft.com/en-us/library/office/fp142379(v=office.15).aspx, which is the quide for How to:Create a basic SharePoint-hosted app. In Step 10 for deploy my app i get the following error: 
Error occurred in deployment step 'Install app for SharePoint': Failed to install app for SharePoint. Please see the output window for details.
What is the problem?
Also, the visual studio need to be installed on the server where sharepoint was installed?
Moreover, do I need app catalog for testing and deploy apps?
thanks, Aphrodite

Hi,
According to your post, my understanding is that you have an issue about creating app.
Per my knowledge, the issue is caused that you don’t configure the app catalog URLs from the central administration.
It means that we should create an App site catalog site collection to hold our Apps.
More reference:
http://www.sharepoint-journey.com/app-development-in-sharepoint.html
Thanks & Regards,
Jason
Jason Guo
TechNet Community Support

Similar Messages

  • Create SharePoint 2013 workflow using visual studio 2013

    Dear Team,
    How  to create a workflow for template approval process using visual studio 2013.To achieve this do i need to install share point on my machine.

    Hi,
    According to your post, my understanding is that you want to create a SharePoint 2013 workflow using Visual Studio 2013.
    We need setting up and configuring Microsoft SharePoint Server 2013 and the Workflow Manager Client 1.0 server, see Start:
    Set up and configure SharePoint 2013 Workflow Manager.
    The following materials for your reference:
    Develop SharePoint 2013 workflows using Visual Studio
    http://msdn.microsoft.com/en-us/library/office/jj163199(v=office.15).aspx
    How to: Create SharePoint 2013 Workflows using Visual Studio
    http://msdn.microsoft.com/en-us/library/office/dn584771(v=office.15).aspx
    Developing SharePoint 2013 workflows with Visual Studio demo
    http://www.bing.com/videos/watch/video/developing-sharepoint-2013-workflows-with-visual-studio-demo/10t0er5gh
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Getting a error while running creating a sample page on sharepoint 2013 and visual studio 2013

    hi,
       When i trying to create a sample web service for create page dynamically to sharepoint 2013 using visualstudio 2013 getting a error message while consume  the web service browser itself. so i have tried to change the target platform but
    to 32 but its not possible but only "Any CPu" available on the list
    Visual Studio :2013
    Sharepoint 2013 
    Error msg :
    Microsoft SharePoint is not supported in 32-bit process. Please verify that you are running in a 64-bit executable.
    at Microsoft.SharePoint.Utilities.SPUtility.CheckFrameworkAndProcess()
    at Microsoft.SharePoint.Administration.SPConfigurationDatabase.get_RegistryConnectionString()
    at Microsoft.SharePoint.Administration.SPConfigurationDatabase.get_Local()
    at Microsoft.SharePoint.Administration.SPFarm.FindLocal(SPFarm& farm, Boolean& isJoined)
    at Microsoft.SharePoint.Administration.SPFarm.get_Local()
    at Microsoft.SharePoint.SPSite..ctor(String requestUrl)
    code :  
    <%@ WebService Language="C#" Class="sharepoint_cust_service" %>
    using System;
    using System.Web;
    using System.Web.Services;
    using System.Web.Services.Protocols;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Publishing;
    [WebService(Namespace = "http://tempuri.org/")]
    [WebServiceBinding(ConformsTo = WsiProfiles.BasicProfile1_1)]
    // To allow this Web Service to be called from script, using ASP.NET AJAX, uncomment the following line. 
    // [System.Web.Script.Services.ScriptService]
    public class sharepoint_cust_service  : System.Web.Services.WebService {
        [WebMethod]
        public string HelloWorld() {
            return "Hello World";
        [WebMethod]
        public void Export_To_Sharepoint()
            SPSite site = null;
            SPWeb web = null;
            site = new SPSite("http://sites/pages/");
            web = site.OpenWeb();
            PublishingWeb publishingWeb = PublishingWeb.GetPublishingWeb(web);
            SPContentTypeId contentType = new SPContentTypeId("NewContentTypeID");
            PageLayout[] layouts = publishingWeb.GetAvailablePageLayouts(contentType);
            PageLayout pageLayout = layouts[0];
            string pageName = Server.MapPath("/newpage.aspx");
            PublishingPage newPage = publishingWeb.GetPublishingPages().Add(pageName, pageLayout);
            newPage.Update();
            newPage.ListItem.File.CheckIn("created");
            newPage.ListItem.File.Publish("created");
            web.Dispose();
            site.RootWeb.Dispose();
            site.Dispose();
    Software developer

    goto propeties of your project and click on build tab and select 64X or any cpu platformtarget as it should work .

  • Installing Sharepoint Phone SDK for Visual Studio 2013

    I am trying to install the SharePoint 2013 Phone SDK on my desktop computer (Win 8.1, 64bit) running Visual Studio 2013 Professional. VS2013 comes prepackaged with the Windows Phone 8 SDK, but the SP2013 Phone SDK installer fails to recognize it and promptly
    cancels the installation. Is the SharePoint 2013 Phone SDK not supposed to run on VS2013?

    Restart the computer and try to install the SDK again. if it fails again then
    go to start > run > %temp%
    Here check the latest file which will have installation details of SDK. Please let us know the error you see in this log file.
    I Assume wind 8.1 can be the issue

  • Version of jvm.dll compatible with 64-bit development on Visual Studio 2013?

    Hi.  I am building a 64-bit C++ application under Visual Studio 2013. I am using jvm.dll to call Java methods from within the application.  The issue is that the version of jvm.dll that is distributed with Java 7 and Java 8 are compiled with Visual Studio 2010 (and thus rely on the msvcr100.dll runtime library).  This makes it very dangerous to use with a Visual Studio 2013 application which uses msvcr120.dll (mixing runtime libraries is a very big no-no).  I am seeing random memory errors as a result, at the JNI interface level.
    Is there any way to get a version of jvm.dll that is compiled with Visual Studio 2013 and is thus dependent on msvcr120.dll?
    Thanks,
    Dan

    Hello,
    As per your description, remote deployment is not possible for server side code in sharepoint so if you are using server object model then you won't be able to debug or deploy your solution from visual studio.
    VS is not required to installed on UAT/prod server but you need sharepoint along with visual studio in same development machine to develop any custom webpart.
    Once you deploy your custom webpart on site then you will be able to see that webpart in webpart gallery and that gallery is also available in designer so it means you can also add your custom webpart from designer to any page.
    Correct me if i misunderstood you
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • SQL Server Express and Visual Studio 2013

    In February I installed Visual Studio 2013 Professional. Looking in the Control Panel at all my installed programs, I see that I have a bunch of SQL server-related programs loaded, from the 2013 install and also from installs of previous Visual Studio versions.
    I've never done a thing with SQL server express, and am completely clueless about using it. I've already wanted to take a crack at it but it always seemed too daunting, so I backed off. It seems, however, that over the years the integration of SQL Server Express
    with Visual Studio is getting more and more seamless. Here is a list of all the SQL Server-related programs on my computer, with the ones installed automatically from the Visual Studio 2013 install bolded so they'll stand out. What I'm wondering is if I have
    everything I need to use SQL Server Express with Visual Studio 2013:
    Microsoft SQL Server 2005                                                  
    Microsoft Corporation   11/4/2013
    Microsoft SQL Server 2005 Mobile [ENU] De...                     
    Microsoft Corporation   4/29/2007
    Microsoft SQL Server 2008 R2 Data-Tier App...                    
    Microsoft Corporation   1217/2011
    Microsoft SQL Server 2008 R2 Data-Tier App...                    
    Microsoft Corporation   1217/2011
    Microsoft SQL Se1Ver 2008 R2 Management ...                   
    Microsoft Corporation   1217/2011
    Microsoft SQL Server 2008 R2 Transact-SQL ...                    
    Microsoft Corporation   12/7/2011
    Microsoft SQL Server 2012 Command Line ...                 
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Data-Tier App Fr...              
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Express LocalDB                 
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Management Ob...               
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Native Client                        
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Transact-SQL Co...                    
    Microsoft Corporation   9/21/2012
    Microsoft SQL Server 2012 Transact-SQL Ser...            
    Microsoft  Corporation 2/10/2014
    Microsoft SQL Server 2012 T-SQL Language ...             
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server Compact 3.5 Design T...                     
    Microsoft Corporation   2/14/2008
    Microsoft SQL Server Compact 3.5 SP2 ENU                       
    Microsoft Corporation   5/25/2010
    Microsoft SQL Server Compact 4.0SP1 ENU                        
    Microsoft Corporation   9/21/2012
     Microsoft SQL Se1Ver Data Tools - enu (11.1....                 
    Microsoft Corporation   5/19/2013
     Microsoft SQL Server Data Tools - enu (12.0....            
    Microsoft Corporation  2/10/2014
     Microsoft 
    SQL Server Data  Tools Build   Utiliti ...              
    Microsoft Corporation   5/19/2013
     Microsoft 
    SQL Server Data  Tools Build   Utiliti ...         
    Microsoft  Corporation 2/10/2014
     Microsoft SQL Server Database Publishing ...                     
    Microsoft Corporation   2/14/2008
    Microsoft SQL Server Database Publishing ...                      
    Microsoft Corporation   5/25/2010
    Microsoft SQL Server Native Client                                      
    Microsoft Corporation   4/1/2011
    Microsoft SQL Server Setup Support Files (E...                    
    Microsoft Corporation   4/1/2011
    Microsoft SQL Se1Ver System CLR Types                             
    Microsoft Corporation   1217/2011
    Microsoft SQL Server VSS Writer                                         
    Microsoft Corporation   4/1/2011

    Hello,
    Please read the following resources:
    http://msdn.microsoft.com/en-us/library/ms233763.aspx
    http://stackoverflow.com/questions/20333518/how-to-create-a-database-in-ms-visual-studio-2013
    http://msdn.microsoft.com/en-us/vstudio/bb643825.aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • Licencing of Windows 8.1, SQL Server and Visual Studio

    1. Windows 8 (OEM Version)
        a. Is it legal to re-install Windows 8 OEM version on a PC (this might
    be required because of formatting of PC hard disk)? Is there any upper limit on how many times a Windows 8 OEM version can be re-installed
    on a PC?
        b. Can I continue to use same Windows 8 OEM version even after upgrading
    a PC (for example change of processor, change of hard disk, change of RAM etc.)
    2. SQL Server (Developer and Express) Version:
       a. Your site mentions that SQL Server Developer edition can be used for
    software development and testing, but a software dealer whom I have approached says its not legal to use SQL Server Developer edition for
    development in a software consultancy. Please clarify.
       b. Is it legal to use SQL Server Express Edition for software development
    purpose in  a software consultancy?
    3. Visual Studio Express Edition
        a. Is it legal to use Visual Studio Express Edition for software development
    purpose in  a software consultancy?
    I had emailed this query to [email protected] yesterday but I have not received any reply.

    This question is a bit broad for a forum post. What have you tried and where does it fail? This code will give a list of files in an app folder. It might get you started: [c# code, but should be easy to translate to VB]
    public async Task<List<string>> GetFileListFromFolder() {
    List<string> fileList = new List<string>();
    StorageFolder storageFolder = await Package.Current.InstalledLocation.GetFolderAsync(@"myFolder\");
    foreach (StorageFile fl in await storageFolder.GetFilesAsync())
    fileList.Add(fl.Name);
    return fileList;
    I'm a self-taught noob amateur. Please take this into account when responding to my posts or when taking advice from me.

  • Can I configure TFS express 2013 in ms visual studio 2013 express edition?

    Hi,
    I downloaded Microsoft visual studio SHELL only to realise that I cannot create WebApplication.
    my team wants to work on the .Net application integrated with tfs for
    development, version control and building. Its on trial basis.
    So we want to create a prototype and hence we cannot go for the licensed version.
    Can you please tell me if we can do the above things using microsoft visual studio express 2013 and tfs express 2013.
    If yes, please explain the configuration process as we see many installers online.
    Thanks in advance.

    Hi linkin3468,
    Firstly, there are different VS express version, if you want to develop the web app, one idea is that you could install the VS2013 express for web.
    http://www.visualstudio.com/en-us/products/visual-studio-express-vs.aspx
    Or you could install the latest free version VS2013 community version, it would support all features of express versions.
    http://www.visualstudio.com/en-us/news/vs2013-community-vs.aspx
    For the TFS express usage issue, as far as I know, the Visual Studio Express client integration will work with any Team Foundation Server – including both TFS Express and the
    Team Foundation Service. So you could use it.
    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.

  • Problem with Beta 2 and Visual Studio 2013

    Hello , i created an app a few months ago which was almost finished and contained 50-60 images i think. I used NEW images this time and re-created the app from the complete beginning.
    Since the Beta 2/VS 2013 my app doesn't display some images. Everytime the same type of images and at the same places ( i mean , not background for example.)
    And very important : In the Siena app everything is OK but when i try to preview my app in VS 2013 the problem occurs.
    Please help me because i tried many things without success.
    Thank you !
    Let me show you an example ( With image Siena app , without VS2013 )

    >Do I need to install any additional runtime on the machine I am running the application ? Any help is appreciated.
    You do need the runtime DLLs installing if you're not statically
    linking it to your application.
    http://www.microsoft.com/en-gb/download/details.aspx?id=40784
    Dave

  • Visual Studio 2013 and SSDT-BI Preview Command Window

    Hi,
    Is it normal that VS is putting up a command window when previewing SSRS reports from Visual Studio 2013. It pops  up when on preview and I have to minimize it. Can some settings make this window invisible (a more integrated approach)?
    Regards
    SWEDEV

    Hi SWEDEV,
    Based on my research, a command window pops up when we preview an SSRS report in Visual Studio 2013 is a confirmed issue.
    The issue is fixed, but the updated version within the coming couple of weeks. For more details about this issue, please refer to the following Connect Feedback 849709 and 884544:
    https://connect.microsoft.com/SQLServer/feedback/details/849709/reporting-services-preview-processing-host-issues
    https://connect.microsoft.com/SQLServer/feedback/details/884544/ssdt-bi-for-vs2013-preview-for-ssrs-pops-up-a-command-window
    If there are any other questions, please feel free to ask.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • How do I use infopath 2013 with visual studio 2013 to modify forms with code?

    Dear all,
    I am using sharepoint online and infopath 2013, I wonder how do I edit infopath 2013 forms with visual studio? When I try to edit form code it says  I need visual studio 2012 and some other tools, I installed them and visual studio 2013, I wonder how
    do I get rid of the message and start coding? Can someone provide a detailed procedure of doing so? I am having trouble with creating multiple items with single infopath form with repeating table on sharepoint online. Thanks.
    Timothy

    Hi,
    According to your post, my understanding is that you want to create InfoPath form with code using Visual Studio.
    More information about develop InfoPath form with Visual Studio:
    http://msdn.microsoft.com/en-us/library/office/ee526362(v=office.15).aspx
    http://msdn.microsoft.com/en-us/library/office/aa942693.aspx  
    For the second question, I suggest you can create another post , it will be easier for others to focus on one question in one thread.
    Best regards

  • Trouble Installing Visual Studios 2013 Community on Windows Standard 7 Embedded.

    Hi there,
    I'm not sure if this is solvable or not, but I cannot seem to get MS Windows Standard 7 Embedded to run Visual Studios 2013.  I have been able to make it work fine on Win7 HP, and on Win 8.1, but it seems to not be compatible with the Win Standard 7
    Embedded.  I was thinking that I may have to use an older version of Visual studios, but I'm not sure, thanks in advance for the help. 

    Hi there,
    I'm not sure if this is solvable or not, but I cannot seem to get MS Windows Standard 7 Embedded to run Visual Studios 2013.  I have been able to make it work fine on Win7 HP, and on Win 8.1, but it seems to not be compatible with the Win Standard 7
    Embedded.  I was thinking that I may have to use an older version of Visual studios, but I'm not sure, thanks in advance for the help. 
    You don't provide much of an explanation to go on with regard to what is occuring which will not allow Visual Studio 2013 community edition to run on WS7E.
    Is .Net Framework 4.5 already installed on WS7E? Did VS 2013 Community install with no issues on WS7E? Are any errors occuring? If WS7E has event logs have you checked those?
    I have no idea about WS7E or if you have to create an image that will run VS 2013 Community.
    La vida loca
    I tried to upload a screen shot but apparently I have yet to be verified human, but I will try to describe what it looked like.  When I ran the .exe from downloads it came up with a window that said to fix the following errors before attempting to install.
     The first error said that visual studios requires a computer with a newer version of windows.  The next problem said that visual studios works best with internet explorer 10, but I can't get an updated version of explorer because it is not compatible
    with my system.  I can try another version of windows, or a different version of visual studios; however, I can only run windows 7 or earlier, windows 8 is not compatible with my pc. 

  • Has any one worked on sharepoint 2013 workflows using visual studio.

    Has any one worked with sharepoint 3013 workflows using visual studio.

    Hi,
    To develop SharePoint 2013 workflow using Visual Studio, you can refer to:
    Develop SharePoint 2013 workflows using Visual Studio
    Create a SharePoint workflow app using Visual Studio 2012
    Get started with workflows in SharePoint 2013
    Thanks,
    Linda Li                
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Linda Li
    TechNet Community Support

  • 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

  • Cannot start Visual Studio 2013 Community edition

    Windows 7 on a 64-bit PC...
    Downloaded the installer vs_community.exe for Visual Studio 2013 with Update4 yesterday and ran it.
    It took about 1 hour and 20 minutes. At the end the installer reported the web deployment function
    could not be found/installed and that I could locate and install it myself later. It then told me to
    restart the PC, which I did, but the Community edition had not been added to the start menu.
    There are other Visual Studio versions on this PC:
    Visual C# 2010 Express, Visual Express 2012, Visual Express 2013 and Visual Studio 2013 Ultimate
    trial version. They can all be started from the menu and do not interfere with each other and they
    installed without problems. There are 4 weeks evaluation time left for VS 2013 Ultimate and I want to
    make use of that. VS Express can be shown the door if any of these might be blocking the
    Community version.
    I am puzzled by one more VS directory named Microsoft Visual Studio 2012 in Program Files(x86). This
    contains many items added yesterday by the Community install including a directory named Community
    with with two files licencse.htm and ThirdPartyNotices.txt. It also contains files and directories
    added in November last year (ImportProjects, Preemptive Solutions...(don't remember what or if I was installing)) and some added in February this year when I installed VS Ultimate 2013 trial. So the VS 2012 directory contains a mix of items placed there by
    VS 2013 installers.
    Questions:
    1. Could this mixed use be the cause of the Community version not being on the Start menu?
    2. what can I do to fix this without losing the VS Ultimate trial?
    3. Can Community version coexist with other VS versions?
     

    I was installing by running vs_community.exe.
    When I let the mouse hover over this file name information about the file pops up:
    File Description: Microsoft Visual Studio 2013 Community with Update4
    File version: 12.0.31101.0
    Size: 1.18MB
    I don't know, but I would guess this file installs the Community version.
    I did not notice that the Community version will not run on the same computer as other VS 2013 versions. Is this in the documentation? And will the Community version be blocked by VS Express
    versions too?
    Now, as far as I understand to make the Community version work I will need to uninstall the VS Ultimate 2013 trial first. Will that remove the Ultimate files in the MS VS12.0 directory in Program Files (X86)? and will uninstalling Community remove its contribution?
    I mentioned there are other files too in MS VS12.0, like SDK, Silverlight, WDExpress and Web. I don't remember installing any other program that might have put them there. Do I have to empty or remove MS VS12.0 before installing the community version? Then,
    if there are some left-overs can I just delete MS VS12.0 manually?

Maybe you are looking for

  • How to call a Game in ABAP Control

    I want to place / call game in Control, which controls are required? pls guide..

  • If I delete an attachment in a group chat on iMessage on iOS 8, does it delete it from everyone?

    and if not, does anyone know how to do it? Or am I just going to have to get everyone to delete the group chat and start a new one?

  • Primary key issue

    Hi all, I'm new here, and I have a stupid problem, I think. If someone could help me, I'll be grateful. I have to build a very simple JSP application using a few database tables, providing the base functionality: insert, update, delete, search. I'm u

  • Can you integrate Crystal Reports dynamic charts onto DW?

    Is there a way that I can drag/drop or integrate dynamic/live charts that were built in Crystal Reports into Dreamweaver? I am designing the company website and would like to use Crystal to create our live graphs/charts and then integrate these chart

  • ITunes don't want to connect

    My iTunes don't want to connect on my iPad.  My connections are all working and I have the latest iTunes installed.  Can someone please help as I have googled and tried all solutions, but nothing seems to work.