Opening xls or doc file with MS Office sets user permissions to no access.

We have a problem with MS Office and permissions. Basically, opening an MSOffice file removes that user's permissions, not just for that file, but for the entire fileserver. Going back to the server as Admin and resetting the permissions does not take effect immediately, but at some seemingly random point later that same day. The Win XP users also find themselves locked out of using the files sometimes, when one user opens the file the permissions seem to change to give that user ownership and others only Read Only access. I have not experienced this problem, but I do not use MS Office.
We run a mixed PC and Mac office. We have a Mac miniserver with Snow Leopard Server. Client computers use Win XP, or OS X Leopard 10.5.8. Previously we were running the same clients from a G5 PowerMac running Tiger server. This also had problems with permissions changing themselves after opening MSOffice for Mac 2004 files, but nothing quite as bad as this.
We also have had problems with MSOffice crashing when for some reason the sharepoints disconnected themselves.
Any suggestions please? This is the kind of issue that will force a change away from Mac... sadly I will be in a minority if I cannot find a fix.
TIA
Message was edited by: Basilisk

Further Info:
We appear to have both oplock and Strict Locking enabled, as well as AFP and SMP in operation. Of these two protocols, we have to keep SMB so the PCs can access the files; AFP we could give up if necessary, although that makes connection times slow on the Macs.
I read that if we enable both AFP and SMB our data could be corrupted, but it didn't say what would happen to file permissions, nor how we could prevent multiple users accessing the same file simultaneously if we switched the locking off.

Similar Messages

  • Cannot open .xls or .doc files

    I have office 2008 updated to the latest version operating on a mac osx 10.5.8. I cannot open xls or doc files. I get the messages "file cannot be opened" and "file blocked".
    Have tried
    - opening via right click and through the programs themselves
    - installing updates
    Any suggestions welcome.

    Hello,
    This forum is for troubleshooting Apple Software Update for Windows, a software package for Windows designed to update Apple products that run on Windows, and not related to Microsoft Office. Please post Office related questions on Microsoft's own forums for their Mac products.
    http://www.officeformac.com/productforums
    Good luck...

  • Slow access when opening XLS or DOC files over the network but XLSX and DOCX files are fast

    I am working with a small office that has 3 Windows 7 Pro PC's.  Two of these PC's have shared folders that hold Word and Excel files and all 3 of the PC's have drives mapped to these shared folders.  When browsing these mapped drive in Windows
    Explorer  and double-clicking a file 1 of the computers takes about 30-50 seconds to open any file with a .doc or .xls extension.  It opens .docx and .xlsx files in a couple seconds though, it also open PDF files very quickly.  The other 2 PC's
    have no trouble any any type of file.  I have tried many things over the last couple weeks to get this fixed.  I have added the file locations as 'trusted locations' in the Trust Center and added a couple Registry tweaks to the SMB/ lanman workstation
    and server. 2 PC's are running Office Pro 2010 SP2 and the other is Office Pro 2013, the one having the slow access is running Office 2010.  Has anyone come across this problem and have any advice??

    Try: 
    Open My Computer.
    Open the Tools menu and choose Folder Options...
    Select the File Types tab.
    Select the extension (for example DOC, or XLS) of the file that is slow to open.
    In the Details section, click [Advanced], and another dialog box will open. 
    In the Actions section, click Open then click [Edit...], and another dialog box will open.
    http://windowssecrets.com/forums/showthread.php/149672-10-9-2012-Updates-and-very-slow-opening-of-Office-files
    KR

  • Pages v4.0 (727) can't open or save .doc files

    Hello everyone,
    for a while now I haven't been able to open or save .doc files with Pages. When trying to open a .doc file I get the following message:
    "The document "example.doc” couldn’t be opened."
    I have tried the following to solve the problem:
    1. run Software Update, which told me there were no updates available
    2. checked my applications folder to see if Pages was in the iWork '09 folder in order for SU to be able to detect updates (it was)
    3. reinstalled Pages from the iWork disc and run SU (which again couldn't detect any updates)
    4. deleted the com.apple.iWork.Pages.plist file from the Preferences folder in the user library on the Macintosh HD
    I'd be very grateful if someone could point me towards a solution, I've spent an age on google looking for one and haven't found anything useful so far.
    Thanks in advance
    XtremeFlux

    Are you still on MacOs 10.6.1? You should update it to 10.6.8. Use the Combo update here if the Software Update check doesn't work (which it should) http://support.apple.com/kb/DL1399
    And here you can find the iWork 09 updates. Software Updates should find them!
    iWork 9.0.4
    iLife Support 9.0.4
    You need both.

  • Opening .doc files with wrong program

    Hi *,
    first I've installed open office. A few month later I installed micorsoft office. After that I converted all office files. Everything was working fine. Now my mac forgot to open .doc files with ms word, he chooses oo word. I do'nt have these problems with .xls files.
    Where are the global settings that I can tell my mac to open .doc files with ms word (I will not use "open with" each time;-)
    Thanks in advance
    Michael
    Message was edited by: MichaelLudt

    Select the file. Do a "Get-Info" from the File menu. (command-I). In the drop down menu "open with" select the program and then confirm you want all files like these to open with that program.

  • Why can I no longer open .doc files with Word2011

    I can no longer open .doc files with Word 2011.  .docx files are not a problem.  Everything stops responding as soon as I try to open a .doc file and I have to do a manual reboot (by holding the power button down).  This seems to coincide with my update to Mavericks OSX.  I have Word version 14.3.9.
    A colleague of mine is having the exact same problem. 
    I tried repairing my disk permissions but this didn't help.
    Please advise.

    You may want to ask your Office for Mac question in the Office for Mac forums: http://answers.microsoft.com/en-us/mac?auth=1

  • How to open a ".doc" file with ms word directly with this servlet?

    Here is a servlet for opening a word or a excel or a powerpoint or a pdf file,but I don't want the "file download" dialog appear,eg:when i using this servlet to open a word file,i want open the ".doc" file with ms word directly,not in IE or save.
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.*;
    public class OpenWord extends HttpServlet {
    public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    doPost(request,response);
    public void doPost(HttpServletRequest req,HttpServletResponse res) throws ServletException, IOException {
    String strFileName = req.getParameter("filename");
    int len = 0;
    String strFileType1 = "application/msword";
    String strFileType2 = "application/vnd.ms-excel";
    String strFileType3 = "application/vnd.ms-powerpoint";
    String strFileType4 = "application/pdf";
    String strFileType = "";
    if(strFileName != null) {
         len = strFileName.length();
         if(strFileName.substring(len-3,len).equalsIgnoreCase("doc")) {
              strFileType = strFileType1;
         } else if(strFileName.substring(len-3,len).equalsIgnoreCase("xls")) {
              strFileType = strFileType2;
         } else if(strFileName.substring(len-3,len).equalsIgnoreCase("ppt")) {
              strFileType = strFileType3;
         } else if(strFileName.substring(len-3,len).equalsIgnoreCase("pdf")) {
              strFileType = strFileType4;
         } else {
              strFileType = strFileType1;
    if(strFileName != null) {
         ServletOutputStream out = res.getOutputStream();
         res.setContentType(strFileType); // MIME type for word doc
    //if uncomment below sentence,the "file download" dialog will appear twice.
         //res.setHeader("Content-disposition","attachment;filename="+strFileName);
         BufferedInputStream bis = null;
         BufferedOutputStream bos = null;
         String path = "d:\\"; //put a word or a excel file here,eg a.doc
         try {
         File f = new File(path.concat(strFileName));
         FileInputStream fis = new FileInputStream(f);
         bis = new BufferedInputStream(fis);
         bos = new BufferedOutputStream(out);
         byte[] buff = new byte[2048];
         int bytesRead;
         while(-1 != (bytesRead = bis.read(buff, 0, buff.length))) {
         bos.write(buff, 0, bytesRead);
         } catch(NullPointerException e) {
         System.out.println ( "NullPointerException." );
         throw e;
         } catch(FileNotFoundException e) {
         System.out.println ( "FileNotFoundException." );
         throw e;
         } catch(final IOException e) {
         System.out.println ( "IOException." );
         throw e;
         } finally {
         if (bis != null)
         bis.close();
         if (bos != null)
         bos.close();

    Hello!
    Does some one of you had open a MS word file (.doc) in Java search for a token like [aToken] replace it with another text and then feed it to a stream of save it?
    I want to build a servlet to open a well formatted and rich on media (images) ms word document search for tokens and replace them with information form a web form.
    Any Ideas?
    Thank you in advanced.

  • How to associate 1997-2003 Word doc files with Word 2010?

    Hi
    I am surprised not to be able to find out how to associate word 1997-2003 Word files with Wrod 2010. The object is to have Word 2010 open the document when I click on the document. Many of my Word 1997-2003 documents were created using Word 2010.
    When I try to use the associations function in Windows 7 I cannot find the Word program. Checking "Properties" on the Word Icon leads to a program called "CVH.EXE" which does nothing when I try to open doc files with it.
    Thank you.
    David
    lifeform23

    Hi,
    From your description , I understand that you want to open the prior Word doc files  in Word 2010.
    You can refer to the KB article that resolve this issue:
    How to open and save Word, Excel, and PowerPoint 2007 or 2010 files in earlier versions of Office programs
    http://support.microsoft.com/kb/924074
    Sincerely,
    Harry 

  • How to display the PPT, PDF, XL, DOC files with in the Windows store app?

    Hi,
    I would like to display the PPT, PDF, XL, DOC files with in the Windows store app? is there any controls provided by Microsoft to view these files with in the app?
    Or
    Any workaround to achieve the desired functionality?
    Kindly provide your inputs if any one has.
    Regards
    Prasad

    Hi Prasad,
    As I know currently there is no in-build functionality to display the PPT, XLS or DOC file directly on the Windows Store App, but you can always open these files by
    Launcher class
    However a good news is we can display PDF on Windows Store App by
    Windows.Data.Pdf class, see this for more information:
    https://code.msdn.microsoft.com/windowsapps/PDF-viewer-showcase-sample-39ced1e8/
    --James
    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.

  • The iphone 4 opens jpg, pdf, mov, etc attachments, but won't give me a quick look or open xls or xlsx files.  What am I doning wrong or doesn't that capability exist?

    Nevermind.  I have the answer.  The iPhone 4 opens xls, xlsx, doc and docx files too.  The Excel file I was trying to open was a password and write protected document.  Sorry for the needless inquiry.
    Jim

    Nevermind.  I have the answer.  The iPhone 4 opens xls, xlsx, doc and docx files too.  The Excel file I was trying to open was a password and write protected document.  Sorry for the needless inquiry.
    Jim

  • I want to open a domain.site2 file outside the default folder (User/Library/Application Support/iWeb) with iWeb11, but iWeb only opens the domain file in the default folder. If I delete the default domain file, iWeb wants to create a new site. Help please

    I want to open a domain.site2 file outside the default folder (User/Library/Application Support/iWeb) with iWeb11, but iWeb only opens the domain file in the default folder. If I delete the default domain file, iWeb wants to create a new site. Does anyone have the same problem or know how to fix it?

    In Lion the Finder folder is now invisible.  To make it permanetely visible enter the following in the Terminal applicaiton window: chflags nohidden ~/Library and hit the Enter button - 10.7: Un-hide the User Library folder.
    For opening your domain file in Lion for the first time or to switch between multiple domain files  Cyclosaurus has provided us with the following script that you can make into an Applescript application with Script Editor. Open Script Editor, copy and paste the script below into Script Editor's window and save as an applicaiton.
    Just launch the applicaiton, find and select the domain file you want to open and it will open with iWeb. It modifies the iWeb preference file each time it's launched so one can switch between domain files.
    do shell script "/usr/bin/defaults write com.apple.iWeb iWebDefaultsDocumentPath -boolean no"delay 1
    tell application "iWeb" to activate
    OT

  • AOL mail doesn't send .doc-files with Firefox

    When using Firefox AOL Mail doesn't send .doc-files. Instead a corrupted file with a different size is sent. Any other file type works aswell as sending .doc-files with other browsers works...

    I'm getting a similar problem. Snow Leopard Mail for me seems to be choking on large attachments - sending them, forwarding them, or even moving them from one IMAP folder to another.
    My mails are getting through, but it takes a long time and they are dragging the whole system to a crawl in the process.

  • Open a saved video file with imovie

    Can I open a video saved file with imovie?

    And how do you know that it is a PDF file if its extension is not .pdf? And there is a special subforum for the Android version of Reader:
    http://forums.adobe.com/community/adobe_reader_forums/android?view=discussions

  • When i open my Canon RAW-files with preview or transfer them to another program using preview they change to color despite the fact that they where all shot in B/W... How to change this?

    When i open my Canon RAW-files with preview or transfer them to another program using preview they change to color despite the fact that they where all shot in B/W... How to change this?

    I shoot only RAW - no JPEG-files except those visualizing the files on my memorycard or computer. I think i have to refine my question;
    1. I know there is possible to make B/W HDR-images.
    2. I know the best HDR images are based on RAW-files.
    3. When i transfer the images in question to a HDR software they change, so when i view them in the software (either Preview or the HDR software) they are suddenly viewed (and processed) in color.
    4. This never happend on my PC so i know it has to do  with either Finder or Preview.
    5. Do i have to make all my B/W HDR-images on the PC or is it a way for me to change how Finder/Preview show/alter my images?

  • Write the results script of results log pane to XLS or CSV file with VBA.

    Hi,
    How can I write the results script of results log pane to XLS or CSV file with VBA code or something? I tried so hard but i can't.
    Thanks

    MoGas,
    This is actually not a trivial process. You need to use the results object and code it to write to your file (it is described in the help files).
    e-Tester automatically saves the results log as a text file so you may just want to stick with that for simplicity.

Maybe you are looking for

  • How can I get spotlight in OSX Yosemite to search Firefox bookmarks?

    Spotlight searches Safari but not Firefox bookmarks. I can export to Safari but not a great work around. Thanks, DRE

  • Starting to make a chatting software

    hi ive taken chatting shoftware as a project of semister. im told to start with servelets and rmi these will help me in my project. any one can guide me more about this......

  • BLF/CallPickup/7960

    I have set up the BLF/Spped buttons on a 7960 with a 7914. Simple question is will the call pickup work on on the butoons that it is programmed for. I can not seem to get it to work. I can see status change of the phone and I have the correct icon on

  • How to activate a touchpad on my new macbook pro?

    hi guys, i just got my new macbook pro 2.9ghz, 8 ram, 750 gb. this is my first macbook pro so i'm kinda new to it. now lets get to the question: how to activate a touchpad? i mean, pointer moves well on a desktop. only problem is that i can not click

  • Render  not-editable item

    Hi , i use oracle forms 10g, win xp pack2 .. hi , how to render not-editable item(its value unchanged) when i press a boutton ?? Edited by: 979155 on 1 janv. 2013 16:27 Edited by: 979155 on 1 janv. 2013 18:43