Change Visual Studio's Internal Browser from IE to Chrome or FireFox?

Hello,
My organization blocks IE.  We can't access anything externally with IE except for approved exceptional situations.  They don't block Chrome and FireFox.  Visual Studio 2015 (and maybe also earlier versions) appear to use IE internally to
sign in to VSO, display help, download packages, etc.  Third party plugins do the same (probably by default).  Is there any way to change VS' internal browser from IE to another browser?  I'm sure that its using IE because I have used Wireshark
to monitor the traffic, pick out the "forbidden" URL, and have my IT add an exception for the URL.  While this process works, it is slow.  Plus there is the risk of discovering a new URL too near a deadline, IT unexpectedly removing
the exceptions, etc.
NOTE:  Changing to an "external editor" in Tools | Options | Environment | Web Browser does not work.  It still uses IE.
NOTE:  Its not a proxy issue.  I have the proxy setup in IE (Tools | Internet Options | Connections | LAN Settings).  I have also tried adding the proxy to the devenv.exe.config.  I then realized it is just IE getting blocked.  If
I paste the URL into IE, I get my organization's forbidden page.  If I then paste the same URL into Chrome, it works perfectly (but not helpful since it was not initiated by VS).
Thanks

Hello,
My organization blocks IE.  We can't access anything externally with IE except for approved exceptional situations.  They don't block Chrome and FireFox.  Visual Studio 2015 (and maybe also earlier versions) appear to use IE internally to
sign in to VSO, display help, download packages, etc.  Third party plugins do the same (probably by default).  Is there any way to change VS' internal browser from IE to another browser?  I'm sure that its using IE because I have used Wireshark
to monitor the traffic, pick out the "forbidden" URL, and have my IT add an exception for the URL.  While this process works, it is slow.  Plus there is the risk of discovering a new URL too near a deadline, IT unexpectedly removing
the exceptions, etc.
NOTE:  Changing to an "external editor" in Tools | Options | Environment | Web Browser does not work.  It still uses IE.
NOTE:  Its not a proxy issue.  I have the proxy setup in IE (Tools | Internet Options | Connections | LAN Settings).  I have also tried adding the proxy to the devenv.exe.config.  I then realized it is just IE getting blocked.  If
I paste the URL into IE, I get my organization's forbidden page.  If I then paste the same URL into Chrome, it works perfectly (but not helpful since it was not initiated by VS).
Thanks
I don't know what you mean by using Wireshark to pick out a forbidden URL. What would that have to do with Internet Explorer? If a URL is forbidden then nothing should be able to connect to it.
Perhaps the internal WebBrowser in Visual Studio, which Visual Studio 2012 apparently uses as well as Internet Explorer I suppose, gets its settings from Internet Explorer. At least that's what the image below appears to advise. As any settings altered in
Internet Explorer are used by the internal webbrowser except for homepage I guess.
Therefore this may work or not. Use Firefox from the machine your Visual Studio is on and navigate to
http://whatsmyuseragent.com/ so you can see the user agent that Firefox uses. Copy and paste the user agent into notepad or something. Then go to this link
How-To Geek How to change your browsers user agent without installing any extensions and perhaps you can alter Internet Explorer to use a Firefox user agent. That may fool the firewall so it thinks Firefox is being used as I don't know how it could know
otherwise which browser is being used. Although if it works it may tick off your IT guys.
I forgot to add the user agents for IE and Chrome display at Whats My User Agent from my system as below. IE first, Chrome second. I don't have Firefox.
Mozilla/5.0 (Windows NT 6.1; WOW64; Trident/7.0; yie9; rv:11.0) like Gecko
Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/36.0.1985.125 Safari/537.36
La vida loca

Similar Messages

  • Where does "C:\Program Files\Microsoft Visual Studio 8" folder come from?

    This seems like the right forum to ask, Where does "C:\Program Files\Microsoft Visual Studio 8" folder come from, need to find out by what app it was installed.

    Hi Anna,
    Could you please tell us what about this problem now?
    If you have been solved the issue, would you mind sharing us the solution here? So it would be helpful for other members
    who get the same issue.
    If not, please let us know the latest information about it.
    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.

  • Can't connect to visual studio online source control from vs 2010 ice starting today 1-23-2015

    apparently there has been a breaking change and I can no longer connect to my visual studio online account anymore through vs 2010 ice - i get this message when i try to connect to it in the ide
    Microsoft Visual Studio
    Error
    Team Foundation Server https://xxxxx.visualstudio.com/defaultcollection does not exist or is not accessible at this time.
    Technical information (for administrator):
      TF30064: You are not authorized to access the server.
    OK   
    I can log in manually with a web browser but I need to check in items from the ide - it worked this morning but stopped working this afternoon
    when i try to debug the webpage that comes up in ide to connect it says line 4 char 16405 error object doesn't support this property or method - code
    0  url https://apps.vssps.visualstudio.com/_status/tfs/20150123T002517/_scripts/TFS/Laoder.min.js do you want to continue running scripts on this page?

    Hi diakoniaus,
    For the situation, you can check if you have the need permissions to access the team project in Visual Studio Online.
    To make sure the permission of your credential, we can run tfssecurity command in VS command line to have a check. Please execute
    tfssecurity /imx “MS account” /collection:url, for more information about tfssecurity /imx, please refer to:
    http://msdn.microsoft.com/en-us/library/ms400806.aspx 
    If you have the corresponding, you can also have a try on other machines to see if it works for you. Or you can clean team foundation cache, delete cookies in browser and delete the credentials that saved in credential manager. Then reconnect to the team
    project via VS 2010. You can check the troubleshooting details in this
    thread.
    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 download a document from a document libary and upload it to a jaxrs webservice in java

    I have created a custom ribbon action and a application page in visual studio. The user
    presses my ribbon in sharepoint and it calls the application page that in turn downloads that file. here is the code:
    namespace Save_to_PLM.Layouts.Save_to_PLM
    public partial class ApplicationPage : LayoutsPageBase
    protected void Page_Load(object sender, EventArgs e)
    if (Request.QueryString["file"] != null)
    DownloadDocument(Request.QueryString["file"].ToString());
    private void DownloadDocument(string fileName)
    SPSecurity.RunWithElevatedPrivileges(delegate()
    using (SPSite oSiteCollection = new SPSite(SPContext.Current.Site.Url))
    using (SPWeb mi_web = oSiteCollection.OpenWeb())
    string path = System.Web.HttpContext.Current.Server.MapPath(fileName);
    string name = System.IO.Path.GetFileName(path);
    Console.WriteLine(name);
    Microsoft.SharePoint.SPFile spFile = mi_web.GetFile(fileName);
    Response.ClearHeaders();
    Response.ClearContent();
    Response.ContentType = "application/force-download";
    Response.AppendHeader("content-disposition", "attachment; filename=" + name);
    Response.BinaryWrite(spFile.OpenBinary());
    Response.End();
    But i want to http post that file to my jaxrs webservice in java. How do  i do that
    programmatically? I am very new .net i usually code in java.

    Hi,
    Here is a blog about how to call a Java EE Web Service from a .Net Client for your reference:
    http://blogs.msdn.com/b/bursteg/archive/2008/07/19/how-to-call-a-java-ee-web-service-from-a-net-client.aspx
    If you want to download a document from a Sharepoint library, we can use the REST API provided by SharePoint and use Apache HttpComponents in Java.
    http://www.rgagnon.com/javadetails/java-get-document-sharepoint-library.html
    About how to upload file using jaxrs webservice in C# code, I suggest you post it to C# or ASP.Net Forum, you will get more help and confirmed answers from there.
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=csharpgeneral
    Best Regards
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Can't update Visual Studio Ultimate 2013 trial from 30 days to 90 days?

    Hi,
    I can't update the 30 day trial for Visual Studio 2013 Ultimate.
    I have followed the instructions to register the product.
    But although the message says "license downloaded successfully", the license stays at 30 days.
    Any help would be appreciated?
    Thanks

    Hello jungleburger,
    Have you installed any version of Visual Studio before?
    For this license issue, please
    call 1-800-426-9400,
    Monday through Friday, 6:00 A.M. to 6:00 P.M. (Pacific
    Time) to speak directly to a Microsoft licensing specialist, and you can get
    more detail information from there. You can also visit the following site for
    more information and support on licensing issues:
    http://www.microsoft.com/licensing/mplahome.mspx.
    Actually I think normal steps
    http://msdn.microsoft.com/en-us/library/gg442061.aspx would update the license. But if you failed, this may also related to the server.
    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.

  • Use of VISUAL STUDIO ONLINE appears impossible from Windows Azure

    The VISUAL STUDIO ONLINE by logging to the site of Windows Azure, is displayed in the left
    If you click on the "+ New " Select , " VISUAL STUDIO ONLINE " is displayed in gray
    It is displayed as " not available " in red underneath .
    If you hover the mouse , the following in English
    It appears as .
    You need an eligible Windows Azure subscription to buy monthly user
    licenses or shared resources. Create a new Windows Azure subscription
    or get started without one by creating a free Visual Studio Online account.
    I tried a method that is displayed here , but I do not quite know , and do not be resolved .
    Resolve as soon as possible this not available on writing an article writer , I I must proceed next
    Do not . Please tell me how to resolve as soon as possible .

    Hi,
    As Buck's said, you may need azure subscription. If you have it but the problem occurred again, I suggest you could contact azure support team. In my opinion, I guess it is a account question.
    Support Team Channel:
    Please contact support team by creating a support ticket at http://www.windowsazure.com/en-us/support/contact/
    Or if that doesn't work because you don't have an active subscription you will need to contact general customer support to have them create a support ticket for you
    http://support.microsoft.com/gp/customer-service-phone-numbers?wa=wsignin1.0
    Please try it.
    Any question or result, please let me know.
    Regards,
    Will
    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 Open links to fileshare when browse to SharePoint in chrome and firefox

    We have a search center site and results come from file share.
    It seems that when user use Chrome and firefox - there is a problem to open a link to the file. In addition in case the file is an image - the preview image is seen only in IE
    keren tsur

    Hi,
    According to your post, my understanding is that you couldn’t see the image preview in search results.
    First, you should know that the search center can crawl image files, however, the results only return these image files as list items and no image preview will appear whichever browses you use.
    The cause of this issue is that the image result type uses the Default Item template and not the Picture template.
    I recommend that you can use the SharePoint Designer 2013 to modify the hover display template that is being used for default items.
    For more information, you can refer to:
    http://blogs.realdolmen.com/experts/2014/03/17/images-in-sharepoint-server-2013-search/
    Best Regards,
    Linda Li
    TechNet Community Support

  • Visual Studio 2008 extract reports from Crystal Ceports 2008

    Hi,
    I am a little new with CR2008,
    I need to find a way to create a report from crystal using VS2008 (C#).
    The program will get a rpt file or/and other parameters and need to create a reports.
    The reports can be a doc or pdf file.
    1) Is this can be done?
    2) Where can I find code example which create it?
    Thank,
    Amos

    Hi
    Yes, You can export the reports in PDF or DOC fromat.
    To download sample code click [here|https://boc.sdn.sap.com/codesamples].
    You can also take help from [Dev library|https://boc.sdn.sap.com/node/7770]
    Hope this helps!!
    Regards,
    Amit

  • How To Force Open Document In Edit Mode From Code-Behind (Chrome and Firefox)?

    Hello,
    Currently I am developing an IHttpHandler which at the should redirect the user to an Edit mode of a document located in a Document Library.
    The Problem is that in Firefox and Chrome it downloads the document in the temp folder. In IE it works as expected.
    The following code is used for the redirection:
    SPUtility.Redirect(urlOfTheNewDocument, SPRedirectFlags.Trusted, context);

    Hi,
    Please try to use IE Tab.
    Chrome IE Tab:
    https://chrome.google.com/webstore/detail/ie-tab/hehijbfgiekmjfkfjpbkbammjbdenadd?hl=en 
    Firefox IE Tab:
    https://addons.mozilla.org/en-us/firefox/addon/ie-tab/
    Here is a similar thread for your reference:
    http://stackoverflow.com/questions/14455212/how-to-open-sharepoint-files-in-chrome-firefox
    Thanks,
    Dennis Guo
    TechNet Community 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]
    Dennis Guo
    TechNet Community Support

  • Making a .dll file in Visual Studio from a NIDAQmx C program

    I have a C program in Visual Studio that reads temperature from DAQs. I wanted to take this c file and put it into a shared library project in Visual Studio. However, when I try to run the program, it gives me 10 errors that look like this:
    unresolved external symbol DAQmxCreateTask referenced in function main
    I have NIDAQmx.h included in the project so I'm not sure why CreateTask is considered an external symbol. I'm not sure what causes this problem, could anyone help?
    Thank you!

    Yes, I've tried this and have gotten a clean compile.  However, the .dll is associated with third party software intended to add controls to a form.  The form does not display in Designer though (extensive stack trace errors) which made me wonder
    whether there is a downside to this approach.

  • How do I put a project using nmake (or other make util) into a visual studio 2013 project?

    I'm not asking how to convert it over to visual studio's internal setup.  I want to use the custom build feature to build the code prior to building the current project so that the library generated will be available to the project.
    Steps I've used I got from
    here:
    Create a win32 dll project.
    Copy the files into a subdirectory under the project.
    In the Solution Explorer, I create a Filter that I then add all of the source, headers and Makefile to.
    I select all of the items in that filter group and right click and select properties.
    In Configuration Properties->General, I change Item Type to Custom Build Tool and click Apply. (In the Visual Studio 2013 community, this sometimes comes up with:
    An error has occured while saving the edited properties listed below:
    One or more values are invalid. Object reference not set to an instance of and object.
    Yeah, that's not cryptic. 9.9.  When that happens, I just click Ok and then click on the parent window, and it will ask me
    Do you want to save the changes you've made to the property page?
    To which I click Yes and it seems to apply it to all the files and I then reopen the property page again.
    I then go to Configuration Properties->Custom Build Tool->General and set
    Command Line to:
    cd subfolder
    nmake
    For Outputs, I set it to subfolder\bin\output-file.lib.
    For Link Objects, I leave it as Yes.
    Clicking on ok and then building gets me the following error:
    LINK : fatal error LNK1104: cannot open file 'subfolder\bin\output-file.lib'.
    Yeah, no kidding, it hasn't been made yet.
    What am I doing wrong? Thanks for your help.
    A
    Adrian

    I was trying to get it to be part of another project, and the information from Specifying Custom Build Tools stated:
    If the Custom
    Build Tool folder does not appear, the file extension of the file you selected is associated with a default tool. For example,
    the default tool for .c and .cpp files is the compiler. To override a default tool setting, in the Configuration
    Properties node, in the General folder,
    in the Item Type property,
    click Custom Build Tool.
    Click Apply and
    the Custom Build Tool node
    is displayed.
    Indicating that what I was trying to accomplish could be done.  However, since this is 3rd party code, this seems to be a cleaner way of doing it.
    Thanks,
    A
    Adrian

  • Trouble installing Visual Studio Professional

    I have been trying to download and install a copy of Visual Studio that I got from DreamSpark. An .iso file was downloaded to my computer.
    I tried to burn it to a DVD but it failed, probably because the file was too big. I was hoping to use multiple DVDs, but when I tried a second time it failed again.
    I have a 8G flash drive, so I tried using the Windows 7 USB/DVD Download tool but" when I select the file I get a dialog box with the following "The selected file is not a valid ISO file. Please select a valid ISO file and try
    again." I tried changing the file extension from .iso to .ISO but that did not help.
    Does anyone know what I need to do next?
    Thanks

    Hi Rick,
    Thank you for posting in MSDN forum.
    I think that the pvdg42's suggestion is really useful for you, so please you try the pvdg42's suggestion to check your issue in your side.
    In addition, I suggest you could also try to check if the .iso file is fine when you download it from the DreamSpark.
    If the .iso file is fine, I think that the burn .iso file to a DVD issue, it is out of support range of this forum.
    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.

  • Error when installing VISUAL STUDIO - related components ...... I NEED YOUR HELP!

    At the begining, i wanted to create a new Database file in VISUAL STUDIO ULTIMATE 2013, this soft prompted me that i need 
    insteall SQL SERVER EXPRESS 2005 or SQL SERVER EXPRESS 2008. 
    Then, I opened the install package of VISUAL STUDIO ULTIMATE 2013 to add a component which was called MICROSOFT SQL SERVER 
    DATA TOOLS. For a moment, I was reminded that "MICROSOFT SQL SERVER 2012 NATIVE CLIENT package install to failed, 
    MICROSOFT SQL SERVER 2012 command-line utility packages install to failed. "
    I don' t know what to do, can anyone help me? I will be very gratefull for your solution.
    Please forgive me that I cannot upload the screetshot. Because I received the following message "Body text cannot contain images or links until we are able to verify your account."
    This is the Log File this time:
    ......[2940:323C][2014-11-28T22:04:47]i323: Registering package dependency provider: {6E36D43C-F3D6-44C4-96E4-E5238E0B88CF}, version: 11.1.3000.0, package: sqlncli_amd64
    [2940:323C][2014-11-28T22:04:47]i301: Applying execute package: sqlncli_amd64, action: Install, path: C:\ProgramData\Package Cache\{6E36D43C-F3D6-44C4-96E4-E5238E0B88CF}v11.1.3000.0\packages\sqlncli_amd64\sqlncli.msi, arguments: ' MSIFASTINSTALL="7" IACCEPTSQLNCLILICENSETERMS="YES" ADDLOCAL="ALL"'
    [2940:1EE0][2014-11-28T22:04:47]i304: Verified existing payload: sqlcmdlnutils_amd64 at path: C:\ProgramData\Package Cache\{527F6645-0366-4984-B71D-803C478D302D}v11.1.3000.0\packages\sqlcmdlnutils_amd64\SqlCmdLnUtils.msi.
    [4F1C:3414][2014-11-28T22:04:47]i000: MUX: Source confirmed
    [2940:1EE0][2014-11-28T22:04:47]i304: Verified existing payload: ultimate_finalizer at path: C:\ProgramData\Package Cache\{198CEA86-2DA9-4B71-9FB1-3D22AC8C0C2E}v12.0.21005\packages\ultimate_finalizer.msi.
    [4F1C:3414][2014-11-28T22:04:47]i000: MUX: Source confirmed
    [4F1C:2B54][2014-11-28T22:04:48]i000: MUX: ExecuteError: Package (sqlncli_amd64) failed: Error Message Id: -2147483648 ErrorMessage: 以前的某个安装需要重新引导计算机以便使更改生效。若要继续,请重新启动计算机,然后再次运行安装程序。
    [2940:323C][2014-11-28T22:04:48]e000: Error 0x80070643: Failed to install MSI package.
    [2940:323C][2014-11-28T22:04:48]e000: Error 0x80070643: Failed to execute MSI package.
    [4F1C:2B54][2014-11-28T22:04:48]e000: Error 0x80070643: Failed to configure per-machine MSI package.
    [4F1C:2B54][2014-11-28T22:04:48]i000: MUX: Installation size in bytes for package: sqlncli_amd64 MaxAppDrive: 0 MaxSysDrive: 5001216 AppDrive: 0 SysDrive: 5001216
    [4F1C:2B54][2014-11-28T22:04:48]i000: MUX: Return Code:0x80070643 Msi Messages:-2147483648 Result Detail:0 Restart:None
    [4F1C:2B54][2014-11-28T22:04:48]i000: MUX: Set Result: Return Code=-2147023293 (0x80070643), Error Message=-2147483648, Result Detail=, Vital=False, Package Action=Install, Package Id=sqlncli_amd64
    [4F1C:2B54][2014-11-28T22:04:48]w350: Applied non-vital package: sqlncli_amd64, encountered error: 0x80070643. Continuing...
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {6E36D43C-F3D6-44C4-96E4-E5238E0B88CF}, package: sqlncli_amd64
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {527F6645-0366-4984-B71D-803C478D302D}, version: 11.1.3000.0, package: sqlcmdlnutils_amd64
    [2940:323C][2014-11-28T22:04:48]i301: Applying execute package: sqlcmdlnutils_amd64, action: Install, path: C:\ProgramData\Package Cache\{527F6645-0366-4984-B71D-803C478D302D}v11.1.3000.0\packages\sqlcmdlnutils_amd64\SqlCmdLnUtils.msi, arguments: ' MSIFASTINSTALL="7"'
    [4F1C:2B54][2014-11-28T22:04:48]i000: MUX: ExecuteError: Package (sqlcmdlnutils_amd64) failed: Error Message Id: -2147483648 ErrorMessage: 安装程序缺少一个安装必备组件:
    -Microsoft SQL Server 2012 Native Client。若要继续,请从 http://go.microsoft.com/fwlink/?LinkID=116207 安装 Microsoft SQL Server 2012 Native Client,
    然后再次运行安装操作
    [2940:323C][2014-11-28T22:04:48]e000: Error 0x80070643: Failed to install MSI package.
    [2940:323C][2014-11-28T22:04:48]e000: Error 0x80070643: Failed to execute MSI package.
    [4F1C:2B54][2014-11-28T22:04:48]e000: Error 0x80070643: Failed to configure per-machine MSI package.
    [4F1C:2B54][2014-11-28T22:04:48]i000: MUX: Installation size in bytes for package: sqlcmdlnutils_amd64 MaxAppDrive: 0 MaxSysDrive: 49152 AppDrive: 0 SysDrive: 49152
    [4F1C:2B54][2014-11-28T22:04:48]i000: MUX: Return Code:0x80070643 Msi Messages:-2147483648 Result Detail:0 Restart:None
    [4F1C:2B54][2014-11-28T22:04:48]w350: Applied non-vital package: sqlcmdlnutils_amd64, encountered error: 0x80070643. Continuing...
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {527F6645-0366-4984-B71D-803C478D302D}, package: sqlcmdlnutils_amd64
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.PortableLibrary_DTP,v11, package: PortableLibrary_DTP
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.PortableLibrary_DTP, package: PortableLibrary_DTP
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.PortableLibrary_DTP_LP_chs,v11, package: PortableLibrary_DTP_LP
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.PortableLibrary_DTP_LP_chs, package: PortableLibrary_DTP_LP
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.Bliss_Core,v12, package: Bliss_Core
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.Bliss_LP_chs,v12, package: Bliss_LP
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.Blend_Core,v12, package: Blend_Core
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.Blend_LP_CHS,v12, package: Blend_LP
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.PerformanceCollectionTools_amd64,v12, package: dynamicanalysiscollectionbits_482
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.PerformanceCollectionTools_amd64_chs,v12, package: dynamicanalysiscollectionbits_482LP
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {1589C899-DD34-45C1-A70D-972863ABBA96}, version: 11.1.3000.0, package: SSDTDBSvcExternals
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {1589C899-DD34-45C1-A70D-972863ABBA96}, package: SSDTDBSvcExternals
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {08AEF86A-1956-4846-B906-B01350E96E30}, version: 12.0.20912.0, package: dpeftools_200
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {08AEF86A-1956-4846-B906-B01350E96E30}, package: dpeftools_200
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {50A54DEF-6004-45C4-B868-6561CF5E317E}, version: 12.0.30919.1, package: SSDTJuneau
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {50A54DEF-6004-45C4-B868-6561CF5E317E}, package: SSDTJuneau
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {7E153C09-AD75-4FD6-B5E1-FFC90000E224}, version: 12.0.30919.1, package: SSDTBuildUtilities
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {7E153C09-AD75-4FD6-B5E1-FFC90000E224}, package: SSDTBuildUtilities
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {3674F088-9B90-473A-AAC3-20A00D8D810C}, version: 3.1237.1762, package: webdeploy_x64_en_usmsi_902
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {3674F088-9B90-473A-AAC3-20A00D8D810C}, package: webdeploy_x64_en_usmsi_902
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.WcfDataServices,v12, package: wcf_dataservices
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.WcfDataServicesLP_ENU,v12, package: wcf_dataservices
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {7BF61FA9-BDFB-4563-98AD-FCB0DA28CCC7}, version: 8.0.1557, package: iisexpress_x64_en_us_1061
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {7BF61FA9-BDFB-4563-98AD-FCB0DA28CCC7}, package: iisexpress_x64_en_us_1061
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {BD63060C-F4C7-4E86-9C2A-4A102E7EE12C}, version: 2.0.40926.0, package: webtoolsextensionsvs_1040
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {BD63060C-F4C7-4E86-9C2A-4A102E7EE12C}, package: webtoolsextensionsvs_1040
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {BB4BDFC5-3805-4D46-A6DC-AEC762E1A62E}, version: 2.0.40926.0, package: webtoolsextensionsvs_1045_lp
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {BB4BDFC5-3805-4D46-A6DC-AEC762E1A62E}, package: webtoolsextensionsvs_1045_lp
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.ASP.NET.webpages_runtime,v2, package: aspnetwebpages2_1030
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.ASP.NET.WebPages_VisualStudio12_Tooling_ENU,v2, package: aspnetwebpages2vs12tools_1032
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.ASP.NET.mvc_runtime,v4, package: aspnetmvc4_1010
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.ASP.NET.MVC_VisualStudio12_Tooling_ENU,v4, package: aspnetmvc4vs12tools_1012
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.ASP.NET.webpages_runtime_CHS,v2, package: aspnetwebpages2_1031_lp
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.ASP.NET.WebPages_VisualStudio12_Tooling_CHS,v2, package: aspnetwebpages2vs12tools_1033_lp
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.ASP.NET.mvc_runtime_CHS,v4, package: aspnetmvc4_1011_lp
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.ASP.NET.MVC_VisualStudio12_Tooling_CHS,v4, package: aspnetmvc4vs12tools_1013_lp
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.ASP.NET.WebFrameworksAndTools_VisualStudio12_ENU,v5, package: aspnetwebfxtoolsvs12
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.ASP.NET.WebFrameworksAndTools_VisualStudio12_CHS,v5, package: aspnetwebfxtoolsvs12_lp
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {1F4004F7-3BC0-3ABC-86F6-7A125D11F98B}, version: 12.0.21005, package: trinodt14_83
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {1F4004F7-3BC0-3ABC-86F6-7A125D11F98B}, package: trinodt14_83
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {2B8E4DD5-CBC3-3EE0-AA2D-0076DD7617CB}, version: 12.0.21005, package: trinodt14lp_86
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {2B8E4DD5-CBC3-3EE0-AA2D-0076DD7617CB}, package: trinodt14lp_86
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {2386192E-D6DB-4AD2-9564-65586A0AE53E}, version: 5.5.4954.46574, package: dotfuscatorcemsi_296
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {2386192E-D6DB-4AD2-9564-65586A0AE53E}, package: dotfuscatorcemsi_296
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {E77C896C-7AB7-4BBE-B544-8A203AC76052}, version: 5.5.4954.46574, package: dotfuscatorce_lp_msi_297
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {E77C896C-7AB7-4BBE-B544-8A203AC76052}, package: dotfuscatorce_lp_msi_297
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {943F3FB1-3F9C-4FB7-A4E2-6D53617068C3}, version: 1.2.3197.1, package: PreEmptiveAnalytics_298
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {943F3FB1-3F9C-4FB7-A4E2-6D53617068C3}, package: PreEmptiveAnalytics_298
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {572E4893-D438-43B0-8954-88E3226D57CD}, version: 1.2.3197.1, package: PreEmptiveAnalytics_lp_299
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {572E4893-D438-43B0-8954-88E3226D57CD}, package: PreEmptiveAnalytics_lp_299
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.vc_designtime,v12, package: vc_designtime_x64msi_388
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {5481F163-B9E5-30A8-8441-4DBBB87D6AA2}, version: 12.0.21005, package: vc_libraryselectablemfc
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {5481F163-B9E5-30A8-8441-4DBBB87D6AA2}, package: vc_libraryselectablemfc
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {492498A3-F88C-FE2F-755C-9B1B91724CA5}, package: Windows_EspC
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {5E5A6D5E-8376-01F1-B65B-E73E35C15D49}, package: Windows_EspC_LP
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.Windows.WindowsSoftwareDevelopmentKit.x86.8.1, package: WinBlue_SDK_Desktop
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.Windows.WindowsSoftwareDevelopmentKitDirectXx64Remote.x64.8.1, package: WinBlue_SDK_DX_Redist_x64
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.Windows.WindowsSoftwareDevelopmentKitDirectXx86Remote.x86.8.1, package: WinBlue_SDK_DX_Redist_x86
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.Windows.WindowsSoftwareDevelopmentKitforWindowsStoreApps.x86.8.1, package: WinBlue_MetroSDK
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.Windows.WindowsSoftwareDevelopmentKitforWindowsStoreAppsDirectXx64Remote.x64.8.1, package: WinBlue_SDK_Metro_DX_Redist_x64
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.Windows.WindowsSoftwareDevelopmentKitforWindowsStoreAppsDirectXx86Remote.x86.8.1, package: WinBlue_SDK_Metro_DX_Redist_x86
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {02213A81-CB13-7262-5ABE-1FFA2C75559F}, package: WinBlue_SDK_App_Cert_Kit_x64
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.Windows.WindowsRuntimeIntellisenseContent-zh-cn.x86.8.1, package: WinBlue_Runtime_Intellisense
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.sdk_tools35,v11, package: sdk_tools35
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.sdk_tools35_lp_chs,v11, package: sdk_tools35res
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {95150001-1163-0409-1000-0000000FF1CE}, version: 15.0.4481.1505, package: SharePointClientComponents_x64
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {95150001-1163-0409-1000-0000000FF1CE}, package: SharePointClientComponents_x64
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.WorkflowClient, package: WorkflowClient_x64
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.WorkflowTools, package: WorkflowTools_x64
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {16A901BB-CD8E-3B48-9932-5927FB13508D}, version: 12.0.21005, package: sptoolssetup_110
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {16A901BB-CD8E-3B48-9932-5927FB13508D}, package: sptoolssetup_110
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {97592A5E-6A50-38E0-885C-7334BA7A43D8}, version: 12.0.21005, package: sptoolsVSIXInstaller
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {97592A5E-6A50-38E0-885C-7334BA7A43D8}, package: sptoolsVSIXInstaller
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {BA5D1DAD-651C-34F0-97F7-EDBB972B3F01}, version: 12.0.21005, package: sptoolssetuplp_120
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {BA5D1DAD-651C-34F0-97F7-EDBB972B3F01}, package: sptoolssetuplp_120
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {C00453B2-27AD-4858-A20D-F44E39481C7D}, version: 11.1.3366.16, package: rs_addon_msi
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {C00453B2-27AD-4858-A20D-F44E39481C7D}, package: rs_addon_msi
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {68992963-713C-4FB0-B183-1DA693739525}, version: 11.1.3366.16, package: rs_addon_lp_msi
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {68992963-713C-4FB0-B183-1DA693739525}, package: rs_addon_lp_msi
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.WinJS, package: WinLibJS_CORE.msi
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.IntelliTrace.Core_x86,v12.2, package: IntelliTrace_x86
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.IntelliTrace.Core_amd64,v12.2, package: IntelliTrace_x64
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.IntelliTrace.Core_x86_chs,v12.2, package: IntelliTraceLoc_x86
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.IntelliTrace.Core_amd64_chs,v12.2, package: IntelliTraceLoc_x64
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.TFSStoryboarding_amd64,v12, package: tfs_storyboarding_x64
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.VS.TFSStoryboardingLP_amd64_chs,v12, package: tfs_storyboarding_x64_lang
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.IntelliTrace.FrontEnd_x86,v12.2, package: IntelliTraceFrontEnd_x86
    [2940:323C][2014-11-28T22:04:48]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: Microsoft.IntelliTrace.FrontEnd_x86_chs,v12.2, package: IntelliTraceFrontEndLoc_x86
    [2940:323C][2014-11-28T22:04:48]i323: Registering package dependency provider: {198CEA86-2DA9-4B71-9FB1-3D22AC8C0C2E}, version: 12.0.21005, package: ultimate_finalizer
    [2940:323C][2014-11-28T22:04:48]i301: Applying execute package: ultimate_finalizer, action: Repair, path: C:\ProgramData\Package Cache\{198CEA86-2DA9-4B71-9FB1-3D22AC8C0C2E}v12.0.21005\packages\ultimate_finalizer.msi, arguments: ' MSIFASTINSTALL="7" VSEXTUI="1" SKIP_APPID_SETUP=""'
    [4F1C:2B54][2014-11-28T22:06:34]i000: MUX: Installation size in bytes for package: ultimate_finalizer MaxAppDrive: 262144 MaxSysDrive: 2519040 AppDrive: 0 SysDrive: 1421312
    [4F1C:2B54][2014-11-28T22:06:34]i000: MUX: Return Code:0x0 Msi Messages:0 Result Detail:RollbackCleanup Restart:None
    [4F1C:2B54][2014-11-28T22:06:34]i000: MUX: Reset execution Result
    [4F1C:2B54][2014-11-28T22:06:34]i000: MUX: Reset Result
    [4F1C:2B54][2014-11-28T22:06:34]i319: Applied execute package: ultimate_finalizer, result: 0x0, restart: None
    [2940:323C][2014-11-28T22:06:34]i325: Registering dependency: {7fd5ccb2-a150-4f11-9381-ae16467eb73b} on package provider: {198CEA86-2DA9-4B71-9FB1-3D22AC8C0C2E}, package: ultimate_finalizer
    [4F1C:2B54][2014-11-28T22:06:34]i000: MUX: Apply Complete: Disk Space Used in bytes for Installation: MaxAppDrive: 262144 MaxSysDrive: 217088 AppDrive: 0 SysDrive: 0
    [4F1C:2B54][2014-11-28T22:06:34]i000: MUX: Free Disk Space after install: SystemDrive C:\ 73895870464 bytes AppDrive D:\ 100367806464 bytes
    [4F1C:2B54][2014-11-28T22:06:34]i000: MUX: Go to Finished page.
    [4F1C:2B54][2014-11-28T22:06:34]i399: Apply complete, result: 0x0, restart: None, ba requested restart: No

    Hi LewisLewisH,
    According to your description, you receive an error message when you creating a database file in Visual Studio Ultimate 2013. From the
    document, we can know that we can create a Local Database File in Visual Studio Ultimate 2013 with SQL Server Data Tools. So we needn’t reinstall SQL Server Data Tools.
    As to the error message” 安装程序缺少一个安装必备组件: -Microsoft SQL Server 2012 Native Client。若要继续,请从 http://go.microsoft.com/fwlink/?LinkID=116207 安装 Microsoft SQL Server 2012 Native Client,然后再次运行安装操作”, we can know that we haven’t install Microsoft SQL Server 2012
    Native Client or the installation for Microsoft SQL Server 2012 Native Client has failed. We should restart the computer, then reinstall Microsoft SQL Server 2012 Native Client.
    Besides, you can post a reply in the following thread to verify your account:
    https://social.msdn.microsoft.com/Forums/en-US/d03e16a7-e911-463c-b86c-02c79a6398a2/verify-your-account-23?forum=reportabug
    Reference:
    Installing SQL Server Native Client
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Unable to change the status of Internal order.......

    Hi,
        I am trying to change the status of Internal order from Technically completed to Release. But i am getting an error that ---Status REL is not allowed (order 4564564).
    We have created this order and till now zero value is used of actual budget means we not used even single amount till now for this order and we want to change the status of order from Tech to REL again.
    Is it possible.
    Please suggest.
    Regards,
    R.

    Hello,
    You can release the Order by the following method:
    Go to KO02
    Enter the Internal Order name
    Go to Control Data Tab
    There we have one screen area as Status: there we have one push button(like); click it and from there you can set the staus of the internal order to Released(or you can also change the current status of the internal order)
    Please let me know if you I am missing something in my reply.
    Thanks,
    Anurag Singh Rathore

  • Cannot install Selenium Components for Cross Browser Testing extension from Visual Studio 2013

    Hello,
    I am having some issues with installing Selenium Components for Cross Browser testing.  I keep getting this error everytime. Yes, Visual Studio 2013 has been registered with a product key. However, I cannot seem to bypass this error. I tried to install
    from http://visualstudiogallery.msdn.microsoft.com/11cfc881-f8c9-4f96-b303-a2780156628d and from Tools->Extensions and Updates from Visual Studio 2013. It just does not work. I have a copy of Visual Studio 2013.  Yes, I already have Visual Studio
    2012 Ultimate and Visual Studio 2013 Ultimate installed on my machine. What am I missing?

    Hi Antwan,
    Please uninstall the VS, then reinstall it.
    On the other hand, this issue is in the extension, I suggest that you should post it in
    Selenium components for Coded UI Cross Browser Testing site for efficient response. (Q AND A)
    Thanks
    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.

Maybe you are looking for

  • AE projects export Media Encoder = instant meltdown

    System Late 2013 iMac. 3.5 ghz iCore 7, 32 Gigs Ram NVIDIA GeForce GTX 780M 4096 MB Adobe CC - All up to date Red Giant Plugins - latest ME 7.2.0.43  64 bit AE  12.2.1.5 From AE, send a simple Comp to Media encoder Boom....Screen Flashes to black - m

  • Photoshop Elements 6.0 "updating'

    Everytime I open Photoshop Elements 6.0 it goes into an 'updating'  process which takes about 10 minutes and I can't do anything else until it is done. How can I stop this from happening?

  • HP USV R5500 XR doesn't show the HP Power Manager screen

    Hi folks, I'm working on following problem. A HP USV R5500 XR connected to a HP ProLiant ML350 G3 with OS MS Windows Server 2003 SP2 and HP Power Manager 4.2 is not showing anymore the HP Power Manager sreen. In the task bar down right there is the b

  • Report error ORA-00936 (correction) urgent

    I wrote a quey select cardno,name,incharge,phone,fax,email from agreement ORDER BY &SORT; and getting an erro ora-00936 missing expression, why this error is shown, i want to make a lexical paramater , and want to give end user the option to choose f

  • Problem Facing while analyzing Dim/Fact Table % using RSRV

    Hi All, When we analyzing the infocube in RSRV to see percentage of Dimension tables, system is showing 0% for all the dimensions and also for Fact tables. But data is existing in fact table of infocube and also in dimensions tables, when we see in S