Moving items from sub-folder to inbox are disappearing

Hello everyone, 
We have exchange 2010 and we are having issue when user move item from sub-folder to inbox then the item just disappears. I have tested this at-least 3 mailboxes. 
If i do this in outlook then it disappears right away. if i do this in OWA then it disappears in 10 seconds.  Sometimes it shows up in deleted folder but most of the time it doesn't but it always shows up in "recover deleted item" in outlook.
Please advise how to find what's going on. thanks 

I don't think it is a Managed Folder Mailbox Policy which is doing this. We have almost ruled out that the issue is specific to Client but not Server. If you want to check the Managed Folder Mailbox Policy for a mailbox run the command below:
Get-Mailbox -ResultSize Unlimited -Server ServerName |?{$_.ManagedFolderMailboxPolicy -ne $Null}
The above command will help us get all the mailboxes where there is a ManagedFolderMailboxPolicy Applied
To Get the ManagedFolderMailboxPolicy for a Specific Mailbox Run the command below:
Get-Mailbox MailboxName | Fl Name,DisplayName,ManagedFolderMailboxPolicy
If Deleting the outlook profile/ost fixed the issue, then it might have been most likely an issue with corrupted outlook rule. if you want to do it for all the mailboxes across org, i would suggest you force that via group policy using a PRF File.
M.P.K ~ ( Exchange | 2003/2007/2010/E15(2013)) ~~ Please remember to click “Vote As Helpful" if it really helps and "Mark as Answer” if it answers your question, “Unmark as Answer” if a marked post does not actually answer your question. ~~ This
Information is provided is "AS IS" and confers NO Rights!!

Similar Messages

  • Images I move from one folder into another are disappearing, at first it was occurring immediately if I did not copy and paste the images. Today however I found out that images I had been using for days just up and vanished from their new location.

    Images I move from one folder into another are disappearing, at first it was occurring immediately and only if I did not copy and paste the images. Today however I found out that images I had been using for days just up and vanished from their new location. A few of these images had copies in another folder that remained and the ones I couldn't find may or may not have ever had copies. I had backed up my system with time machine recently as well, so I went into the backup to retreive the lost images. When I searched and found the backup copies I got the error "the file alias cannot be opened because the original cannot be located". The crazy thing is that the images that remained on my computer did not give me the same error and opened like they should.
    In short images that I am creating, saving, and using are disapearing so epically that even time machine versions are affected when retrieval is attempted. Any suggestions as to what I could be doing wrong without realizing it? Or perhaps other people have had similar bugs that are software related and have a solution?

    Hi Kevin,
    I understand what you tried to do but it doesn't work that way. Swapping drive names will just mess things up.
    You should be able to reconnect the files though: in the Locate Referenced Files dialog make sure you click the Show Reconnect Options button — this will give you access to all the connected drives. Locate one of the files and hit Reconnect All. Should do the trick.
    Best

  • Moving Stack from one folder to another?

    Is there a way to keep a stack together while moving it from one folder to another. When I grab the stack and drop it to a folder, I view the folder and the images are no longer in a stack. It would save me a lot of time if they would stay stacked. Am I missing something?
    Thank you.

    Well your code is unreadable because you didn't post it properly, but I'd guess you've fallen into the old multiple-delete trap in a new way. It's like this:
    To start with you have messages numbered 0, 1, and 2, let's say. So you write a loop that lets i run from 0 to 2 and delete message number i in the loop. What really happens? The first time through the loop you delete message number 0, after which you are left with messages numbered 0 and 1. The second time through the loop you delete message number 1, after which you are left with message 0 only. The third time through the loop you delete message 2, which isn't there and you get that message.
    That's just a guess, I didn't have the patience to read that ugly unformatted code. There are two ways to do the multiple delete properly, if that's actually your problem: (1) run the loop upwards from 0 and always delete message 0; (2) run the loop downwards from N-1 to 0 and delete message i.

  • Bridge Freezes when Show Items From Sub Folders

    Hi all. I am trying to create a portfolio of past works. Using Adobe Bridge and Show Items From Sub Folders makes it easy to go through thousands of files. One major problem though; Bridge is not stable. When I try to view a folder with thousands of files Bridge will freeze and I have to force quite.
    I am running a Mac Pro with Adobe Design CS4 Premium installed. I have 16gb of Ram and have played around with Bridge's preferences and deleted Bridges preference files. I also tried all the options list on Adobe's check list.
    Any help would be greatly appreciated.
    Regards
    Stephen Thompson

    Bridge is not stable. When I try to view a folder with thousands of files Bridge will freeze and I have to force quite.
    As a matter of fact, bridge CS4 is the most stable version of bridge, and although still not perfect yo should be able to view the folder in flat view.
    It only takes a lot of time to cache if you have not done before. If cache does not start you first should try to purge cache for folder using the tools menu.
    If Bridge keeps freezing first thing to try is to restart holding down option key and choose reset preferences. Set prefs again to your own wishes and try again.
    You can also try to first cache the folder using the tools menu. In the folderpanel select the main folder you want to view its contents and go to the tools menu / cache and this time select build and export cache.
    Depending on the amount and size of files it takes some time. Then try again.
    It is able to work, as it does on my system. I have also a main folder that contains around 5000 files organized in stacks and works as it should

  • How to transfer work items from one user's inbox to other user,s inbox(UWL)

    Hello All
    We need to transfer existing  but  open work items from one user's inbox to other user,s inbox(UWL)
    How to go about it?
    These are the items from backend  R3.
    Thanking you
    Rajendra

    Hi Rajendra,
    Usually in R/3 if you want to transfer the workitems to other user , you can just select the workitem and then click on "Forward" button. This will pop-up a box to enter the "User" ID of the other user to whome you want to transfer the Workitem. A Similar button is available in UWL as well.
    So, in UWL when you click on the Workitem, it will should give you a button "Forward" and by clicking on that you should be able to transfer the workitem you the other user.
    I hope this helps you. Let me know if you need any more help.
    Regards,
    Gopal.

  • How to retrive list item form sub folder (sub folders) in sharepoint using CAML or Server Object Model?

    Hi All,
    I have multiple folders in document library.I want to retrive list item form folder.
    Following is snap
    I want to get all sub folder and list item in
    Sub folder 1.
    Any will be help appreciated..
    Thanks
    Balaji More

    Hi Balaji,
    If
    you want to query all folders and sub folders of a list or document library, you have to define extra query options. If you are working with the object model you have to set the
    ViewAttributes property of the SPQuery object as follows:
    qry.ViewAttributes = "Scope='Recursive'";
    you can use the client 0bject model to get this as well
    ClientContext clientContextObj =
    new ClientContext("http://Servername/");
    List yourDocLib = clientContextObj.Web.Lists.GetByTitle("Shared Documents");
    CamlQuery camlQueryObj = new CamlQuery();
    camlQueryObj.ViewXml =
    @"<View Scope='Recursive' />";
    ClientOM.ListItemCollection listItems =
    yourDocLib.GetItems(camlQuery);
    clientContextObj.Load(listItems);
    clientContextObj.ExecuteQuery();
    foreach (var item in listItems)
    Krishana Kumar http://www.mosstechnet-kk.com

  • How do you remove items from the assets panel that are duplicated?

    How do you remove items from the assets panel that are duplicated?

    If you add an item to a slideshow, you'll usually see 2 entries for that image in the assets panel - one represents the thumbnail, and the other represents the larger 'hero' image.
    It sounds like you may have added the same image to your slideshow twice. You can select one of the hero images or thumbnail images in your slideshow and use the delete key to remove it. Then the extra 2 entries in the assets panel should disappear.

  • Error in transfer item from sub inventory to anther

    Hi all experts
    i have an error when i try to transfer item from sub inventory to anther in subinventory transfer form, and press lot/Serial button to but the lot number the system show this form error frm: 41051 You cannot create records here. 3 times, after that the system show the next form
    anyone can explain to me what is this error and how i fix it ??

    M.N.D wrote:
    Hi all experts
    i have an error when i try to transfer item from sub inventory to anther in subinventory transfer form, and press lot/Serial button to but the lot number the system show this form error frm: 41051 You cannot create records here. 3 times, after that the system show the next form
    anyone can explain to me what is this error and how i fix it ??Please see these docs.
    Error "FRM-41051: You cannot create records here" When Clicking the Lot/Serial button on Batch Material Transactions [ID 1385879.1]
    R12 Inventory Misc Receipt Lot/Serial Button Error Message You Cannot Create Records Here [ID 1457642.1]
    INVTTMTX - Misc Receipt - Lot/Serial button - FRM-41051: You Cannot Create Records Here [ID 1306767.1]
    Getting An Error During Lot Number Creation For Product In The Batch [ID 1365464.1]
    Thanks,
    Hussein

  • Getting error Can't read from the source or disk when moving documents from one folder to another folder in the library

    Hi,
    When we try to move documents from one folder to another folder in the document library using "Open with explorer" getting beloe error.
         Can read from the source file or disk.
        The user having below permission for the Library as well as site.
    Fullcontrol,Limited access--->Given directly
    Read,Limited access--->Givin through the all Test grp
    Contribute,Limited Access-->given through test members grp
    Read,Limited access---> givin through The group grp
    Could you please help me anyone....
    Thanks

    Hi Reddy,
    If you are moving files in two libraries in different sites, then the error will occur and it is by design that there are limitations on the DAV move commands that the DAV client is respecting.
    https://social.msdn.microsoft.com/Forums/en-US/6245f332-c609-4a7b-8e00-c8b5e46f7759/cant-move-files-using-windows-explorer-cant-read-from-source?forum=sharepointgeneral
    If you are moving files in the same library, I recommend you to use Wireshark to reveal the error message and enable IIS
    Trace Logging for Failed Requests to examine the IIS log file for troubleshooting.
    https://social.msdn.microsoft.com/Forums/en-US/47cd569d-98f2-4cca-b78e-fd178c097285/cant-read-from-the-source-file-or-disk?forum=sharepointgeneralprevious
    To narrow down the issue scope, I recommend you to test with another library and see if the copy in explorer can work.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

  • Moving messages from one folder to another.

    hi there,
    I am trying to move messages from one folder to another. It works perfectly when i try to move one message at a time. However when i try to move more than 1 message(for e.g 2 messages) only the first message is being move to the destinated folder and while attempting to move the 2nd message it is throwing IndexOutOfBounds exception.
    This is how i am attempting to move the message.
    String destFolder = request.getParameter("fold");
    String srcFolder = request.getParameter("originalFolder");
    Store store = (Store)session.getAttribute("store");
    Folder sourceF = store.getFolder(srcFolder);
    sourceF.open(Folder.READ_WRITE);
    if(!(destFolder.equals("null")))
    String[] msgs = request.getParameterValues("list");
    System.out.println(msgs.length);
    Folder destinationF = store.getFolder(destFolder);
    destinationF.open(Folder.READ_WRITE);
    if(msgs != null)
    for(int i=0; i<msgs.length; i++)
         int msgNbr = Integer.parseInt((String)msgs);
         int[] msg_id = {msgNbr+1};
         Message[] msg = sourceF.getMessages(msg_id);
         sourceF.copyMessages(msg,destinationF);
         sourceF.setFlags(msg, new Flags(Flags.Flag.DELETED), true);
         sourceF.expunge();
         destinationF.expunge();
    session.setAttribute("mails", sourceF);
    try
    response.sendRedirect("../Inbox.jsp");
    catch(IOException ex)
    ex.printStackTrace();
    This is how i am trying to do it... Please help me i really need this urgently. Kindly help me ASAP.
    Help is very much appreciated.
    Thank you.
    Renuka.

    Well your code is unreadable because you didn't post it properly, but I'd guess you've fallen into the old multiple-delete trap in a new way. It's like this:
    To start with you have messages numbered 0, 1, and 2, let's say. So you write a loop that lets i run from 0 to 2 and delete message number i in the loop. What really happens? The first time through the loop you delete message number 0, after which you are left with messages numbered 0 and 1. The second time through the loop you delete message number 1, after which you are left with message 0 only. The third time through the loop you delete message 2, which isn't there and you get that message.
    That's just a guess, I didn't have the patience to read that ugly unformatted code. There are two ways to do the multiple delete properly, if that's actually your problem: (1) run the loop upwards from 0 and always delete message 0; (2) run the loop downwards from N-1 to 0 and delete message i.

  • Moved an email from Archive folder and it's disappeared...

    Hi there
    I read that moving an email from Archive mail folder (done on my iPhone) deletes the email from icloud's server - can I get this back??!! :-(

    The only folder that email will "disappear from"  is the trash folder, which can be set to delete email after specific intervals.  With all other folders, email is left indefinitely. 
    With an IMAP or Exchange account, the folders can be accessed from from other devices and moved or deleted.
    Note that with Exchange accounts, there  may be limitations set by the IT dept, but there are no settings on the phone to control that. 

  • How to mass moving iviews from one folder hierachy to another within PCD?

    Hi,SDN fellows.
    I found that it is really not user-friendly to move iviews from one folder to another within PCD>
    I tried to use Multiple Property Replacement to move some iviews in one folder to different folder hierachy in PCD, but I don't really know how to do so.
    Do you mass moving iviews in PCD before? How do you able to do it more efficiently.
    Thanks for help.
    Kent

    Kyle, the PCD Inspector seems able to faster my process a lot.
    What if I want to mass edit some properties. (I thought Multiple Property Replacement would able to do some, but it couldn't)
    Said I need to change the Id of a set of iviews:
    my_iview_a
    my_iview_b
    my_iview_c
    my_iview_d
    to
    iview_a
    iview_b
    iview_c
    iview_d
    but the MPR doesn't able to use the asterisk (*) operation.
    Thanks.
    Kent
    Thanks.

  • Moving files from one folder to another caused freeze

    I now have a list of files stuck in the center of my screen.
    I'm sure a reboot will fix this (I hope!) but I thought it was a bug worth reporting.
    All I did was move a copy a collection of files from one folder to another folder.  It made the "move" sound, and the files have been copied, but something clearly went wrong

    Have java.io.File objects pointing to the three folders. Get the list of all the files in the folder. Start a loop and check if the filename ends with Data.dat. If it is so then copy file to the final folder.
    To Copy file you can use any of the two approaches.
    1. You can read that file as byte stream (java.io.FileInputStream) and write it to the other folder as bytes (java.io.FileOutputStream).
    2. You can use shell commands to do this. (java.lang.Runtime.exe() method)
    Ali Ahsan

  • Moving topics from one folder to another

    Can anybody please help me on this issue. Is there any way i
    can move topic from one folder to another without disturbing the
    link and all that. I am afraid to move topic from one folder to
    another because i feel that it might disrupt something behind the
    scene.

    As Peter said, it all should work fine. If it doesn't your
    projwect either suffers from a corrupt CPD-file or there already
    exists a file of the same name in the destination folder.
    If such a file has been copied there from outside of RH,
    you'll have to remove the offending file using Windows Explorer.
    If there is no such file, close your project, delete the file
    named <projectname>.cpd and open the project again.
    Regards
    ----Dirk Bock

  • Moving pictures from one folder/album to another

    I have recently updated to Yosemite and that updated to Photos.  I would like to move photos from one folder to another.  In iPhoto, my folders were in a left hand menu and I could drag photos to a new folder.  How do I do this in Photos?

    I figured it out.  If you click on view, you have the option to show the sidebar.

Maybe you are looking for

  • All-In-One IdeaCentre C440, high pitch sound

    I have a problem with my Desktop PC All-In-One Lenovo IdeaCentre C440, machine type: 10104, configuration number: 57322047. I bought this computer last week ago and from the beginning is present a high pitch sound. The high pitch sound is more eviden

  • Appointment - Transaction is rejected in CRM online

    Hello, When creating an appointment in my CRM calendar i get an email from the admin account set for groupware connector with a link of the appointment. It does synchronise in my calendar successfully but i want to disable the email that i am getting

  • Please tell me the step by step process of HP Tape drive configuration.

    Dear all, we are using ECC5.0 and windows 2003 server and oracle 9i .Please tell me the step by step process of HP Tape drive configuration. I Think initSID.sap file in to change the parameter,but which parameter configure.Please suggest. Best Regard

  • Scan a positive transparency with an Epson Perfection 1200 scanner?

    I cannot get Image Capture to scan a positive transparency.  The overview scan keeps cancelling. I'm using an Epson Perfection 1200 scanner.   It works in the flatbed mode, e.g. scanning a photo. What can I do to scan a transparency?

  • "iTunes has encountered a problem" after updating Podcasts

    I've been running iTunes happily since December 2009 on my Windows XP machine. I've allowed each update to be applied and have never had a problem with it. Suddenly today, I started getting an "iTunes has encountered a problem an needs to close" erro