Login prompt appearing when opening Excel Files - SharePoint 2010 SP1 - Office 2007

hi,
i have 2 sites on the same server, 1 at Port 80 and 1 at port 8300
https://contoso.com
https://contoso.com:8300
Both are under same AD and credentials.
But when users on 8300 port site, tries to open office files such as Word or Excel.
In read only mode, login credentials screen comes atleast 3 times again and again, although users are using same and correct credentials
but when clicked as edit mode, then file just opens.
I have saves their credentials locally using credentials vault under user accounts.
while suggestions on this page were already there:
http://sharepoint.licomputersource.com/2011/04/sharepoint-2010-prompts-for-credentials-when-opening-office-documents/
I have added https under Excel trusted File Locations under CA
I have correct AAM mapping under CA.
Please guide how to fix this. Thank you
Server: Sharepoint 2010 SP1
End Users: Office 2007 and Office 2010

Hi,
For Login prompt appearing, please refer to:
http://support.microsoft.com/kb/943280. also, please make sure you have already add this site into trusted sites zone in IE since after this settings, you will not get the read only/edit popup windows. you can change different computers to test
to check if the office settings has some special. in addition, please keep one version of office product.
For he excel files open in browser and then have a option to open in Excel, please go to library settings > advanced settings > Opening Documents in the Browser to check if both sites have the same settings. also, maybe you miss click the open in word/
open in excel button after open in brwser.
Regards,
Seven

Similar Messages

  • When Opening Excel file, there is a message

    Dear BPC Experts:
       When I open excel files in BPC NW 7.0, there is a warning message saying "Programmatic access to Visual Project in not trusted"
    Does anyone have suggestion for this message? Thanks in advance.
    -Fred
    Edited by: Fred Cheng on Jul 22, 2009 10:47 AM

    From MS Excel 2003 goto Tools > Macro > Trusted Publishers > check on the option Trust access to Visual Basic Project.  From the Security Level tab - click on the Medium option.
    From MS Excel 2007 click on Office button in the top-left corner, then click on the Excel options from the pop-up window.  Click on the Trust Center option > Trust Center Settings > Check on the option Trust access to the VBA project object model.  Also check the option Disable all macros except digitally signed macros.
    Best regards,
    [Jeffrey Holdeman|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/jeffrey+holdeman]
    SAP BusinessObjects
    Enterprise Performance Management
    Regional Implementation Group

  • Microsoft Word Hangs When Opening Document From SharePoint 2010 Document Library

    I am running into an issue where Word hangs when opening certain files from a document library.  When the issue occurs, Word opens and hangs at the Downloading <Doc URL> stage.  I have tried disabling the SharePoint plugins in IE and that
    makes no difference.  I can download a local copy of the file and open in just fine.  The file in questions exists in a separate document library where it can be opened just fine (The file was copied to the library where the issue is occurring by
    a Workflow).  The issue also has only occurred on .docx files and not .doc, however, not all docx files are having the issue.
    Does anyone have any thoughts on what might be causing this?
    Thanks.

    Hi,
    According to your post, my understanding is that when you opened a certain files from a document library, it hanged at the downloading stage.
    I tried to reproduce the issue, after coping by a workflow, the .docx files opened well in my environment.
    Did the issue occur in other documents libraries? You can copy the files to a new documents library by workflow, then check whether it works.
    For more details we also can check the SharePoint ULS logs.
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\LOGS
    Have you check your IE settings (Tools->options->connections->LAN settings->uncheck Automatically detect settings).
    Please also use fidder tools to detect the process. You can download it by the following link.
    http://fiddler2.com/
    Thanks & Regards,
    Jason
    Jason Guo
    TechNet Community Support

  • "Open method of Workbooks class failed" when opening Excel file via Internet Explorer

    (apologies, I posted this first to the general Office 2010 forum, but then realized this was probably a better spot to post)
    We have an Excel COM add-in installed on users' PCs.  This add-in responds to workbook open events by opening a particular XLA file (also deployed to the PC) to make certain features available.  This process works flawlessly when Excel files are
    opened locally - but when a user attempts to open an Excel file from an IE link, we get the following error: "Open method of Workbooks class failed".  This is happening on the line that is trying to open the XLA file.  This only happens
    when launching an Excel link from IE - works fine in Chrome or Firefox.
    I have found several posts on this topic, but no solutions:
    1. This post (https://social.msdn.microsoft.com/forums/office/en-US/73c96005-84af-4648-b103-32b677205be3/open-method-of-workbooks-class-failed)
    is the closest to our problem.  In this case, the "answer" was that the user may not have access to the 2nd workbook being opened.  But in our case, we're opening an XLA that is on the local machine, and I've confirmed that it is not
    corrupt and accessible (read & write, just in case!) to Everyone.
    2. This (very old) post (http://www.pcreview.co.uk/forums/open-method-workbooks-fails-excel-hosted-ie-t965608.html)
    seems similar, but is talking about opening Excel inside of IE.  This is not what we're doing - the link is supposed to (and does) open Excel outside of IE.  Interestingly, Excel.exe is being launched with the "-embedded" flag, even
    though it isn't running in the IE window.  When launching Excel by opening the file locally, Excel.exe is run with the "/dde" flag instead.  Clearly the "-embedded" mode is what is causing the problem.  I could change the
    links on the web page to use some JavaScript to open Excel differently... unfortunately, the links are actually generated by SharePoint (the Excel files are in a SP repository), so this is not really an option.
    3. This Microsoft KB article (http://support.microsoft.com/kb/268016) talks about problems opening an XLA directly from IE... but this is the case of a link pointing
    directly to an XLA file, not opening a regular workbook that in turn opens an XLA, as is my case.  In fact, this article specifically points out in the "More Information" section that "End users do not normally open XLAs; instead they open
    an XLS that (if needed) loads one or more XLAs during startup." ==> precisely what I'm trying to do that is giving me the error!
    I've replicated the situation with a very simple COM add-in (created in VS2010 using VB.Net) and a very simple XLA file (does nothing, just pops up a message in auto_open).  For anyone wanting to try it out, here is the exact test case:
    1. In Excel, create a simple XLA file containing only the following code, and save it in C:\TEMP\dummy.xla:
    Sub Auto_Open()
    MsgBox "Auto Open fired"
    End Sub
    2. In Visual Studio, create a new Excel 2010 Add-In.  I created mine via Visual Basic, but I doubt the choice of language matters.  Place the following code in ThisAddin.vb:
    Public Class ThisAddIn
    Private Sub ThisAddIn_Startup(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Startup
    AddHandler Me.Application.WorkbookOpen, AddressOf Application_WorkbookOpen
    End Sub
    Private Sub ThisAddIn_Shutdown(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Shutdown
    End Sub
    Sub Application_WorkbookOpen(ByVal workbook As Excel.Workbook)
    On Error GoTo ErrHandler
    If (Not workbook.Name.Contains("dummy.xla")) Then
    MsgBox("Workbook open")
    Application.Workbooks.Open("C:\temp\dummy.xla")
    Application.Workbooks("dummy.xla").RunAutoMacros(Excel.XlRunAutoMacro.xlAutoOpen)
    End If
    Exit Sub
    ErrHandler:
    MsgBox(Err.Description)
    End Sub
    End Class
    3. Build & publish this add-in and install it on the same machine as the XLA created in step 1.
    4. Create and save an empty Excel workbook (I called mine WayneTest1.xlsx) - save it locally (on your desktop), and put a copy somewhere on your web server (I put mine directly in c:\inetpub).
    5. Create an HTML file with a link to that workbook, saving it to the same web server location - here is mine:
    <html>
    <body>
    <a href="WayneTest1.xlsx">Link to Excel file</a>
    </body>
    </html>
    6. Double click the workbook on your desktop (from step 4) - opens fine, I get the "workbook open" message, following by the "Auto Open fired" message.
    7. In Internet Explorer, navigate to the HTML file specified in step 5 and click on the link - when prompted, select "Open" - I get the "workbook open" message, following by the error message "Open method of Workbooks class failed".
    Here are a few things I've ruled out / tried so far:
    - Unchecked all the "Protected View" settings in Excel, made no difference
    - Unchecked all the "File block settings" in Excel, made no difference
    - Made sure dummy.xla was open for read & write to Everyone
    - Made sure the web page was in Trusted sites and set the security level to Low for those sites in IE
    - Tried making the local desktop file (step 6) readonly, made no difference (i.e. launching it locally still worked fine)
    - Tried using Excel 2013 - made no difference
    Any ideas / suggestions?

    Hello Wayne,
    Apologies for the delay.
    I went through your post and tried to reproduce the issue. I was able to reproduce it. Based
    on its complexity and as it requires more in-depth analysis, your question falls into the paid support category which requires a more in-depth level of support.
    Please visit the below link to see the various paid support options that are
    available to better meet your needs. http://support.microsoft.com/default.aspx?id=fh;en-us;offerprophone
    Thanks,
    Anush

  • Problems appearing when exporting excel file into numbers file

    Hello,
    I have a Problem, need HELP!!
    I have an excel file with graphics, and data are written on graphs: these data are percentages. When I export my excel file on numbers (becomes therefore a numbers file), my problem appears: When I have for example 24% on a graph, it becomes 0.24 and I can't find the way to write it 24% again.
    Also I have a problem with graphics titles: when I export the excel file into numbers, graphics title are not correctly centered anymore and I cannot find the way to fix them correctly...
    Thanks a lot!!!!

    vassi44 wrote:
    I have an excel file with graphics, and data are written on graphs: these data are percentages. When I export my excel file on numbers (becomes therefore a numbers file), my problem appears: When I have for example 24% on a graph, it becomes 0.24 and I can't find the way to write it 24% again.
    It seems that only sectorial charts may display percent.
    Also I have a problem with graphics titles: when I export the excel file into numbers, graphics title are not correctly centered anymore and I cannot find the way to fix them correctly...
    Sounds as if you are in cases where the charts are imported as a single graphic block, not as different components.
    Maybe you will find explanation in:
    http://discussions.apple.com/thread.jspa?threadID=1392586&tstart=0
    Yvan KOENIG (from FRANCE mercredi 13 février 2008 13:08:05)

  • Get different format error when opening excel file

    Hi,
    In 10g form, I use CLIENT_OLE2 to generate an excel file on the client machine. Every time, I open the excel file, I get the error message, 'The file you are trying to open, 'my1.xls', is in a different format than specified by the file extension....'. However, I still can open the excel file. I am using excel 2007.
    Could somebody please explain what the problem is? How should I solve this problem?
    Thanks for your help.
    neemin

    I don't know that off the top of my head. When I have developed OLE code in Forms I found it very useful to make a Excel macro that did what I wanted to accomplish and the translate that to OLE code in Forms.
    I encourage you to create a new forum entry for this second issue. Maybe someone else has done it and can give you a quick answer.

  • "File Now Available" when opening Excel File

    When I open an excel file from using the OpenFileDialog VB, there is a bit of a delay.  After a few seconds a dialog box pops up saying:
    "File Now Available"
    This has two buttons "Read-Write" and "Cancel"
    1) How do turn the alerts off and have it default to Read Write?
    2) The delay in opening can cause issues as the user will not know that there is in fact a delay.  The user may then proceed through my form and press the OK button which will cause an error.  How do I show a status bar to alert the user that there is some Excel process running in the background (i.e. slowling opening the file) when using the OpenFileDialog? Worse case scenario I can set the enable property of the OK button to False until the file is open. 
    Thanks
    EM

    Two thougths -
    Use this:
    Private Function IsFileOpen(strFullFilePath As String) As Boolean
    'http://www.xcelfiles.com/IsFileOpen.html
    'Check if File is Open.  Works for Excel files, but not text files.
        Dim hdlFile As Long
        'Error is generated if you try opening a File for ReadWrite lock >> MUST BE OPEN!
        On Error GoTo errsub:
        hdlFile = FreeFile
        Open strFullFilePath For Random Access Read Write Lock Read Write As hdlFile
        IsFileOpen = False
        Close hdlFile
        Exit Function
    errsub: 'Someone has file open
        IsFileOpen = True
        Close hdlFile
    End Function
    Or just access the Excel file without "opening it" at all using OLE DB (use SQL to modify it) or ExecuteExcel4Macro.
    Cheers

  • [Converted] appears when opening CS2 files

    Our office uses InDesign CS2 v.4.0.5 on Windows XP Professional SP3, and we're having a problem with one computer. When we attempt to open any InDesign documents on it, the pages open as "FileName.indd @ 100% [Converted]" and then bring up a Save As... dialogue when we try to save them. It's acting like it's a different version of InDesign altogether, but it claims to be CS2 v.4.0.5 like everyone else's.
    Someone used to use that computer daily, and it didn't have any problems then, and it hasn't been updated as far as I know. I'd avoid using it now, but we've got a test station set up there for an install of a program tied into InDesign.
    Should we just reinstall and see if that fixes the problem, or is there something else going on?
    Thanks!

    The converted tag is only appended, as far as I know, when opening in a newer version, or possibly when opening a Pagemaker or Quark file (which I seldom to never do anymore). This should not happen when opening files from the same version but a different dot release update.
    Presuming you are correct and that machine really i s running CS2, it sounds like you 've found some older files that haven't been updated yet, but here's waht you can do to find out. On Windows, oven the Help Menu and hold the Ctrl key while you click on About InDesign. On mack it's the Cmd key, and I can never remember if it's under the InDesign Menu or the Help menu, but you want the About ID item.
    You should see a very detailed dialog with a complete version number including the build in teh upper left corner, lots of inforamtion about plugins and such, and in the lower left is a complete file save history, including versions and platforms and whtehr it was opened as a conversion from another app.

  • Type Kit- Why does a dialog box appear when opening a file?

    Type Kit- Why does a dialog box appear every time I open a file- asking to substitute fonts that I've had working for years. Also, what is that pink box around the type- they are not missing fonts.

    Which version?- Latest Creative Cloud Type Kit
    Which system?- Mac OS 10.10.1, iMac 7i
    Where does the file come from? File is an Adobe Illustrator CC
    Which fonts?- Any and all fonts that was used in the .ai file which I have been using for years.
    Do you use font management? Which one? Mac Font Book
    Are you really sure that your fonts are properly installed? Yes and verified.    
    Did it ever work? Yes, Ever since I opened Font Kit on Creative Cloud I get a window stating that the fonts in an existing file are missing and do I want to substitute.
    Did you just upgrade?- Apps always upgraded.
    Did you change systems?- Ever since I opened Font Kit on Creative Cloud
    The PINK box around the type, I believe, indicates a missing font- but they are not missing and I'm sure as hell not going to let Type Kit control MY FONTS.  How do I turn it off as the pink box is intruding with the design composition???
    SEE Sumit Singh’s reply- worked for the pink highlight. I have to see about the dialog box thing- I will let you know.

  • Excel 2010 error when opening excel file

    Getting error "excel can not open the file xlsx because the file format or extension is not valid"

    Hi,
    Based on the error message you provided, this file may have been saved as an Excel binary workbook. However, the workbook has an .xlsx extension that is appended to the file.
    Try to change the file name from ".xlsx" to ".xlsb" or ".xls" to check the result.
    One other possible cause is the file is corrupted, open Excel and click File -> Open -> Browse to the file location, select the file, and choose "Open and Repair", check if this helps in this scenario:
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.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]

  • How do I disable Check out dialog when opening Documents from SharePoint 2010

    Hi
    When I open a pdf document form a SharePoint Server 2010 in the client application (Adobe Reader X) I'm always promted to check out the document to be able to edit it. However in most cases I just want to view the document and the promt is a hinderance for most of the users. I can think of two possible solutions but I can get either of them done:
    1. Disable the check out promt in Acrobad Reader
    2. Make sure documents are always opened in the Browser (not in client application)
    We configured everything right form the SharePoint point of view. What do I need to configure to achive either of the above things in Acrobat Reader?
    Lucas

    I'm still looking for an answer to this post. Any ideas?

  • Authentication prompt issue when opening an office file in a document library with read permission for domain users

    An user as part of the domain users tries to open an office file from a document library but he got an authentication prompt asking him to authenticate. Domain users has only access to this library and not to the whole site. This uses to work in SharePoint
    2007 without any problem but not in SharePoint 2013, we didn't have a workflow on SP2007.
    Domain users has read access to only this document library in the site, but he shouldn't get an authentication prompt since he is part of the domain users and he is not trying to modify the document, he can open the document but gets two prompts, he can't
    also see the list using explorer view since nothings appears using the explorer view.
    Now, when opening the file, we can see..Updating Workflow Status, but we don't have any workflow working on this site or library, event any feature related to workflow.
    If we go to the event viewer in the server, we find this information,
    I also checked this thread but I couldn't find this scenario.
    https://social.technet.microsoft.com/Forums/sharepoint/en-US/91bc770b-bb70-4885-a4ad-a243edb88753/event-id-8026-workflow-soap-getworkflowdataforitem-failed-doc-library-no-workflow?forum=sharepointgeneralprevious
    I also created another list with the same permissions and using other office files but got the same behavior.
    Now, we have migrated this site from SP2007 to SP2013.
    Any ideas?

    OK, I am going to throw out a lot of ideas here so hopefully they get you closer to a diagnosis. Hang on :)
    Does it happen to work for some users but not others? If so, try logging in on the "good" computer with the "bad" username. This will tell you if the problem is related to the end-user's system. Also, once the user downloads a document
    successfully can they open and work on it in Word? Also, does the document library have any custom content types associated with it or does it just use 'Document'?
    I notice that there are other folks on the web that have run into this same problem and the similarity seems to be that they are either on SharePoint 2007 or have upgraded from 2007. Did this doc library start out as a 2007 library?
    What you might want to do is this: Make a site collection from scratch in 2013 (or find one that you know was created in 2013). Choose team site (or whatever you want) for the root web and set up the security the same way you have it on the malfunctioning
    library. Now, use windows explorer to copy and paste some of the documents to the new location. Be sure you recreate any needed content types. Now test it from the troubled user's computer.
    I'm thinking there may be something that is different about the library since it was migrated through various versions and updates since 2007. I've sometimes found that there can be problems (especially with user profiles but that's a different story) with
    things that go through this evolution.

  • Opening an Excel 2003 file in Office 2010 Universal Data Connection error when opening the file from a domain.

    Hi.
    One of my users are having  problem with old accounting files in Excel 2003 when opening Excel 2010.
    The user experience that linked information is not being updated properly.
    And suspects that it something do with Universal Data Connection .
    How can an Excel 2003 spread sheet be converted to Excel 2010 spread sheet and still contain active links?
    When the user is opening and converting the file as mention in your suggestion, on the common share on a common domain, the links "breaks".
    we are not using SharePoint on our domain.
    But when doing it on a local machine, the links does not "breaks".
    Looking forward to get solved to this problem.
    Thank you in advance.
    Rgds

    it sounds link, the links changed from relative paths to absolute path. You need to use absolute path in original file.
    KR

  • Excel crashing when opening a file in safari

    I have a user who when they go through sharepoint 2010 and open an Excel file through Sharepoint have the application (excel) crash on them. They are on a mac as well. 
    Any thoughts as to why this happens and also a fix? 

    Hello,
    It seems this is compatibility and plug-in issue with browser. However i never prefer safari for sharepoint site so i may not be able to help you much. I have one good article link about SP site and safari.
    http://blogs.msdn.com/b/opal/archive/2010/11/13/sharepoint-2010-on-a-mac-with-office-for-mac-2011.aspx
    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

  • Can't open Excel files from Sharepoint 2013

    I am having an issue with opening Excel files from SharePoint 2013. If I click on an excel file it comes up with the error below.
    If I click Try again I get the message below also:
    If I try to open Word or PDF files they open correctly in the appropriate client and I have the option of checking them out and editing them. Any ideas why this would only be happening to Excel files?
    Thanks,
    Shaun

    Hi Shaun,
    I understand that the Excel files cannot be opened from SharePoint in Microsoft Excel.
    Can these files be viewed in the browser?
    I recommend to download a copy of the files with issue and then open them in Excel to see if the issue still occurs.
    If above cannot work, I recommend to repair Office.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

Maybe you are looking for

  • Select-option in ABAP objects

    Hi Guys,            I need a small help from you. I want to know how to populate the value from select-option to abap object. Please help me, it is very important

  • Time Machine & external hard drives not used daily

    I have a question about Time Machine and external hard drives that I used for storing digital files. I do not need to turn on these drives every day. Or even every week. Is Time Machine going to "forget" them (delete their files from backups) if I do

  • Error 50410 No More Space in the Buffer

    While running my VI I keep getting an error message saying Error 50410 occurred at DAQmx Stop Task.  Possible Reasons: There was no more space in the buffer when new data was written.  The oldest unread data in the buffer was lost as a result. Occasi

  • MULTIPLE Gatewqay Issue

    All, I am still facing issues with multiple gateway. This is what I am doing. I have a populated Arry of object called insPdrObjectList which contains object of type insPdrInfo in my multiple (split) I do the followingh for each pdrObj in insPdrInfoL

  • Error when signing in adobe export

    When signing in, a message pops up." An error occured whilst signing in". What could that mean? It is not possible to use the adobe  export pdf ( e.g. to excel or word)