Problems with Calendar Permissions

Hi There. I am having a problem with the Calendar of one user:
This user cannot share his calendar from OWA or Outlook, nor can I set then in Powershell. Even worse, I can't even view his calendar permissions in PowerShell. For all other folders there's no problem.
So for example, I can run:
get-mailboxfolderstatistics -identity user | select-object name
this proves to me there's a path of username:\calendar and it does exist. Then I can run:
get-mailboxfolderpermission username:\inbox
and this is fine. But if I run:
get-mailboxfolderpermission username:\calendar
I get this error:
"The operation couldn't be performed because object 'username:\calendar' couldn't be found on 'Microsoft.Exchange.Data.Storage.MailboxSession'"
I have to stress this is a medium sized deployment with 6 databases and 4000+ mailboxes. This is the ONLY mailbox (and specifically the only folder) to be displaying this behaviour.
Has anyone ever seen similar behaviour for a single folder for a single user before?

Hi,
Please right-click the Calendar folder for this mailbox in Outlook Online mode, and check the Permissions tab in the Properties. We need to check whether the name Default is listed there with permissions.
If the Default is missing in the permission list, please refer to Will’s suggestion to recreate the calendar folder with MFCMapi. If the permission list is normal for this mailbox, please move the problematic mailbox to another database to have a try.
Personal suggestion, please try the following command:
Get-MailboxFolderPermission -Identity Username:\Kalender
| FL
Regards,
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]
Winnie Liang
TechNet Community Support

Similar Messages

  • Problem with calendar on iMac

    Problem with calendar on iMac since downloading Mavericks and attempting to connect to icloud. Upon opening calendar a window opening stating 'moving calendars to server account' which has been going for days.
    please advise any possible solutions.
    Thanks

    Does this help?
    https://discussions.apple.com/message/23531400#23531400

  • Problem with file permissions

    Hello all,
    I am making a simple HttpServlet, which takes input
    from html page and saves in to a file, but I'm having a
    bit of a problem with file permissions.
    I'm getting the following exception
    java.security.AccessControlException: access denied (java.io.FilePermission ./data/result read)
         java.security.AccessControlContext.checkPermission(AccessControlContext.java:264)
         java.security.AccessController.checkPermission(AccessController.java:427)
         java.lang.SecurityManager.checkPermission(SecurityManager.java:532)
         java.lang.SecurityManager.checkRead(SecurityManager.java:871)
         java.io.File.exists(File.java:700)
         SyksyHTTPServlet.doPost(SyksyHTTPServlet.java:31)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:709)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         sun.reflect.GeneratedMethodAccessor52.invoke(Unknown Source)
         sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         java.lang.reflect.Method.invoke(Method.java:585)
         org.apache.catalina.security.SecurityUtil$1.run(SecurityUtil.java:243)
         java.security.AccessController.doPrivileged(Native Method)
         javax.security.auth.Subject.doAsPrivileged(Subject.java:517)
         org.apache.catalina.security.SecurityUtil.execute(SecurityUtil.java:275)
         org.apache.catalina.security.SecurityUtil.doAsPrivilege(SecurityUtil.java:161)The exception seems to occur when I'm trying to check whether the file already
    exists or not.
    The data directory has all permissions (read, write and execute) set for all users,
    and I have made an empty file called result inside the data directory for testing.
    This file has read and write permissions enabled for all users.
    Here's my code
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    import java.util.Enumeration;
    import java.util.List;
    import java.util.ArrayList;
    public class SyksyHTTPServlet extends HttpServlet
         public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
              int totalCount = 0;
              List list;
              String song = request.getParameter("song");
              PrintWriter out = response.getWriter();
              File file = new File("./data/result");
              if(file.exists())  // this is line 31, which seems to cause the exception
                   list = readFile(file);
              else
                   file.createNewFile();
                   list = new ArrayList();
              list.add(song);
              writeFile(file, list);
              for(int i = 0 ; i < list.size() ; i++)
                   out.println(list.get(i));
         public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
              doPost(request, response);
         private List readFile(File file)
              List list = null;
              try
                   FileInputStream fis = new FileInputStream(file);
                   ObjectInputStream ois = new ObjectInputStream(fis);
                   list = (ArrayList)ois.readObject();
                   ois.close();
              catch(Exception e)
                   e.printStackTrace();
              return list;
         private void writeFile(File file, List list)
              try
                   FileOutputStream fos = new FileOutputStream(file);
                   ObjectOutputStream oos = new ObjectOutputStream(fos);
                   oos.writeObject(list);
                   oos.flush();
                   oos.close();
              catch(Exception e)
                   e.printStackTrace();
    }I'm using Tomcat 5.5 on Ubuntu Linux, if that has anything to do with this.
    I'll appreciate all help.
    kari-matti

    Hello again.
    I'm still having problems with this. I made
    a simple servlet that reads from and writes
    to text file. The reading part work fine on my
    computer, but the writing doesn't, not even
    an exception is thrown if the file exists that
    I'm trying to write to. If I try to create a new
    file I'll get an exception about file permissions.
    I also asked a friend of mine to try this same
    servlet on his windows computer and it works
    as it should.
    Here's the code
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class ReadServlet extends HttpServlet
         public void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
              String s = "";
              PrintWriter out = response.getWriter();
              String docroot = getServletContext().getRealPath( "/" );
              out.println("docroot: "+docroot);
              File file = new File(docroot+"test.txt");
              if(file.exists())
                   s = readFile(file);
                   out.println(s);
              else
                   out.println("file not found");
                   //file.createNewFile();                    // causes exception
                   //out.println("new file created.");
              writeFile(file, "written by servlet");
              out.println("Now look in the file "+file.getPath());
              out.println("and see if it contains text 'written by servlet'");
         public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException
              doPost(request, response);
         private String readFile(File file)
              FileInputStream fis = null;
              BufferedInputStream bis = null;
              DataInputStream dis = null;
              String s = "";
              try
                   fis = new FileInputStream(file);
                   bis = new BufferedInputStream(fis);
                   dis = new DataInputStream(bis);
                   s = dis.readLine();
                   fis.close();
                   bis.close();
                   dis.close();
              catch(Exception e)
                   e.printStackTrace();
              return s;
         private void writeFile(File file, String s)
              FileOutputStream fos = null;
              BufferedOutputStream bos = null;
              DataOutputStream dos = null;
              try
                   fos = new FileOutputStream(file);
                   bos = new BufferedOutputStream(fos);
                   dos = new DataOutputStream(bos);
                   dos.writeChars(s);
                   fos.flush();
                   bos.flush();
                   dos.flush();
                   fos.close();
                   bos.close();
                   dos.close();
              catch(Exception e)
                   e.printStackTrace();
    }And if someone wants to test this servlet I can
    give a war package.
    Any advices?
    kari-matti

  • Master Plan - problem with calendar into Subproject

    If the
    save in the sub-project baseline
    and then connecting it to the
    master plan during the publication of
    the master plan, an error is returned
    "not found the appropriate calendar project............".
    The solution is to
    first connect the subproject to the master
    plan and only store in the
    sub-project baseline. Do you know why this is happening
    and whether Microsoft is going to fix it?
    Do you know when I may see the problem
    with calendars, which should be avoided?

    If the
    save in the sub-project baseline
    and then connecting it to the
    master plan during the publication of
    the master plan, an error is returned
    "not found the appropriate calendar project............".
    The solution is to
    first connect the subproject to the master
    plan and only store in the
    sub-project baseline. Do you know why this is happening
    and whether Microsoft is going to fix it?
    Do you know when I may see the problem
    with calendars, which should be avoided?

  • Having serious problems with calendar duplications, one birthday now showing 174 times on one day! Help!

    Having serious problems with calendar duplications, one birthday now showing 174 times on one day! Help!

    Having serious problems with calendar duplications, one birthday now showing 174 times on one day! Help!

  • Since updating my iPhones, iPad and MacBook Pro I'm having problems with Calendars...

    Since updating my iPhones, iPad and MacBook Pro I'm having problems with Calendars - I keep all the details of my work schedule on Calendars but since updating everything I am notified at 9 a.m. before each of my days off. Can someone please tell me how I can stop this? Also, how can I change that time (9a.m.) if I do want to be notified about something?
    Thanks.

    troubleshooting message http://support.apple.com/kb/ts2755
    Do you have MMS turn on in Settings?
    Are you provisioned by your carrier to use MMS?
    Lastly, give your phone carrier a call, as MMS is a carrier feature.

  • My iphone won't sync with outlook. Same problem with calendar entries

    contacts added to my iphone 4 won't sync with outlook 2003 running on windows 7. Same problem with calendar entries. 

    same here. Have you received any answers?

  • Problems with calendar on iCloud

    I am having problems with calendar event created on my IPhone 4S syncing to my IPad.

    Don't worry I've sorted it! I just had to turn off Reminders as well in iCloud. Calendar then worked fine, even when I turned Calendar and Reminders back on.

  • I have just changed my iCloud account and am now having serious problems with Calendar on my Macbook Pro. Any ideas?

    I decided to start using iCloud etc but discovered that my Apple ID doesn't actually exist (I was literally told this over the phone my an Apple Support worker) which is weird, as my email address for this Apple ID still exists. This is the first time I'd had any problems of this sort as I'd never had to use my Apple ID before. So anyway, I signed out of iCloud (i.e. signed out of my non-existant account) and signed in with my other, working, iCloud account which I've had absolutely no problems with whatsoever. All well and good.
    Before signing out of/deleting my old iCloud account I moved all my events in Calendar from "iCloud" to "On My Mac" so that I wouldn't lose the information when switching to my new account. No problems with this. However now that I am signed in on my new account, every time I open Calendar I receive the following two error messages:
    "Couldn't move your calendars to iCloud because an error occurred.
    Make sure you're connected to the Internet, and then try again."
    "The server responded with an error.
    Access to account "iCloud" is not permitted.
    The server responded:
    "403"
    to operation
    CalDAVMigrateToServerQueueableOperation."
    Note that with regards to the first one I am definitely connected to the internet. I have tried restarting my Macbook, have tried enabling/disabling Calendar in iCloud, nothing has worked. I always get these error messages. I have two options, "Try Again Now" or "Try Again Later", for the first message and "Try Again" or "OK" for the second. Pressing anything just results in the error messages just coming up again in a cyclic manner, after briefly trying to "Move calendars to server account". Sometimes a pop up also appears where it says "Upgrading calendars" with a progress bar but this freezes/never goes anywhere, and regardless of the outcome, I cannot access my information in Calendar. Note that behind these error messages etc I can see my events in Calendar but I cannot access the detailed information contained within them nor can I add any new information or essentially do anything in Calender. Sometimes Calendar crashes and I get a crash report.
    Sorry for this dense block of information but I have no idea what's going on so I'm just trying to give a clear account of the problems I'm facing. I really hope someone will be able to help me with this and I thank you in advance.
    Sam

    Don't worry I've sorted it! I just had to turn off Reminders as well in iCloud. Calendar then worked fine, even when I turned Calendar and Reminders back on.

  • Problem with Calendar and drag and drop a name to a Time spot with palm desktop. Full name does not appear only last name.

    Im having a problem with the palm desktop. When in “Contacts” and I list (LastName,First name) and then I move to the Calendar and drag and drop a name to a Time spot Only the LAST name of the Person appears. How can I fix this so that I can see there full name ?
    Also when If list (Company,Last Name) then go to calendar Some of my contacts are out of order but if I drag and drop them into the calendar day the full name appears. Is there any why of fixing this ? Or having it work properly ?
    Im running  XP pro
    Palm Desktop Version 4.1.4
    Post relates to: Treo 680 (Rogers)
    Message Edited by corrado on 07-21-2008 08:55 AM

    Any Idea how to fix the problem that I am getting when using the (Company,Last Name) and the contacts being out of order in the calander ? I have some last names starting with A then it goes to D then a B then a stack more A and none of then have a Company field filled out in them in them...
    Thanks for looking into that for me but it seems really stange to offer the option but not put in the first name in the calander when you drage the name over. I hope this is fixed in the future. Can anyony sugest another desktop platform I can use if I cant fix my problem with the   (Company,Last Name) problem?
    Post relates to: Treo 680 (Rogers)

  • ICloud WINDOWS 7 64 Bit sync problem with calendar of Outlook 2010

    I am using
    iPhone 4S (IOS5)
    iPad 1 (IOS5)
    PC (WINDOS 7 SR1 32 bit, Cor-2-duo) & Outlook 2010, 32 bit, at home
    PC (WINDOWS 7 SR1 64 bit, Intel i7) &  Outlook 2010 version 14.0.6106.5005 (32-Bit), in my office
    together with iCoud for syncing my contacts (about 500) and calenders (2 calenders, about 3.000 and 8.000 entries) with Outlook 2010
    The syncing works perfect for 1., 2. an 3., but I have severe problems with the 64bit PC:
    The iCloud operating pannel is only displayed after a fresh reset of the system. Two processes are running (iCloud.exe*32, iCloudServices.exe *32), the iCloud icon on the task bar is displayed.  Opening of the iCloud operating pannel fails by all means ( via icon, via network->icloud) etc. after Outlook 2010 has started once.
    After closing Outlook, a restart of Outlook is perfored but displays "loading data" till infinity. The task manager is required to shut down Outlook.
    After a fresh reset outlook starts (normal behavior) and displays the contacts (complete) and both calendars, but has only downloaded during set-up only about 7.000 entries of the 11.000 entries which are still displayed in the calendar of the  web interface of iCloud and are displayed nicely on iPhone, iPad and the 32bit PC. The sync of new calendar entries works perfect between all four systems.
    I have removed and reinstalled the iCloud operating panel sereal times, checked the Outlook pst file for errors -> no success.  
    Any suggestions how to overcome this problem?

    I had a similar problem back lst year with MobileMe and outlook. I had to uninstall outlook and MM control panel completely then reinstal MM THEN Outlook and then MM would download all 5 of my MM calendars into Outlook including all events
    do they stop at a certain date i remember seeing an option somewhere that specified how far back to sync appointments

  • Live Data / Problem with file permissions

    Just trying out an old version of Dreamweaver MX 2004. I am
    using my webhosting service for remote server/testing server
    duties. It is running PHP 4.3.10 and MySQL 3.23.58. I was able to
    set up the database connection and test-retrieve a recordset with
    no problems. In following the tutorial I found that Livedata
    wouldn't work, it just giving me a warning about file permissions
    being wrong. It turns out that when Dreamweaver creates a temporary
    file of the work-in-progress to upload to the remote server the
    file is created on the server with owner=rw, group=rw, world=r
    which explains why it won't run - group has to be set to group=r.
    The file is created on the fly and then immediately deleted by
    Dreamweaver so it is impossible to manually set the permission on
    the server and probably fairly pointless too.
    I tried just saving the file and previewing in the browser
    which again causes it to be uploaded to the remote server. The
    first time this resulted in the browser offering a file download
    box instead of running the page. The reason is - again - that
    Dreamweaver is setting the uploaded file permissions to include
    group=rw. If I manually set the permission for group to group=r it
    runs fine.
    It turns out that Dreamweaver is always setting the file
    permissions on file uploads (checked php and html) to the
    remote/testing server to include group=rw. Once I set it manually
    on the remote/testing server to group=r for a php file everything
    is fine and subsequent uploads of the same file do not change it
    again.
    I checked with the webhosting company and their second-line
    have reported back to me that the default file permission they set
    on uploaded files includes group=r so it must be DW that is causing
    the problem by setting group=rw the first time. I confirmed this by
    using WS-FTP to upload the same file (renamed) to the same target
    directory and the permissions set were owner=rw, group=r, world=r.
    So
    Can anyone please tell me how to change the permissions DW
    sets on files written to a remote server because I have spent
    countless hours on it without success. From looking at other posts
    in this forum it could be that other users are hitting the same
    kind of problem with DW8

    Stop using Live Data with a hosting account. Set up PHP and
    MySQL locally on
    your machine. That is how it's supposed to work. You
    shouldn't test files on
    the fly on a host as you write them. Change your test account
    in DW to use
    the local server. Upload your files to your remote server
    after they are
    fully tested.
    Tom Muck
    http://www.tom-muck.com/
    "nigelssuk" <[email protected]> wrote in
    message
    news:[email protected]...
    > Just trying out an old version of Dreamweaver MX 2004. I
    am using my
    > webhosting
    > service for remote server/testing server duties. It is
    running PHP 4.3.10
    > and
    > MySQL 3.23.58. I was able to set up the database
    connection and
    > test-retrieve a
    > recordset with no problems. In following the tutorial I
    found that
    > Livedata
    > wouldn't work, it just giving me a warning about file
    permissions being
    > wrong.
    > It turns out that when Dreamweaver creates a temporary
    file of the
    > work-in-progress to upload to the remote server the file
    is created on the
    > server with owner=rw, group=rw, world=r which explains
    why it won't run -
    > group
    > has to be set to group=r. The file is created on the fly
    and then
    > immediately
    > deleted by Dreamweaver so it is impossible to manually
    set the permission
    > on
    > the server and probably fairly pointless too.
    >
    > I tried just saving the file and previewing in the
    browser which again
    > causes
    > it to be uploaded to the remote server. The first time
    this resulted in
    > the
    > browser offering a file download box instead of running
    the page. The
    > reason is
    > - again - that Dreamweaver is setting the uploaded file
    permissions to
    > include
    > group=rw. If I manually set the permission for group to
    group=r it runs
    > fine.
    >
    > It turns out that Dreamweaver is always setting the file
    permissions on
    > file
    > uploads (checked php and html) to the remote/testing
    server to include
    > group=rw. Once I set it manually on the remote/testing
    server to group=r
    > for a
    > php file everything is fine and subsequent uploads of
    the same file do not
    > change it again.
    >
    > I checked with the webhosting company and their
    second-line have reported
    > back
    > to me that the default file permission they set on
    uploaded files includes
    > group=r so it must be DW that is causing the problem by
    setting group=rw
    > the
    > first time. I confirmed this by using WS-FTP to upload
    the same file
    > (renamed)
    > to the same target directory and the permissions set
    were owner=rw,
    > group=r,
    > world=r.
    >
    > So
    >
    > Can anyone please tell me how to change the permissions
    DW sets on files
    > written to a remote server because I have spent
    countless hours on it
    > without
    > success. From looking at other posts in this forum it
    could be that other
    > users
    > are hitting the same kind of problem with DW8
    >

  • Problem with file permissions using Snow Lepord

    I'm having problems with file Sharing & Permissions using Snow Lepord.
    When I save any new file it only has 'Read & Write' privileges for the user, everyone else is 'read only' or 'no access'.
    We have a Netgear NAS Server which is accessed by other users over the local network and if I change the Privilege to 'read & write' via Get Info and then copy the file from my desktop to ther server it changes the Privilege of the server version to 'no access' we then have to change it again for it to work.
    I also created a new folder on the server and now it says 'no access' and has a no entry icon!
    Any ideas???

    We have issues like this. Have tried running AFP and SMB, now connecting using CIFS. All have the same problem. I can work on one or two files fine, then suddenly, one of the files I just worked on says I don't have permissions. I log off the server and log back on, and then I have permissions to the file. It will work fine for one or two operations, then fails. We just updated to OSX Mavericks and a Windows 2012 server, but have been having this issue for years. My permissions look fine. I can even change permissions, but it won't let me work on the file or move or delete the file or rename the file. Once I log out and log back in, I can do anything I want.

  • Problems with calendar syncing

    I am having problems with my calendar syncing... my iPad has the correct date/time, and so does my computer (Mac Pro with Snow Leopard). I use Entourage 2004 on my computer for my calendar. I have the sync on Entourage to sync with iCal, and then in iTunes I tell it to sync with the "Entourage" calendar in iCal.
    So when I tried to sync both my iPhone (which always worked before) and my iPad, all of a sudden people's birthdays were a day off, and then it went and duplicated all my calendar entries.
    I managed to delete the duplicates with some scripts, and got Entourage looking right. I told Entourage to overwrite iCal's calendar. So both of them looked good. I told iTunes to overwrite the iPad's calendar with the iCal calendar...
    and so my "all day" entries on the iPad are now spanning 2 days, and people's birthdays are 2 days off. I have NO idea what the stupid thing is doing, everything is correct in Entourage. But I need to get my calendars working. Please help!!

    It turns out that I may have not waited enough time for the wipe of all of my existing calendar appointments to sync through.
    I created a few more in outlook, deleted them, checked via the office 365 web calendar they were deleted.
    Then I waited another 15 minutes, created the Exchange/Office365 account from scratch, and magic I appear to be back!
    (until something else goes wrong that is)

  • Two problems with iTunes (permissions issue?)

    Hello,
    I have two problems with iTunes. I am not sure if they are related that's why I post them both.
    1) iTunes doesn't delete apps after updating them anymore. This is happening since the (two?) last versions of iTunes and is the same with 10.5. The reason seems to be the permissions of the apps. Nearly all have "everyone = custom". Therefore I have to enter my admin password when I try to delete them manually. And iTunes itself cannot delete them on its own, of course. Why is this happening? Why is iTunes assigning such permissions to downloaded apps?
    2) I can't login to my account from within iTunes anymore. That is also happening since quite a while. I am logged in (my ID is shown in the top right of the store) but cannot access my account details. iTunes asks for my password but after entering it the login mask appears again. It's not the password itself, it is correct.
    Any suggestions?

    Correct answer to find here:
    https://discussions.apple.com/thread/1215039?start=0&tstart=0

Maybe you are looking for

  • How to re-download Ps and Lr after hard drive is replaced

    I have license for CC on two computers.   Had it installed on my PC and Mac.   Hard drive for the Mac was replaced.  How do I re-download my products?

  • Producing message to temporary JMS destination

    Hi, Has anyone managed to produce a message to a temporary JMS destination using the JMS Adapter? I'm trying to get this request/reply-pattern working: -Java client connects to a Connection Factory and creates a temporary reply queue (works, CF retur

  • Creating Editable PDF Form

    Hi all, Can anyone help here... I am trying to create a PDF document in Acrobat Pro 9 Extended, which is a form that can be filled in and saved by the end user. I have created the document in InDesign and am using Pro to add in the editable regions.

  • Combining several orders in single delivery

    Hi, I want to combine sales orders which have different requested delviery dates. There will not be availability check in the order creation phase. The planning results will not be updated in item schedule lines. Rescheduling will not be run. So is t

  • Error calling background engine!!!

    Hi guys!! can you help me??? Status row for item 'WFEVDEME/PO345345', activity ID '228' This is the error when i4m launching the background engine!!! The Item Type WFEVDEME doesn4t exists.Why the sqlplus are returning this error???? cheers