Setting "MessageStoreName" for a user

I installed iMS5.2 and have created some users through iMS server console. On one of the tabs its prompting me to enter a 'Message Store Name'. My understanding is that a message store is shared by all users and that has a administrator. So where will i get a 'message store name' ??
Sunil.

http://docs.sun.com/source/816-6009-10/store.htm#12944
Usually the machine where you have stored running. In this case, it can be the machine where you've installed iMS

Similar Messages

  • Password security - set permissions for different users

    I am using Abobe Acrobat 9 Pro.
    In the HELP menu, there is a security section in the contents, In the overview, it states the following:
    "Each security method offers a different set of benefits. However, they all allow you to specify encryption algorithms, select the document components to encrypt, and set permissions for different users."
    I would like to know how you can set permissions for different users using Password Security.
    I am the only one in the company who has Acrobat 9 Pro and all others have Adobe Reader 8.
    I have created a PDF file in Acrobat 9, this file is accessible to anyone with Abobe Reader. I would like to set different permissions for different users. For example, i would like certain individuals to print the document and other individuals to not be allowed to print. Can this be acheived using Password Security?
    Many Thanks

    I have created a PDF file in Acrobat 9, this file is accessible to
    anyone with Abobe Reader. I would like to set different permissions for
    different users. For example, i would like certain individuals to print
    the document and other individuals to not be allowed to print. Can this
    be acheived using Password Security?
    No.

  • Setting Crystalviewer for all users in CMC

    I am trying to setup Crystal Reports server 2008 VI for my organization. One of the requirement is to disable the Preferences in inoview and set the crystal report viewer to the Web ActiveX control for all users. I was able to disable the preference parameter in CMC -> Allications -> InfoView, but could not find away to set the default viewer for all InfoView users to the activeX control? Is this doable? If so I would like to know how.
    Any help is greatly appreciated.

    Enable preferences and go to Infoview, click oh Preferences and change the view format to ActiveX and save it. Do this for Administrator users.
    There is download available, using that you can make the same change for all users, check the below link.
    Re: Setting the same "InfoView Start Page" to all users in one group
    With that you can change the settings for all users as Administrator, once done remove the access to Preferences.
    Thanks,
    Hari

  • How to set Password for Xellerate user in OIM

    I am using recon API's and creating Xellerate user, unfortunately the recon is not accepting USR_PASSWORD which is the field name defined in OIM
    Can somebody please let me know how to set this password for Xellerate user??
    Thank you in advance for your response. (this is go-live issue you know what that means :-)

    Hi,
    If you are doing reconciliation and trying to reconcile the password as well. Then you must map the Resource Object attribute for the password field to the 'Identity' field of OIM. You can find this field in the 'Reconciliation Field Mappings' section for Xellerate User. Just map the field which you want to be set as OIM user password in the section and you are done.

  • Set Preferences for all users

    I need to be able to set QT preferences that are persistent to all users of a particular computer.
    For example, I need to set the video to Safe Mode, but that setting only gets saved to the currently logged in user. Safe Mode would not be enabled for a user logging in with a different account.
    This is on a Windows XP SP3 machine with the latest version of QT.

    C:\Program Files\QuickTime\QTSystem\QuickTime cpl is the file for the QT control panel.
    With XP pro open the Folder Options control panel and click on the View tab. Uncheck> Use simple file sharing [Recommended] this will give the computer a Security tab. While in Folder Options you probably should put a check\dot in> Show hidden files and folders, and uncheck> Hide extensions for known file types and maybe uncheck> Hide protected opersting system file Recommended, to be sure QuickTime cpl shows up.
    Right click on QuickTime cpl and click on the Security tab. This should give you the ability to work with permissions for user accounts

  • Setting OOF for other users using EWS

    Hello everyone,
    I try to set the OOF for other users using EWS in an Exchange 2010 SP2 environment.
    I use this code:
    ExchangeService service = new ExchangeService(ExchangeVersion.Exchange2010_SP2);
    service.Credentials = new NetworkCredential("username", "password", "domain");
    service.TraceEnabled = true;
    service.TraceFlags = TraceFlags.All;
    service.AutodiscoverUrl("[email protected]");
    OofSettings OOFSettings = new OofSettings();
    OOFSettings.ExternalAudience = OofExternalAudience.All;
    OOFSettings.ExternalReply = "Test";
    OOFSettings.State = OofState.Enabled;
    service.SetUserOofSettings("[email protected]", OOFSettings);
    The account I use is a Service Account our Exchange Team set up. I can see all service properties, so I would assume that the connection to the ExchangeService works fine.
    However when SetUserOofSettings executes, I receive a ServiceResponseException “Connection did not succeed. Try again later”.
    What am I missing? Unfortunately, the error message does not provide any helpful informations.
    Thank you and best regards
    Julian

    >The account I use is a Service Account our Exchange Team set up. I can see all service properties, so I would assume that the connection to the ExchangeService works fine.
     What rights have they given the account, giving an Account Exchange Admin permissions won't give you any rights to access the Mailbox content. For this to work the account you using would need to be either have been granted Full Access via Add-MailboxPermission
    or been given Application Impersonation rights (if its the later you need to make sure you use impersonation in your code).
     I would suggestion you try using the EWSEditor
    http://ewseditor.codeplex.com/ to test this out eg try connecting to the users folders and then try the OOF operation via the EWSEditor option to see if this works.
     Other things to check is if this is a Brand new mailbox that has never been connected to before then the Mailbox folders won't be initialized (you can check this using Get-Mailboxstatistics) and you would get an error trying to perform any of
    the EWS operations. If it works on some users and not others the possibly your getting throttled.
    Cheers
    Glen

  • How to set preferences for all users?

    I'm working with a windows CITRIX server and I need to disable the 'Remember passwords for sites' preference for all the users on the server. How do you do this for any user launching firefox on the server?

    You can lock the signon.rememberSignons pref to false via the mozilla.cfg file.
    lockPref("signon.rememberSignons", false);
    You canuse a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.
    Place a local-settings.js file in the defaults\pref folder where also the channel-prefs.js file is located to specify using mozilla.cfg.
    pref("general.config.filename", "mozilla.cfg");
    pref("general.config.obscure_value", 0);
    These functions can be used in the mozilla.cfg file:
    defaultPref(); // set new default value
    pref(); // set pref, allow changes in current session
    lockPref(); // lock pref, disallow changes
    See:
    *http://kb.mozillazine.org/Locking_preferences
    *http://mike.kaply.com/2012/03/16/customizing-firefox-autoconfig-files/
    *http://mike.kaply.com/2014/01/08/can-firefox-do-this/

  • How to set emails for multiple users?

    Hello,
    We have a scenario, where there are several users whose email is not set in "My Account". We want to set this in one shot, what is the best bet for us?
    Also we want to send email to a person outside OBIEE infrastructure, how can we do this?
    Please reply

    I've found the same problem in OS X Lion, with Mail, iCal and Address Book getting confused when two Exchange accounts on the same server are configured, resulting in either missing or duplicate entries (despite everything appearing fine when accessing the accounts individually via Outlook or OWA).  iOS doesn't have any problem with this setup; two Exchange accounts on the same server work perfectly; the issue seems specific to Mac OS X.
    After some experimentation I've found a workaround.  Since the issue crops up with two Exchange accounts on the same server, it seems possible to trick OS X into thinking the accounts are on two separate servers through a little DNS manipulation (which I realize may not be a practical option for everyone).  Here's what resolved the issue for me:
    My external and internal DNS FQDNs for the mail server were mail.mydomain.com.
    I set up a new DNS entry - mail2.mydomain.com - as a CNAME for mail.mydomain.com.
    On my Mac, I set up Exchange account #1 with the server set to mail.mydomain.com.
    I then set up Exchange account #2 with the server set to mail2.mydomain.com.
    Even though both FQDNs resolve to the same IP, this seems sufficient for Mac OS X to consider them as separate servers, elliminating the problems I had before when I set both Exchange accounts to the same mail server FQDN.
    I've only tried this on OS X 10.7 Lion, and the recent 10.7.1 update, although I wouldn't be surprised if the same trick works for earlier versions of OS X.

  • New to RDS - What do I need to set up for 3 users on 2008R2?

    I need to set up an existing 2008R2 server with the RDS role so that 3 users can remote into the server and use Office applications. I've been on the phone with MSFT for 45 minutes and I think I get it, but I wanted to get a second opinion, and possible
    rant....
    As I understand it, I need 3 licenses for Office 2013 ProPlus in this situation.
    I install Office 2013 on the server with the RDS role using the Office installer.
    I register/license each User account
    that will be logging in to the server (3 of them) as legitimate to use the Office 2013 installed on the server.
    I do not *need* to install Office 2013 on the workstations of the three User's, but I may and not run afoul of the licensing terms.
    Assuming all of that is true (and I doubt it is), I have the following questions:
    Do I have to use 'volume licensing' for this, or can I just buy 3 retail copies of ProPlus?
    Do I *have* to use ProPlus? I do need Outlook.
    Can I use Office 365 ProPlus, and is it cheaper (up front) than the one-time perpetual license? Small Business Premium (see previous Question)?
    Does the server need it's own license, meaning I need 4? If not, is there a special way I need to install Office on the server so it doesn't ask for a license?
    Could a non-registered user (like a server Admin) use the Office installed on the server?
    How many licenses are built into RDS? I recall hearing 2, to be used for admin purposes. So I would need to buy 3 CAL for the three Users intended in this setup?
    What other questions should I have asked?!
    I can't believe it's so complicated. And expensive! A quick perusal suggest a single ProPlus license is about $500! I'm sure once I have had time to digest it things will be fine, but up front, this system is really a pain in the rear.
    Anyway, thanks to those brave enough to attempt to untangle this for me!

    For the O365-on-RDS aspect, bad news, it's not a valid installation scenario.
    You would need a Volume License edition of Office2013 to install upon RDS, because O365 only offers the Click-to-Run installable, and that can't be installed upon RDS:
    http://technet.microsoft.com/en-us/library/ee624360.aspx#Table
    http://community.office365.com/en-us/forums/156/t/138757.aspx
    Don
    (Please take a moment to "Vote as Helpful" and/or "Mark as Answer", where applicable.
    This helps the community, keeps the forums tidy, and recognises useful contributions. Thanks!)

  • Setting access for one user

    Hi,
    Our client has ACS server and implemented AAA fro logging into switches and routers through ACS which is being cofigured RADIUS . They are telnet into rotuers and switches from any user but they are want to setting access from only one user . Can someone plz tell me what can i do to solve yhis problem ?

    Hi,
    If I understand this right, you have multiple users that can access the routers and switches right now but would like it so only 1 username has access?
    If so, you could use NARS (network access restrictions) and deny access to everyone else but the one specific user.
    Just select
    1.Group Setup
    2.Select the group which "already has" router switch access, edit the group settings
    3.Then scroll down to the "per group defined network access restrictions" Enable it with a checkmark.
    4. Select deny calling/point
    5. AAA client = routers and switches (NDG)
    6. Ports = *
    7. Address = *
    8. Hit enter and the new rule will be added to the window above.
    9. Click submit (not submit and restart until you create the other NAR for the other group)
    ***Remember that groups that are mapped to and outside group (ldap, AD) will be able to connect to your routers and switches UNLESS to tell the ACS not to. By default the ACS doesn't know not to let USER1 access the routers but not allow USER2.
    That being said, you'll need to deny access to your routers and switches (network device group) to all groups that are not allowed to connect to those devices.
    Click submit and restart but remember this will stop authenticating users for the time its restarting.
    Hope this helps and feel free to ask anymore questions.
    Craig
    Pls rate helpful posts.

  • Setting locale for OBIEE Users

    Hello All,
    We have a new Chinese user group given access to OBIEE Application. So is there an easy way to set the Locale to Chinese RPC for all Chinese Users ?
    Regards,
    NJ

    Ok, just curious, how does this work with Final Cut Server when there are several workstations and one videoserver?

  • How can I configure FireFox security setting globally for all users on a PC? Is there something I can do in group policies or throught the registry to insure all users have the same settings?

    Our Bank's core processor has rewritten their product to run in a web browser. Their browser of choice is Firefox 3.6. The specifications from our core processor specify specific security and settings parameters that must be adhered to by all users for their product to run properly. Is there a way to globally configure these settings via the registry or group policies to insure everyone who logs in to a given workstation opens Firefox with the same settings? Thank you for any assistance you can provide - Steve Gish, First Bank Kansas.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 5.1; Trident/4.0; .NET CLR 1.1.4322; .NET CLR 2.0.50727; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    You can try:
    *http://kb.mozillazine.org/Locking_preferences

  • Web Agent and Clip Board set up for multi user environment

    Hi
    Our environment is
    Database: 0racle8.1.5 on Sun Solaris
    Currently we are not using OAS but a portal server and Apache
    Intermedia Web Agent and Clip Board are working fine.
    The questions are
    1. if there are multiple users (content managers) who would be adding /modifying content in the database, the how can I go about with Clip board.
    2.The requirement is these people should be able to search documents on the basis of keywords. So how do we integrate Intermedia query capabilities on this clip board interface.
    3. For production level how do we go about implementing.
    Should we continue to have the ctxsys user and use that itself.
    Thank you for any solutions

    I have NO idea if these "exact problems" pertain to Macs, since I think most of these discussions are about Windows... but, some reading (not all PPro, but I put all the links I have saved, just for general information)
    -see #3 http://forums.adobe.com/thread/771151
    -you may NOT "map" your My Documents folder to a network drive
    -you MUST give all users administrator accounts to use Premiere
    -and especially Encore dual layer http://forums.adobe.com/thread/969395
    -#5 Server 2008 is UNsupported http://forums.adobe.com/thread/851602
    -a work around, of sorts http://forums.adobe.com/thread/957523
    -and not on a "domain" http://forums.adobe.com/thread/858977
    -also PreEl see #5 http://forums.adobe.com/thread/1017199
    -more PreEl problem http://forums.adobe.com/thread/975117
    The solution... some day... may be at this link
    Adobe Anywhere http://www.adobe.com/products/adobeanywhere.html

  • How to set privillages for created user with iSQL *Plus

    The hosting company has provided ISQL * Plus interface. I have created user by using the following command:
    Create user test identified by test;
    Grant connect, resource to test;
    But I am unable to load or import data into db. How can I import/load data as its giving permission denied message.
    I think there is a lack of imp/loading data grants. Who do I set?
    Thanks & best regards
    Message was edited by:
    Raakh

    1. which version of the database ?iSQL *Plus 10.2.0.1.0
    2. how you are trying/want to import/load data ?from online control pannel I am selecting the Load Data option and processing 7 steps. message appears "Successfully Loaded" but when am seeing log file its given me
    Step: Load
    Page Refreshed Jun 7, 2007 6:38:47 AM
    Status Succeeded
    Targets orcl
    Started Jun 7, 2007 6:38:11 AM GMT-04:00
    Ended Jun 7, 2007 6:38:11 AM GMT-04:00
    Elapsed Time 0 seconds
    Output Log
    Username:SQL*Loader-704: Internal error: ulconnect: OCIServerAttach [0]
    ORA-12546: TNS:permission denied
    SQL*Loader: Release 10.2.0.1.0 - Production on Thu Jun 7 06:38:11 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    Message was edited by:
    Raakh

  • Setting password for Autologon Default user in registry

    Hi friends
    I don't know is this the right forum to ask this question:
    me along with my colleges are doing some exercises to improve our learnings, so we have setup a test lab which has a test DC & 10 test client computers running windows 8.1 
    as we know, when computers join to domain, the item related to Autologon is removed from netplwiz.
    I know that to be able to use Autlogon feature in joined computers, we can restore the above item by creating the required items via any method like the following:
    $regpath="HKLM:\software\Microsoft\Windows NT \CurrentVersion\Winlogon "
    New-ItemProperty -path $regpath -Name AutoAdminLogon -PropertyType String -Value "1" -Force
    $regpath="HKLM:\software\Microsoft\Windows NT\CurrentVersion\Winlogon"
    New-ItemProperty -path $regpath -Name DefaultDomainName -PropertyType String -Value %USERDOMAIN% -Force
    $regpath="HKLM:\software\Microsoft\Windows NT \CurrentVersion\Winlogon "
    New-ItemProperty -path $regpath -Name DefaultUsername -PropertyType String -Value “administrator” -Force
    the above lines provide required info for Autologon, except the password of the user.because of this we have to sit at every test client & open up netplwiz & manually enter the password for default Autologon user.
    is it possible to define the password for this user as well in the registry?  so that we add it to above lines & save them as a PS script & run that PS script on our test systems so that we don't have to sit at each test client
    & manually set password for default user for Autologon.
    I mean I need when we power on our test clients, they automatically login via domain administrator credentials & be ready to use
    thanks

    The documentation for this might prove helpful:
    http://technet.microsoft.com/en-us/library/cc939702.aspx
    According to the above:
    If you disable automatic logon by setting the value of AutoAdminLogon to 0, delete the value of
    DefaultPassword, which is stored and displayed in the registry editor in plain, unencrypted text.
    (Hint: I found this very quickly by searching for "autoadminlogon" using a search engine.)
    -- Bill Stewart [Bill_Stewart]

Maybe you are looking for

  • Portal Performance

    Hello, we are running on EP6 SP2 Patch 3 and KMC Patch 3 (Windows machines). We are using an Active Directory server to authenticate against it with a custom login module. The Active Directory Groups are mapped to Portal Roles. There is a role concep

  • Migration issue iMac to MacBook Pro

    Migrating data from iMac OS X Lion 10.7.5 to  new MacBook Pro.  Using ethernet and wifi connection to migrate.  MacBook has identified iMac for migration including code; but the iMac is not identifying the MacBook.  Any suggestions?

  • Unix sql script

    hi, I need some help if possible I have the folloiwng script select count(*) from dba_users where account_status !='OPEN' and username not in ( 'PROD_HCUST_HK', 'MDSYS', 'SCOTT', 'WMSYS', 'CTXSYS', 'ANONYMOUS', 'OUTLN', 'MGMT_VIEW', 'SI_INFORMTN_SCHE

  • How to disable remote wipe option for mobile devices

    Hi, I have integrated environment of SCCM 2012 R2 and Windows Intune. I am managing Windows phone, Android and IOS devices through this setup. I was trying find an option to disable remote wipe option in the SCCM Console. Only selective wipe should b

  • Preview mode showing some elements shifted vertical ;(

    One of my pages if showing some elements shifted vertically when viewing in preview mode. Its rather annoying as only one page is showing this. The design section shows all elements as they should be. Please help!! Image showing design mode as intend