How to setup a user account?

i am new to the macbook air and have logged in and made an account but now i want to make another and have no idea how to.

http://support.apple.com/kb/PH11468
The process is the same for Mavericks.

Similar Messages

  • How to setup a user account for brtools backup

    Dear Sir,
    We have SAP running on Unix (AIX) and ORACLE Database . For the backup , we take the backup using brtools . At present , I am able to take the backup from the  dba user account .
    DBA user account (at os level) is oradv and group name is sapsys .
    For taking the routine backup using brtools , I want to create a seperate user account . For this I created a user , named bkup . For this user , I have defined primery group as sapsys .
    During execution of brtools command , I am getting following error :
    BR0252E Function stat() failed for '/usr/sap/DEV/SYS/exe/run/brarchive' at location BrFileStatGet-1
    BR0253E errno 13: Permission denied
    BR0273E Determination of file status for /usr/sap/DEV/SYS/exe/run/brarchive failed
    Kindly guide us , as what parameters / authorization etc need to be changed for user account bkup , so that brtools command can work without any error .
    With Thanks and Rgds
    Sonia Agarwal

    do lsuser oradv, check it's authorizations and give same auths to new user bkup

  • File permissions - how to edit a user account

    file permissions - how to edit a user account that is creating files with permissions that are not wanted anymore.
    i understand how to reset permissions on files or folders, but i do not understand how to reset the permissions a user is "creating".
    ie, each time this user creates a file, the file needs to be manually edited for its permissions. so i need to edit the user's settings, but i can't find where to do that.
    this is a home office setup. we have two users with admin privileges. our imac is acting as a server of sorts - it holds common files that need to be edited by both users. the other user is typically working on shared files from a macbook over wifi.
    osx 10.6.8
    any help is greatly appreciated - thanks up front!
    adam

    Király wrote:
    Changing the umask does not produce reliable results. Many apps, including Apple's own Finder, will override any custom umask setting and apply the OS X standard set of read and write for the creator, and read only for group and others. This is true even in Snow Leopard
    I cannot argue with you, because I've never tried or tested it myself. However, this KB article
    <http://support.apple.com/kb/HT2202>
    states the opposite:
    "In Mac OS X v10.5.3 and later, you can create the file /etc/launchd-user.conf with the contents "umask nnn". […]
    This will set the user's umask for all applications they launch, such as Finder, TextEdit, or Final Cut Pro, and control the permissions set on new files created by any of these applications."

  • How to create a user account by mirroring another account in PowerShell (Trying to learn to use Powshell for some daily AD tasks intead of the GUI)

    Hi,
    I am trying to create user accounts via PowerShell instead of the Gui in server 2008 R2 (PowerShell 2.0).
    I know how to create a user account with the following Power Shell command below is one from a dummy domain I created to practice.
    PS C:\Users\Administrator> New-ADUser -SamAccountName "TestOut" -UserPrincipalNa
    me "[email protected]" -GivenName "Test" -Surname "out" -DisplayName "Testou
    t" -Name "Testout" -Enabled $true -Path "CN=users,DC=bwcat,DC=net,DC=int" -Accou
    ntPassword (Read-Host -AsSecureString "Enter Account Password") 
    However when doing day to day tasks where I work normally we have a new hire, they contact IT and ask that a user account is created.   I will ask who they would like to mirror.
    I then would go into the gui pull up the user that they want to mirror right click him and choose copy.  This would create a new user account that I would then fill out.
    I am wondering if its possible to do this same thing via PowerShell, or  if its not an option because it takes more work type up everything than it does to go into the gui and do it.
    Anyway thanks for the help.

    Hi Wilder, hi Mark,
    first of all: The tutorial sources Mark posted - especially the book "Powershell 3 in A month of lunches" - are good to get a baseline start. A really great reference, especially when you try to learn it while still dealing with your daily business.
    On another note, Wilder: While I fully agree that learning things sequentially is usually the best, I too jumped right in instead of learning how to walk first (though it's been some time now. Fewer years than you'd think, but still ...). So I thought I'd
    give you a little aid with that function husk, so you could just stuff interesting bits into an available structure, making use of the fun tools in a useful context (It's fun fiddling around with the commands, but if you have to type in all of them manually
    each time, using the GUI is often just faster. Doing fun things and being efficient with it feels even better though ...). So ... while I
    do agree with yourself, learn it the Correct & Proper Way, I also do
    intend to finish this little explanation about the husk, all the way to the end.
    Everything below this paragraph is part of this.
    function Copy-ADUser
    <#
    .SYNOPSIS
    A brief description of the Copy-ADUser function.
    .DESCRIPTION
    A detailed description of the Copy-ADUser function.
    .PARAMETER GivenName
    A description of the GivenName parameter.
    .PARAMETER Surname
    A description of the Surname parameter.
    .PARAMETER Template
    A description of the Template parameter.
    .EXAMPLE
    PS C:\> Copy-ADUser -GivenName "Max" -Surname "Mustermann" -Template "Jonny.Normal"
    .NOTES
    Additional information about the function.
    #>
    [CmdletBinding()]
    Param (
    [Parameter(Mandatory = $true)]
    [string]
    $Surname,
    [Parameter(Mandatory = $true)]
    [string]
    $GivenName,
    [Parameter(Mandatory = $true)]
    [string]
    $Template
    ) # Create finished Strings
    $JoinedName = $GivenName + "." + $Surname
    # Create new User
    $NewUser = New-ADUser -Surname $Surname -GivenName $GivenName -DisplayName "$Surname, $GivenName" -SamAccountName $JoinedName -Name "$Surename, $GivenName" -PassThru
    # Copy from old User
    $NewUser | Add-ADPrincipalGroupMembership -MemberOf (Get-ADPrincipalGroupMembership $Template | Where { $_.Name -ne 'Domain Users' })
    # Do Whatever else you feel like doing
    This is again the same function husk I posted earlier. Only this time, I filled a little logic (the pieces that were already posted in this thread). This time, I'll not only go over each part again ... I'll do it by reposting the segments and trying to show
    some examples on how to modify the parts. Thus some of it will be repetitive, but this way all the info is in one spot.
    Segment: Comment Based Help
    <#
    .SYNOPSIS
    A brief description of the Copy-ADUser function.
    .DESCRIPTION
    A detailed description of the Copy-ADUser function.
    .PARAMETER GivenName
    A description of the GivenName parameter.
    .PARAMETER Surname
    A description of the Surname parameter.
    .PARAMETER Template
    A description of the Template parameter.
    .EXAMPLE
    PS C:\> Copy-ADUser -GivenName "Max" -Surname "Mustermann" -Template "Jonny.Normal"
    .NOTES
    Additional information about the function.
    #>
    That's the premier documentation part of a function, that teaches a user what the function does and how to use it. It's what's shown when using the Get-Help cmdlet.
    Comment texts are not restricted to single lines however. For example you could replace ...
    .EXAMPLE
    PS C:\> Copy-ADUser -GivenName "Max" -Surname "Mustermann" -Template "Jonny.Normal"
    ... with ...
    .EXAMPLE
    PS C:\> Copy-ADUser -GivenName "Max" -Surname "Mustermann" -Template "Jonny.Normal"
    Creates a new user named Max Mustermann and copies the group memberships of the already existing user Jonny Normal to this new User
    ... and get an explanation on what the example does when using Get-Help with the
    -Detailed parameter (Explaining examples is always a good idea).
    Segment: Parameter
    [CmdletBinding()]
    Param (
    [Parameter(Mandatory = $true)]
    [string]
    $Surname,
    [Parameter(Mandatory = $true)]
    [string]
    $GivenName,
    [Parameter(Mandatory = $true)]
    [string]
    $Template
    This is the segment that tells Powershell what input your function accepts. Each parameter of Copy-ADUser you set will be available in the next segment as a variable of the same name. You can add additional parameters if you need more information for your
    logic. For example, let's add a parameter that allows you to specify what Organization the new user should belong to:
    [CmdletBinding()]
    Param (
    [Parameter(Mandatory = $true)]
    [string]
    $Surname,
    [Parameter(Mandatory = $true)]
    [string]
    $GivenName,
    [string]
    $Organization,
    [Parameter(Mandatory = $true)]
    [string]
    $Template
    That's how that would look like. You may notice that I didn't add the line with
    "[Parameter(Mandatory = $true)] this time. This means you
    may add the Organization parameter when calling Copy-ADUser, but you need not.
    Segment: Logic
    # Create new User
    $NewUser = New-ADUser -Surname $Surname -GivenName $GivenName -DisplayName "$Surname, $GivenName" -SamAccountName "$GivenName.$Surename" -Name "$Surename, $GivenName" -PassThru
    # Copy from old User
    $NewUser | Add-ADPrincipalGroupMembership -MemberOf (Get-ADPrincipalGroupMembership $Template | Where { $_.Name -ne 'Domain Users' })
    # Do Whatever else you feel like doing
    This is the part of the function that does the actual work. Compared to the first husk I posted, this time there are two commands in it (and some comments). First, I create a new user, using the information passed into
    the parameters -Surname and -GivenName. Then I Copy the group memberships of the user identified by the information given by the
    -Template parameter.
    So, let's modify it!
    # Tell the user you are starting
    Write-Host "Starting to create the user account for $GivenName $Surname"
    # Create new User
    $NewUser = New-ADUser -Surname $Surname -GivenName $GivenName -DisplayName "$Surname, $GivenName" -SamAccountName "$GivenName.$Surename" -Name "$Surename, $GivenName" -PassThru
    # Tell the user you are copying Group Memberships
    Write-Host "Copying the group-memberhips of $Template to $GivenName $Surname"
    # Copy from old User
    $NewUser | Add-ADPrincipalGroupMembership -MemberOf (Get-ADPrincipalGroupMembership $Template | Where { $_.Name -ne 'Domain Users' })
    # Do Whatever else you feel like doing
    Now after adding a few lines, the logic will tell us what it's doing (and do so before it
    is taking action)!
    Hm ... didn't we create a change in the Parameter Segment to add an -Organization parameter? Let's use it!
    # If the -Organization parameter was set, the $Organization variable will be longer than 0. Thus do ...
    if ($Organization.Length -gt 0)
    # Tell the user you are starting
    Write-Host "Starting to create the user account for $GivenName $Surname in the Organization $Organization"
    # Create new User
    $NewUser = New-ADUser -Surname $Surname -GivenName $GivenName -DisplayName "$Surname, $GivenName" -SamAccountName "$GivenName.$Surename" -Name "$Surename, $GivenName" -Organization $Organization -PassThru
    # If the -Organization parameter was NOT set, the $Organization variable will have a length of 0. Thus the if-condition does not apply, thus we do the else block
    else
    # Tell the user you are starting
    Write-Host "Starting to create the user account for $GivenName $Surname"
    # Create new User
    $NewUser = New-ADUser -Surname $Surname -GivenName $GivenName -DisplayName "$Surname, $GivenName" -SamAccountName "$GivenName.$Surename" -Name "$Surename, $GivenName" -PassThru
    # Tell the user you are copying Group Memberships
    Write-Host "Copying the group-memberhips of $Template to $GivenName $Surname"
    # Copy from old User
    $NewUser | Add-ADPrincipalGroupMembership -MemberOf (Get-ADPrincipalGroupMembership $Template | Where { $_.Name -ne 'Domain Users' })
    # Do Whatever else you feel like doing
    There! Now we first check whether the -Organization parameter was set (it's not mandatory after all, so you can skip it). If it
    was set, do whatever is in the curly braces after if (...). However, if it wasn't set, do whatever is in the curly braces after
    else.
    And that concludes my "minor" (and hopefully helpful) tutorial on how to use the function husk I posted :)
    With this, whenever you find another cool command that helps you in the user creation process, you can simply add it, similar to what I did in these examples.
    And if it all didn't make much sense, go through the tutorials in proper order and come back - it'll make much more sense then.
    Cheers and good luck with PowerShell,
    Fred
    There's no place like 127.0.0.1

  • Help , how to auto create user account

    Hi, guys,
    i wanna to know how to auto create user account after use the suppliers' api to create supplier.
    i didn't find out how to auto create user account by use ap_vendor_pub_pkg.create_vendor_contact procedure.
    how to auto create the user account ?
    if you know ,tell me ,pls
    best Regards !
    Edited by: wanjin on 2013-4-15 下午11:50

    Hi Gareth,
    I wanna create an Oracle E-business Suite use account ,but how to use fnd_user_pkg.createuser procedure to relation the AP suppliers , not employee suppliers.
    the result like N:Purchasing Super User -->supplier-->Contact Directory --> create user
    then use "Create User Account for this Contact" to create user account
    Regards,
    Wanjin

  • How to set up user account in Windows 7/Premiere Elements 8.0/8.0.1?

    At the present time I have only the Windows XP Professional SP3 32 bit operating system which works from a User Account with Adminstrative Privileges when it comes to using Premiere Elements.
    I have read that in Windows 7, the default user account is one with standard rights. My first question is, when using Premiere Elements 8.0/8.0.1 in general in a Windows 7 32 or 64 bit environment, do you have to elevate the user account to one with adminstrative rights and, if so, how?
    My second question is, is there anything in the Windows 7 user account setup that would specifically target the Premiere Elements Project Archiver/Archiver "Trimmed" as well as Copy options to abort with the message "no user privileges to perform this operation"? The rest of the program performs OK. Supposedly inadequate hard drive space is not a factor.
    Thanks for any insights into these two questions.
    ATR

    SG
    Just an update to the question that I presented when I started this thread.
    You really never did say what type of a User Account you are using in your Premiere Elements 8.0/8.0.1 on Windows 7? But based on the information provided by several users, User Account with Administrative Rights seems to be the way to go since all of them were using it and had systems that were running well. I would have expected that based on the Premiere Elements Windows XP requirements. I have yet to have someone come forward to say that they are using Premiere Elements 8.0/8.0.1 on Windows 7 with a User Account with Standard Rights and the program is running well. Will you be that one?
    Besides me switching from Windows XP to Windows 7 in the near future, what motivated this line of questioning was the report that I had seen of a user with Premiere Elements 8.0/8.0.1on Windows 7 who was reporting "permission" error messages when trying to archive a project with the Project Archiver (Archiver "Trimmed" and Copy options). Further questioning brought out that the problem extended to the AutoSave feature as well. The user claimed to be saving to an external hard drive (formatted NTFS) with about 800 MB free space. And still further questioning brought out that the error message included a free space and/or permissions error. Yes, there were extremely large file sizes involved here (way over 4 GB)
    The story had a happy ending where the remedies were:
    1. User Account with Administrative Rights
    and the major
    2. Formatting the thought to be NTFS external hard drive from FAT32 to NTFS.
    ATR

  • How to create new user account and delete old one?

    Greetings,
    we have wanted to change our alias on the discussions group but understand from the frequently asked questions section that,
    "Once you create an alias, you cannot make changes to it. If you want to change your alias, you will need to create a new User Account".
    However it does not go on to tell us specifically how to now set up a "new User Account". Could someone specify how to do this? And if we do this, how would we then delete the current User Account? Thank you.
    Chris

    Colleen Von Eckartsberg wrote:
    Thanks for the reply.
    However I am still confused. I originally thought the "user account" referred to an account specific to the Discussions Forums, not the general "Apple ID" however your email seems to suggest they are one and the same....Please clarify.
    If so, however I do not think I am able to change my Apple ID. As I am a mobile me user I am required to us my mobile me address for my apple ID.....and do not think I can have two ID's with the same mobile me address.....
    Any additional thoughts are appreciated. Thanks.
    Chris
    Not with the same Primary address, but you can use your MM address as a secondary one. That is how I have my 2 Apple IDs setup. 1 uses my Dot Mac address and the other uses an ISP address as the Primary with the latter having my Dot Mac address as an alternate address.
    Warning, even if you create a new account, you won't be able to use your current ALIAS with the new account.

  • How to retrieve guest user account backup

    I have an iMac and a time capsule.  A large number of pictures were loaded into I Photo in the guest account of my iMac.  I cannot now find these pictures as I understand that guest accounts are wiped clean each time the guest account is lodged out from.
    Given that we did not log out from the quest account for a couple of days, i am hopeful that the guest account was backed up by time capsule.  I cannot find the guest account on the backed up time capsule.  Does anyone have any suggestions whether TC backs up the guest account and if so, how can I locate it in TC.
    Thanks very much.  David

    Did you have the main account logged in as well as guest at the time? Do you have TM setup in the guest account?
    It is very unlikely TM backed it up. If it did simply mount the sparsebundle in finder and go through all the folders until you find the guest user account and check if there is anything there. If not sorry it was never backed up.
    The only solution I can see if to use a recovery software for the camera. Whatever source of the photos was.. stop using the memory card in that camera now.. use the recovery software as the files will be there until overwritten for the next lot of pictures.
    Pondini has all the info for recovery of files from TM.
    See Q15 here. http://pondini.org/TM/FAQ.html
    There is a section for iphoto.. but IMHO it won't be backed up.

  • How to set up user account and share folders

    We are a family of four sharing our first iMac. I would like to set up one account for my wife and I and one account for my kids on which I plan to enable Parental Controls.
    I have struggled with setting up my kids user account. After setting up a Standard account for the kids - I noticed none of our music or files were visible in the kids accounts. I spent 20 min on the phone with Apple and the tech was clueless. He had me copying my music folder all over the computer until I had about 6 copies of the same folder. I did figure out how to move the music library to SHARED folder and redirect iTunes source folder to the same shared folder.
    My problem now - when I copy my documents to the SHARED folder my kids can see the files and open them, but they can not save them. How do I give the kids account read write privileges?
    Should I set up a GROUP account instead?
    I need the best way to have two or three users who can access all data on the same iMac, while giving me the ability to enable Parental Controls on the accounts.

    Do this:
    Here's how to set it up by using ACLs:
    1. Create a new folder in /Users/Shared. Call it "Sharefolder".
    2. Log in to an Admin account, open Terminal and paste in all of this at the same time:
    chmod -R +a "everyone allow delete,chown,list,search,add_file,\
    addsubdirectory,delete_child,file_inherit,directoryinherit" \
    /Users/Shared/Sharefolder
    That will automatically make everything copied or created to the sharefolder writable by all users. Note: After setting this up, if you have existing files that you want to move to the sharefolder, hold down the option key when dragging them in. That will make new copies of them in the sharefolder. Dragging existing files in (i.e. simply moving them there) won't cause the ACL to inherit properly and they won't be writable by all users. Files that are copied or +newly created+ in the sharefolder shouldn't have this problem.
    Make sure you keep good backups. One user accidentally deleting a shared file will affect everybody else who uses it.

  • How do I remove user account with UID=0 (except of root)

    Macbook Pro 13; I have Parallels software and did not realize I needed to upgrade to version 10 before upgrading to OS X Yosemite.  I get an error stating Parallels 10 cannot be installed because there is a user account other than root that has UID=0.  I checked UIDs in Terminal Utilities and there is one other username with UID=0  How do I remove username peggy?
    MacBook-Pro:~ pmcvicar$ dscl . -list /Users UniqueID
    _amavisd                83
    _appleevents            55
    _appowner               87
    _appserver              79
    _ard                    67
    _assetcache             235
    _astris                 245
    _atsserver              97
    _avbdeviced             229
    _calendar               93
    _ces                    32
    _clamav                 82
    _coreaudiod             202
    _coremediaiod           236
    _cvmsroot               212
    _cvs                    72
    _cyrus                  77
    _devdocs                59
    _devicemgr              220
    _displaypolicyd         244
    _distnote               241
    _dovecot                214
    _dovenull               227
    _dpaudio                215
    _eppc                   71
    _ftp                    98
    _geod                   56
    _iconservices           240
    _installassistant       25
    _installer              96
    _jabber                 84
    _kadmin_admin           218
    _kadmin_changepw        219
    _krb_anonymous          234
    _krb_changepw           232
    _krb_kadmin             231
    _krb_kerberos           233
    _krb_krbtgt             230
    _krbfast                246
    _krbtgt                 217
    _launchservicesd        239
    _lda                    211
    _locationd              205
    _lp                     26
    _mailman                78
    _mcxalr                 54
    _mdnsresponder          65
    _mysql                  74
    _netbios                222
    _netstatistics          228
    _networkd               24
    _nsurlsessiond          242
    _nsurlstoraged          243
    _pcastagent             55
    _pcastlibrary           225
    _pcastserver            56
    _postfix                27
    _postgres               216
    _qtss                   76
    _sandbox                60
    _screensaver            203
    _scsd                   31
    _securityagent          92
    _serialnumberd          58
    _softwareupdate         200
    _spotlight              89
    _sshd                   75
    _svn                    73
    _taskgated              13
    _teamsserver            94
    _timezone               210
    _tokend                 91
    _trustevaluationagent   208
    _unknown                99
    _update_sharing         95
    _usbmuxd                213
    _uucp                   4
    _warmd                  224
    _webauthserver          221
    _windowserver           88
    _www                    70
    _xcsbuildagent          237
    _xcscredserver          238
    _xgridagent             86
    _xgridcontroller        85
    daemon                  1
    deputydebi              504
    Guest                   201
    nobody                  -2
    peggy                   0
    pmcvicar                501
    root                    0
    MacBook-Pro:~ pmcvicar$

    BobM53, That would be needed regardless of what front end my users log in with, in my case I was looking for them to access the DIT via the DSCC/DCC, which is not possible.  Regardless, thank you for your reply, it is reassuring to know I am headed in the right direction.
    I am now looking towards installing something else like Apache Directory Studio, or some other GUI for users to manage the directory. 
    I will most likely create one or more ACI's to build groups, adding members to those groups as needed; each group being allowed to perform functions such as create users, lockout users, add/modify hosts, etc.
    I will most likely follow the steps outlined in:
    Directory Server Groups, Roles, and CoS - 11g Release 1 (11.1.1.7.0)
    Slightly OT, does anyone have a suitable and similar proven method to "lockdown" root accounts, and who has root access?
    Thank you

  • How to copy a user account from one Mac to another

    If I have a main user (admin) account on one Mac, and want to copy its Home Folder over to another Mac that already has user accounts on it, what is the best way to do it?
    For example, if I boot the source Mac in Target Disk Mode then connect it to the other Mac, can I just drag and drop from its Users folder into the Users folder on the other Mac? And would that then appear in SysPref/Accounts, complete with names and passwords etc, or is it not that simple?
    (Actually, I just checked by launching Migration Assistant, and it seems to indicate I can use it to copy User Accounts from a different Mac - is this all I need? How would I connect the two Macs for this to work?)

    Slightly confusing, that article - it talks about using Migration Assistant in Lion or Mountain Lion, but in my case both computers have used Snow Leopard. Does it still apply?
    (One other observation - don't you find it confusing the way Apple defines "Target Disk Mode"? It's pretty much always the case that a computer booted in this way becomes the Source computer, while the Target computer is the one it's connected to!!)

  • How can I delete user account picture in Windows 8?

    I have set my account picture, but now want to delete the pic and back to the default.
    How can I do it?

    Hello,
    The userpic, the image tiles used for your account picture, is located, in different resolutions, in the following folder: C:\Users\Public\AccountPictures\%UserAccountSecurityIdentifier%
    where %UserAccountSecurityIdentifier% is a placeholder for the Security IDentifier (SID) assigned by the operating system or domain controller to your user account.
    Here is how it looks like:
    NOTE: If your are using multiple account for login to your computer, like local Security Account Manager (SAM) account (standard account created and stored on your local PC in NTFS), your Microsoft Account (the one using internet account name provided
    by Microsoft such as [email protected],
    [email protected]), or an Active Directory account, please open root C:\Users\Public\AccountPictures\ folder and browse to the folder with the name of the SID assigned to your user account for which you want to change the user picture.
    To find out what SID refers to what user account name used on your PC, proceed with the following:
    Start the elevated command prompt by pressing WindowsKey+Q and typing
    cmd, then hitting Enter.
    At the command prompt type: wmic useraccount get name,sid and press
    Enter.
    This will return a table with all user accounts registered on this computer (that is those who had once logged onto this PC) and their corresponding SIDs.
    Now lookup this registry key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\AccountPicture\Users
    And locate the subkey (named correspondingly to the desired SID), then remove REG_SZ values that contain paths to the userpic images to remove traces of userpics.
    WARNING: Please create new system restore point before making this registry change!
    Hope this helps.
    Well this is the world we live in And these are the hands we're given...

  • How to create Mobile User Account

    Hi all,
    I have a dumb question but it makes me crazy !!!
    I'm new in CRM 5.2 and in mobile as weel.
    My question is : How to create a user acount into my mobile infrastructure ?
    I've followed the following explanation but I don't find the solution :
    [help|http://help.sap.com/saphelp_crm60/helpdata/de/c8/2ae1a3c73245c8aef8c4b69c2ff072/content.htm]
    In there, it tells me to go thought User Management tool of Mobile Application Studio ( is it Microsoft Visual Studio ?) but in there i do not find any tools.
    Thanks for your future help
    Regards

    hi,
    Creation of User Accounts
    Purpose
    This process describes the steps required to create user accounts for secured and controlled access to the Mobile Application Repository (MAR). User accounts are created for consultants, who intend to customize mobile client applications using Mobile Application Studio (MAS). User account allows a consultant to log on to MAS.
    Process Flow
           1.      During the installation of MAR, the system enables the User Management feature.
    If MAR is upgraded from a release prior to 3.0 to the current release, the User Management feature must be enabled manually by system administrator. This is done by changing the umfrc parameter value to “YES” in the ARS_SYSTABLE.
           2.      The CRM technical administrator creates a DSN to access MAR by using the default internal login arsdb with password arsdb.
           3.      The CRM technical administrator carries out the following tasks using the User Manager tool of MAS:
                                a.      Creates user accounts.
                                b.      Associates each user account with a standard MAR profile. For more information, see Profiles of the Mobile Application Repository.
                                c.      Specifies a password for each user account.
    Login IDs of the Mobile Application Repository
    Definition
    A login ID is a source through which users log on to Mobile Application Studio, and connect to the Mobile Application Repository (MAR). When MAR is installed, standard login IDs are available by default. While creating user accounts, the system administrator associates a standard login ID with the profile of each user account.
    Structure
    Login ID
    Allows you to:
    ARSAdmin
    ·        Perform administrative activities in MAR.
    ·        Create and modify development objects in MAR.
    ·        Modify the password of a user account.
    ARSDeveloper
    ·        Create and modify development objects in MAR.
    ·        Modify your own password.
    ARSUser
    ·        View development objects in MAR.
    ·        Modify your own password.
    ARSSys
    ·        Get information about the MAR.
    ·        Validate MAR users.
    ARSdb
    Create a DSN for MAR. The default password for this login is arsdb.
    Profiles of the Mobile Application Repository
    Definition
    A profile of the Mobile Application Repository (MAR) is a collection of access rights defined for:
    ·        Development objects, like tiles, tile sets and business objects of mobile client applications
    ·        Services of MAR like change lists and namespaces
    Structure
    The standard profiles that are available are listed below.
    Profile name
    Associated login ID
    Allows you to:
    Administrator
    ARSAdmin
    ·        Perform administrative activities like creating and maintaining users.
    ·        Read and write repository specific information (ARS_SYSTABLE).
    ·        Create and modify development objects in MAR.
    ·        Release and revert a change list.
    ·        Transfer the ownership of objects to another MAR.
    ·        Create link objects to integrate tile set help.
    ·        Create and modify framework objects in MAR.
    ROGuest
    ARSUser
    ·        View development objects in MAR.
    ·        Modify your own password.
    Developer
    ARSDeveloper
    ·        Read repository specific information (ARS_SYSTABLE).
    ·        Create and modify development objects in MAR.
    ·        Release change lists that have been created only by you.
    ·        Modify your own password.
    ·        Transfer the ownership of objects to another MAR.
    SPDeveloper
    ARSDeveloper
    ·        Read repository specific information (ARS_SYSTABLE).
    ·        Modify your own password.
    ·        Create and modify development objects in MAR.
    This profile does not allow you to release change lists.
    QMResponsible
    ARSDeveloper
    ·        Read repository specific information (ARS_SYSTABLE).
    ·        Create and modify development objects in MAR.
    ·        Modify your own password.
    ·        Transfer the ownership of objects to another MAR.
    ·        Release and revert change lists.
    This profile does not allow you to create a change list.
    Coordinator
    ARSDeveloper
    ·        Read repository specific information (ARS_SYSTABLE).
    ·        Create and modify development objects in MAR.
    ·        Release and revert change lists.
    ·        Modify your own password.
    ·        Transfer the ownership of objects to another MAR.
    Frwkuser
    ARSDeveloper
    ·        Read repository specific information (ARS_SYSTABLE).
    ·        Create and modify development objects in MAR.
    ·        Release the change list you have created.
    ·        Transfer the ownership of objects to another MAR.
    ·        Create and modify framework objects in MAR.
    Infodeveloper
    ARSDeveloper
    ·        Read repository specific information (ARS_SYSTABLE).
    ·        Create and modify development objects in MAR.
    ·        Release the change list you have created.
    ·        Create link objects to integrate tile set help.
    thanks
    karthik
    ifhelpfull reward me some points

  • How to disable guest user account on iMAC

    I upgraded to Lion and now I have a guest user account on the log in screen. I want to disable this account. How do I get rid of it?

    System Preferences > Users & Groups > Guest User (you may need to authenticate) and uncheck "Allow guests to log in to this computer".

  • How to delete Guest User Account

    I just got my Mac book Pro and I'm new to Mac. I created a Guest User Account and now I want to delete it. But the - (minus) option is grey out. How can I delete the Guest User Account? I have two accounts listed right now. The Admin and the Guest Account. Thanks for your help.
    p.s. I just found out I couldn't even open the folders under the Guest directory! How come? I am the Admin and should be able to do that. What did I do wrong? Help!!!

    I should also say that sometime in the future you might have a problem with something, and one of the first things you should test is, do you have the same problem in another account, so having a Guest Account is a good thing.
    You just log in as Guest and test to see if you have the same problem. So it might be a good idea to leave it active, for it takes up very little space. I always have more than one Account, and this new Guest Account sounds good to me, I like the idea that everything is deleted after log off.

Maybe you are looking for

  • How can i convert ppt file into a keynote using windows 7 ?

    can i change a powerpoint file into a keynote file on my labtop using my windows 7 ?? if yes can i send it to someone who has mac OS and will it work well with him?

  • Internal Logic sync issue

    hello Community: I'm stuck in writing limbo now , due to a bizarre and never before seen  problem in Logic 9.1.4 a Sync or internal timing issue.....for no reason of my doing, this is what occurs: 1. Using my same Autoload setup used for years, and a

  • Does iPhoto 6 support RAW files?

    Seems that some of my RAW images are not importing into iPhoto 6. They are taken with the Panasonic Lumix L1 SLR. So question is whether or not iPhoto supports RAW files, and is it specific to the camera model which might have its own proprietary RAW

  • Automatic of deletion of Spool requests

    Hi, Scheduled job SAP_REORG_SPOOL is running every night on our Production system.  Yet this morning we discovered our Spool database was full. I've checked note 64333 and confirmed that the following parameter is set: c_def_pexpi   like pri_params_p

  • Compilation Errror in File program

    Hi, When I Compile this program in command prompt I got this error: Note: AA.java uses or overrides a deprecated API. Note: Recompile with -deprecation for details. Pgm: import java.io.*; public class AA      public static void main(String[] args)