How can we set Admin rights to access all user mailboxes in IMAP server exchange 2010?

Hi,
IMAP is in exchange 2010..
as per guide:
http://technet.microsoft.com/en-us/library/jj200730%28v=exchg.150%29.aspx
CSV Files for IMAP Migration Batches`
Use super-user or administrator credentials.   This requires that you use an account in your IMAP messaging system that has the necessary rights to access all user mailboxes.
In the CSV file, you use the credentials for this account for each row. To learn whether your IMAP server supports this approach and how to enable it, see the documentation for your IMAP server.
How can we set Admin rights to access all user mailboxes in IMAP server exchange 2010?
thanks?

Hi,
Do you mean assigning a user full access permission to all other mailboxes? If so, we can try the following command:
Get-Mailbox -Server “Exchange 2010” | Add-MailboxPermission -User AdminUserName -AccessRights FullAccess
Thanks,
Winnie Liang
TechNet Community Support

Similar Messages

  • CMDLET commands regarding setting a default font for all users using OWA on an exchange 2010 platform

    HI,
    We are running Exchange 2010 and are migrating users from 2003 to 2010 with no problems.  The client has asked me to set OWA font to LuidaSans which I can do for individuals with no problems.  However, when I try and run the following command
    Get-Mailbox -Resultsize Unlimited | Set-MailboxMessageConfiguration -LucidaSans but then got a message to state
    "property composefontname can't be set on this object becuase it requires the object to have version 0.1 <8.0.535.0> or later.  The object's currant version is 0.0 <6.5.6500.0>"
    What object is this reffered to?  Can anyone help please?
    Thanks
    Paul

    Hi,
    To set a default font for all users, you can use this command: -
    Get-Mailbox | Set-MailboxMessageConfiguration -DefaultFontName "Trebuchet"
    You can use any font style in place of “Trebuchet”.
    I hope this information will be helpful for you.
    Thanks and regards
    Ashish@S 
    Ashish@V

  • How can I remove admin rights to a mobile user group

    Hi Every one.
    I am using Snow Leopard in an environment of about 1200 users. I need to strip the admin rights (i presume by a script accessing DCSL) from a group of Mobile Account users.
    Does any body have suggestions on how to do this?
    thanks
    Matt

    Sorted out using DSCL in a script.

  • How can I set default toolbar layout for all users in my system?

    Hi everybody! I am running a local ubuntu server at my office. I can set some defaults preferences (about:config) for all new users in the system by defining those prefs in the /etc/firefox/syspref.js.
    Now, I want to define default toolbar layout in a similar way (maybe not needed but fun), to copy the toolbar layout for my user. Is there a general way to do that?
    thank you in advance!

    You can try to create a default template folder (defaults/profile) in the Firefox and place the file(s) in that folder for newly created profile.
    The only way to customize an existing profile is to copy files directly to it.

  • How can I set up a guest access point with a Time Capsule and an Airport Extreme? I am using a Telus router with the Time Capsule used as a wireless access point (bridge mode). I don't want the guest access point to have access to my network.

    How can I set up a guest access point with a Time Capsule and an Airport Extreme? I am using a Telus router with the Time Capsule used as a wireless access point (bridge mode). I don't want the guest access point to have access to my network.

    The Guest Network function of the Time Capsule and AirPort Extreme cannot be enabled when the device is in Bridge Mode. Unfortunately, with another router...the Telus...upstream on your network, Bridge Mode is indicated as the correct setting for all other routers on the network.
    If you can replace the Telus gateway with a simple modem (that performs no routing functions), you should be able to configure either the Time Capsule or the AirPort Extreme....whichever is connected to the modem....to provide a Guest Network.

  • How can i set no Right Click on Adf (jspx)

    hi to everyone in this thred i have a cuestion ,
    How can i set no Right Click on Adf (jspx)? i don´t find the solution for this event
    i know a JavaScript to cancel RightClick but , are no how can i use in adf of Jdeveloper 11?
    thanks ...

    Hi,
    there is no native API for this, so you will have to use JavaScript for this. What is the usecase ?
    Frank

  • How can I set up my Mac for two users to share photos, music etc

    How can I set up my Mac for two users to share photos, music etc?

    On the Mac with the libraries you want to share:
    iTunes Preferences click on the Sharing tab and put a tick in 'Share by library on local network'.
    iPhoto Preferences click on Sharing and put a tick against 'Share my photos'.
    When launching the same apps on other Macs on the network the libraries should be available, listed on the left.

  • How can i save music and pictures so all users can access them?

    how can i save music and pictures so all users can access them?

    Hi, this should be your answer as for sharing music. For photos though, I would assume you can do the same thing. Hope it helps!
    http://support.apple.com/kb/ht1203

  • HT4623 How can u set up your iphone when all the files are deleted?

    How can I set up my iphone if all the files are deleted?

    What files are deleted?
    Please explain

  • HT1660 how can I use one single library for all users on the same laptop?

    how can I use one single library for all users on the same laptop?

    You are most of the way there. Each user having access to hard drive is the key. If users are limited in file privileges this is harder.
    Any files you add to your library and any files she adds to her library are available to the other. Just not automatically. Each user must add the files to their own library using the add file or add folder option from menu bar.
    What I have done is set library location to a location outside of My Documents\My Music. On my network storage I have a folder names s:\itunes. Both accounts iTunes are set to use this location for the library.

  • How can I install and activate extensions for all users

    Hi, within the version 7.0.1 I am able to install noscript extension for example for all users.
    With version 8.0 the extensions are disabled by default, so I do not install it on company computers.
    How can I manage extensions and settings for all users in 9.0?
    Best regards
    Jens

    Hi John,
    I appreciate your prompt response.
    We have an Australian client here in the Philippines and would want to purchase an adobe software under Creative Cloud Licensing.
    Since this type of licensing is not yet available here in the Philippines, they are suggesting that they can purchase it in their country.
    My main concern is, will there be any conflict upon installing/activating an adobe software under Creative Cloud which will be purchased from their country?
    And what are the steps for installing and activating a software under this type of license.

  • How can I set time-out while accessing a url using URL object?

    Hi
    I'm trying to get the content of a URL using the following code. How can I set timeout
    (example, 10 secs), if the webserver takes a while to respond.?
    BufferedReader inbuf=null;
    URL url=null;
    try {      
         String urlString="http://host-machine/sms/index.jsp";          
         url = new URL(urlString);
         inbuf = new BufferedReader(new InputStreamReader(url.openStream()));
         String inputLine;
         String LongString="";
    while ( (inputLine=inbuf.readLine()) != null)
              LongString=LongString+inputLine;
              retString=LongString;          
              inbuf.close();
         catch (Exception e) {System.out.println(e)}
    Thanks a lot for your kind help
    Regards
    Kandasamy

    If you're using Java 5, see this thread (reply 10)
    http://forum.java.sun.com/thread.jspa?forumID=31&threadID=576157

  • Can someone tell me about how can I set it right

    i cant convert vids to mp4 can someone tell me like how can i set the videora pleaseee

    Hi Mark,
    Safari isn't intended to be an upload client for FTP'ing. For that you'll need a dedicated FTP client like CyberDuck.
    For some reason, on this computer, when I build an HTML file and save it, then open it using safari, I get the source code instead of the rendering of the source code.
    Which editor are you using to do this? I'm guessing TextEdit - if that's the case, use the Format menu -> Make Plain Text option to save the .html file. You'll then be able to save the file with whatever extension you prefer for JavaScript etc.
    want to switch back to the textedit application using COMMAND + tab the application doesn't open up. It remains minimized in the dock
    I know what you mean here and it is a bit frustrating. If you really want to stick with the keyboard you can do Ctrl+F2 then use the arrow keys to select the appropriate window from the Window menu. Normally I just keep the windows on screen and use Exposé to quickly retrieve the window.
    Hope some of that helps.

  • How can I share MS Office products with all Users on my Macbook Pro?

    The other 3 user accounts on my Mac Pro do NOT have access to Word, Excel, etc. How can I "share" these Applications? They don't show up in my admin user's 'Applications'. I'm new to the Mac (love it so far) and I don't know how to do some basic things yet. Thanks in advance

    Duh. In Applications for the other Users I saw the folder 'MS Office 2004'.

  • How do I set a Finder background for all users?

    I want to set a background in Finder for a folder hosted on a server, and I want all users who connect to that folder to see the background (and, necessarily, force them into Icon view for that folder). Is there a way to do this? Server is running 10.5.8, clients are running a mix from 10.6.7 to 10.7.1.

    But I dont know how to set a default website name that appears at the top of EVERY page.  Can you help?
    You cannot set a default name for your webpage.
    Each page is unique.
    But you can make a default page and duplicate it.

Maybe you are looking for

  • Just installed Mavericks and my computer crashes 4-5 times a day now.

    Hi. Just a few days ago I finally gave in and upgraded to Mavericks (10.9.5) from 10.6.8 as there was some software that I needed to use that necessitated the upgrade. Since I've upgraded, my MacBook Pro crashes at least 4-5 times daily. I am not doi

  • Wicd fails to connect with a WEP key

    I'm trying to connect to my wireless network after the recent update to net-tools. I sorted through most of my issues with the hostname command (I think) by installing inetutils and the recent update to wicd. Now, after trying to reconnect, my /var/l

  • Camera Raw suddenly stop working!

    I can not open RAW files now, with no reason, when i try, photoshop says "photoshop cant open this file". I had \everything working fine, with the latest updates, and this started ti happen with no reason at all! I already reinstall PS and the latest

  • Wont open up mp3 files

    Is any one else having problems opening up new mp3 files with itunes 11.0?

  • How to calculate total for field for particular day. in smart forms

    hi,          pls help in this problem, how to calculate cumulative totals for the particular field in samrtforms