Exchange 2010 - Archiving Policy tag (how to create dont move message)

Hi guys!
We have started to use functionality Archiving corporate Mailboxes.
We have deleted all the default retention policies/tags and created 1 default which Will move all the messages which are older then 60 days.
Soo default archive and retenetion policies are gone after deleting them.
Now the idea is to create 1 more retention policy tag, that user would manually chose what they do not wish to be moved to archive mailboxes and stay and instead of that those messages must stay in the mailbox.
Well we got stucked at how to create that kind of policy tag:
any hints would be more then appreticiated.
with best regards,
Bostjan
bostjanc

Hi,
Agree with Ed. We can't tag an item to stop it from being moved to archive.
Here is an article which can help you to understand the retention policy and retention tag for your reference.
Retention tags and retention policies
http://technet.microsoft.com/en-gb/library/dd297955(v=exchg.150).aspx
Hope this helps.
Best regards,
Belinda
Belinda Ma
TechNet Community Support

Similar Messages

  • Outlook 2010 not showing Exchange 2010 archives, OWA does.

    We have activated Exchange 2010 archives for all users but most of them are not showing up in their Outlook, but everyone can see them in OWA.
    Office 2010 Standard - MAK licenses, 2 distinct keys
    Majority of systems are Windows XP, some Vista and 7.
    Through testing it seems to be a system problem. Using 3 test accounts I log onto various systems, some freshly reimaged, some pre-existing. The test account profiles were new to each system. Sometimes the archive folder would appear, sometimes it wouldn't,
    but it was consistent per computer. Meaning that if the folder didn't appear for 1 person, it didn't show up for anyone on that specific computer.
    Anybody know how to fix this? Am I missing a setting or registry key somewhere?
    Thank you for any help,
    Greg

    Ok, just spent some time looking into this more, if you google "office 2010 suite and version comparison guide pdf" and locate the .pdf file and open it, on page 17 under
    Managed E-Mail Folders & Retention Policy:
    "Provide a secondary location for users to store their e-mail messages and
    manage their mailbox quota with new online managed folders. Unlike localOutlook Data Files (PSTs), this information can be backed
    up and managed by Exchange Server."  - is an Office Professional Plus feature only.
    So, it would appear that we now not only have to purchase an enterprise CAL for Exchange, but Office Professional Plus as well so we can, I suspect, use the
    one extra useful feature that most sys admins wanted Exchange 2010 SP1 for in the first place, which is so centrally manage e-mails and e-mail archives.  Whilst this may not be a big deal for larger companies, educational institutes
    etc, as the sys admin for a small private business with 70 users, this extra cost hurts.  As for the lack of clarity - if you want to tie up Office versions with Exchange functionality, how about standardizing naming conventions - call the Exchange
    CALs "standard" and "professional" to match the required Office clients, or rename Office Professional to Office Enterprise - either way, match up the client apps and CALs to make it clearer.

  • [CLOSED]How to create a custom messages

    Hi All,
    I have a page and one save button .on press of save button, i want to show a custom message like "Applied changes are saved."
    Can anybody please elaborate how to create a custom message and how to show it through Controller.
    may i use
    OAException message = new OAException("AK",
    "FWK_TBX_T_EMP_DELETE_CONFIRM", tokens, INFORMATION, null);
    -Thanks,
    Avinash
    Message was edited by:
    user624747

    When i used the code
    OAException confirmMessage = new OAException("JTM","JTM_SAVE_SUCCESSFULL",null, OAException.CONFIRMATION,null);
    throw confirmMessage ;
    i am getting following error :
    Error :
    Application: JTM, Message Name: JTM_SAVE_SUCCESSFULL.
    I have created the message "JTM_SAVE_SUCCESSFULL" through
    Application Developer --> Application --> messages responsibility and given its type as error , application as "mobile application foundation" and then "ran the generate message" program.
    After that i checked the fnd_new_message table . the message is there.

  • How to create a error message for Deleted batch while creating a PO

    Hi ,
    Can any body tell me how to create error message for a deleted batch while creating a PO in ME21n,
    when a PO is created for a deleted batch at GI &GR lebel it is showing  a error message,
    but i want to show a error message while doing the PO creation.
    Thanks,
    Sachhi

    in badi  me_process_po_cust u can  put this message
    METHOD if_ex_me_process_po_cust~check.

  • After Exchange 2010 SP3 and rollup 4 update conditional formatting causes messages not to appear in Outlook 2010

    Hi,
    after updating to exchange 2010 sp 3 from sp 2 and also updating to rollup 4, users who use conditional formatting cannot see new message unless they close and reopen Outlook.
    If you decide to change the font colour for unread messages, the messages do not appear in Outlook but a pop up indicates that a new message has arrived.
    If you reopen Outlook, the unread messasge appears.
    remove the conditional formatting and no issue with viewing unread messages as they arrive.
    running Outook version 14.0.7106.5003
    is this a known issue?  a user who never used conditional formatting will experience this right away.
    Thanks,
    rudif

    Hi rudif,
    If the issue only happens to users who use conditional formatting and OWA can work well for all mailbox, I think the issue should be in client side.
    Please try to reset View then set the conditional formatting back to have a try. If the issue continues, please try to recreate the Outlook profile to check whether the issue persists. Also try restarting Outlook in Safe mode by running
    Outlook /safe switch.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • How to create Object related messages using cl_bsp_wd_message_service?

    Hi Gurus,
    Can any ony explain how to create the object related messages using add_message method of cl_bsp_wd_message_service?
    Thanks,
    Murali.

    Hi Murali,
    Check the below code .. hope it helps..
      DATA lr_msg_service     TYPE REF TO cl_bsp_wd_message_service.
      DATA lr_exception       TYPE REF TO cx_root.
      DATA lr_rtti            TYPE REF TO cl_abap_objectdescr.
      DATA lv_msg_type        TYPE        symsgty.
      DATA lv_msg_id          TYPE        symsgid.
      DATA lv_msg_number      TYPE        symsgno.
      DATA lv_msg_v1          TYPE        symsgv.
      DATA lv_msg_v2          TYPE        symsgv.
      DATA lv_msg_v3          TYPE        symsgv.
      DATA lv_msg_v4          TYPE        symsgv.
      DATA lv_msg_level       TYPE        bsp_wd_message_level.
      DATA lr_verification    TYPE REF TO if_bsp_wd_message_handler."#EC NEEDED
      DATA lv_important_info  TYPE        abap_bool.
      DATA lv_exc_prog_name   TYPE        syrepid.
      DATA lv_exc_incl_name   TYPE        syrepid.
      DATA lv_exc_src_line    TYPE        i.
      lr_exception = ir_exception.
    drill down to first exception
      WHILE lr_exception->previous IS BOUND.
        lr_exception = lr_exception->previous.
      ENDWHILE.
      lr_rtti ?= cl_abap_typedescr=>describe_by_object_ref( p_object_ref = lr_exception ).
      lr_exception->get_source_position( IMPORTING program_name = lv_exc_prog_name
                                                   include_name = lv_exc_incl_name
                                                   source_line  = lv_exc_src_line ).
    prepare message
      lr_msg_service = cl_bsp_wd_message_service=>get_instance( ).
      lv_msg_type   = if_genil_message_container=>mt_warning.
      lv_msg_id     = 'CRM_IC_APPL'.
      lv_msg_number = '003'.
      lv_msg_v1     = lr_rtti->get_relative_name( ).
      lv_msg_v2     = ir_exception->get_text( ).
      lv_msg_v3     = lv_exc_incl_name.
      lv_msg_v4     = lv_exc_src_line.
      lv_msg_level  = '9'.
    add message to error log
      lr_msg_service->add_message(
          iv_msg_type       = lv_msg_type
          iv_msg_id         = lv_msg_id
          iv_msg_number     = lv_msg_number
          iv_msg_v1         = lv_msg_v1
          iv_msg_v2         = lv_msg_v2
          iv_msg_v3         = lv_msg_v3
          iv_msg_v4         = lv_msg_v4
          iv_msg_level      = lv_msg_level
          iv_verification   = lr_verification
          iv_important_info = lv_important_info ).
    Regards,
    Raghu

  • How to create a movie clip during runtime?

    I'm learning basic shooter games and my goal is to have a small circle movie clip (would it work as a movie clip?) spawn when the mouse button is pressed. I know how to add the code for the button being pressed, but I do not know how to create the object on demand. Can you please help me with this?

    For AS2, you right click the movieclip symbol in the library and select the Linkage... option.  In the panel that appears you select the first option (Export for Actionscript) and another is automatically selected.  Then you assign an Identifier for it in the field at the top.  To add that movieclip to the stage you use the attachMovie() method... for example...
    this.attachMovie("linkageIdentifier", "instanceName", this.getNextHighestDepth());
    In AS3 it is somewhat similar as far as assigning an Identifier, except you assign a Class name instead, and then add a new item to the stage as a new instance of the class... 
    var instanceName:ClassIdentifier = new ClassIdentifier();

  • How to create a movie file of java 3D animation without altering the code?

    Is there a way to create a movie file of a Java 3D animation without altering the source code of the Java 3D animation program???
    Because as what I observed, most of the forum recommends extracting the bufferedimages of the animation. And, then using the bufferedimages to do a movie file. In this way, I will need to add in new code in the animation program in order to extract the bufferedimages.
    So, is there an alternative way?
    My objective is write a program to create movie file of any Java 3D animation.
    Pls advise me. Thanks a million.

    I'm curious as to why FRAPS will record java3d and
    not a java2d app? is there something that Java3d
    sets that makes it recognizable by fraps? or?? could
    someone or messengers ( =D!) explain this for me?Seems that only in JDK 5.0 or later, does the 2D api automatically use a DirectX or OpenGL rendering pipeline (if available).
    Further, these automatic pipelines accelerate polygons and the like, but not low level Graphics2D bit blitting operations.
    There are JOGL apis that allow better control over acceleration, and are considered 'thread safe' (single threaded) whereas DirectX pipelines are not.
    Interesting demos of this here:
    https://jogl-demos.dev.java.net/applettest.html
    and
    http://www.hardcorepawn.com/RandomGL/
    Fraps (commercial) and Taksi (opensource) will reveal that you are actually using acceleration, since they intercept the pipeline at the openGL (and DirectX) level.

  • How to create an error message which doesn't allow submitting form ?

    Hi,
    is there a way to create an error message so that the user can't submit the form until the error is solved?
    On my form I am doing some validation checks when the user hits the button to submit the form via e-mail.
    So if something on the form isn't filleld out correctly the user gets an error message. But after the user has clicked ok on the error message he can still send the form.
    So I am searching for a way that he can only submit the form if he has resolved the problems.
    I tried with
    xfa.host.messageBox("material is not valid!" , "error", 0);
    but this only shows the error messagen and doesn't prevent the next step.
    Can I solve this with using a different type of error message, or user different parameters at the messageBox?
    Thanks for your help.
    Martin

    hi Martin Beyer
    try like this.
    in submit button CLICK event u have to right validation for fields which u want to check.
    example :  here iam validating two varibles.
    var sub=0;
    if(sub==0)
    if(fields2.item(i).rawValue == null && fields.item(i).rawValue != null)
         sub++;
         xfa.host.messageBox("Status of Achievement is Mandatory");
         xfa.host.setFocus(fields2.item(i));
         break;
    if(sub==0)
              var Repe = xfa.host.messageBox("Do you want to Submit now???", "Warning", 2, 2);
              if (Repe == 4)
                   sub=0;
              else
                   sub++;                              
    hope it will help you.

  • How to create a text message animation?

    Hi, i'm trying to create a text message animation that sort of looks like this Friend Request - Internet Safety PSA - YouTube
    thanks

    That's a simple pre-composed animation tracked to the cell phone, possibly as a 3D layer.
    Mylenium

  • Exchange 2010 Retention Policy - Deleting Archived Items

    Our current retention policy is configured to do the following
    Archive all Emails for every user 3 Months or Older to a separate Archive Mailbox Database.
    We then Perform  Monthly, and Yearly backups of this Archive Database. Our Yearly's are 7 Year backups.
    Since we will have the data backed up to tapes for 7 years we would like to purge the Archive Database of all Emails older than 2 years.
    If I implement a tag of Permanently Delete -All other folders with an Age limit of 730 days would this remove the items from the "Archive Mailbox's" as we would like?

    Yes.  If you have any tags that delete items from the primary mailbox, they will also delete target items from the archive.

  • Exchange 2010 archiving: sent items missing

    Hi,
    I have created an archive for a user with rule to archive anything older than a year. However I haven't noticed the sent items folder does not exist in archive, so the consequence is there are no sent emails older than a year. 
    So the question is, how can I recover them?
    Thank you in advance!

    Hi,
    I have created an archive for a user with rule to archive anything older than a year. However I haven't noticed the sent items folder does not exist in archive, so the consequence is there are no sent emails older than a year. 
    So the question is, how can I recover them?
    Thank you in advance!
    What sort of archive? PST or In Place Within Exchange? You generally wouldnt use a rule to archive however.
    Twitter!: Please Note: My Posts are provided “AS IS” without warranty of any kind, either expressed or implied.

  • Exchange 2010 Mailbox Auditing Owner Sent Items (Create)

    I have activated Mailbox auditing feature for a Mailbox "Set-mailbox -identity User1 -auditenabled $true | Set-Mailbox -Identity User1 -Auditowner harddelete,create", I need to audit sent ítems (create), but the Search command didn´t show
    any results:
    Search-Mailboxauditlog -Identity User1 -Logontypes Owner -Showdetails -Startdate 1/1/2014 -enddate 1/22/2014

    Hi,
    First,run the following command to verify that you have successfully enabled mailbox audit logging for a mailbox and specified the correct logging settings owner access:
    Get-Mailbox "User1" | Format-List *audit*
    If all are right,please run the following command to search the result:
    Search-MailboxAuditLog -Identity user1 -LogonTypes Owner -ShowDetails -StartDate 1/1/2014 -EndDate 1/22/2014 | Where-Object {$_.Operation -eq "Create"}
    The following articles for your reference:
    Mailbox Audit Logging
    Exchange Server 2010 SP1 Mailbox Audit Logging Step by Step Guide
    Hope this helps!
    Thanks.
    Niko Cheng
    TechNet Community Support

  • Exchange 2010 - Archiving not working in desired situation

    Hi guys!
    Recently we had enabled online archiving on Exchange, the problem is that one thing is not working as we have wanted.
    We wanted that user picks up manually thru Outlook 2013 client which folder he does not wishes to be moved to archive, but this is not working with our current settings.
    These are the settings on server side
    bostjanc

    ah sorry, its retentionaction not retentiontag so here is the correct parameter
    Get-RetentionPolicyTag "Don't Move this*" | Set-RetentionPolicyTag -RetentionAction
    "MoveToArchive"
    Blog |
    Get Your Exchange Powershell Tip of the Day from here

  • How to create a movie for iPhone with multiple Subtitles?

    Hey there,
    I'd like to watch some of my DVDs on my iphone to learn englisch. Therefore I'd like to be able to switch between German and englisch subtitles and of course have a german and englisch audio. is that possible?

    hello,
    it is not officially supported. however, it can be done when you write your own makefile. how to call the compiler and necessary flags and so on see the "build results" output of xcode. it's like
    /Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/gcc-4.0 -x objective-c -arch i386
    and so on. after you created the object files you create the library with the archive tool, like
    ar -crv libwhatever.a Dada.o Bubu.o AnotherOne.o
    regards,
    sebastian mecklenburg

Maybe you are looking for

  • How do i tranfer files from my pc to my ipad?

    how do i transfer documents from my pc to my ipad?

  • Black and White Screen

    My Iphone 4 has been shutting down to a black dos like screen with White letters. Debugger messag: panic\ OS Version: not yet set Kernel Version: Darwin Kernel Version 13.0 Sunday August 19 I b boot version: i Bott-1537.4.18 panic: we are hanging her

  • QM Standard Reports

    Hi all, I want to have QM standard reports both by Report Programs and T.Code(S). Pls do the needful. thanks & regards sankar. Message was edited by: Sankar         sankar babu Message was edited by:         sankar babu

  • Recover contacts from iPhone in recovery mode

    I recently tried to update my phone from ios 5.1.1 to ios 7 on the phone itself. Tihe update seemed to be working but then it went into recovery mode. Whenever I connect it to iTunes it only gives me the option to restore. I haven't synced my contact

  • Gurus, please reply me!

    Hi, I just know there's a special promotion of Solaris 8(Intel) for Education, and the price is only $29. I'm a student and qualified for that. But I'm wondering if it's the same version as the usual one($45)! Thanks a lot!