Webbased Creation of unique user account

Cant find any solution on where to get studens to write in there own credentials on a webbased form, then get the Open Directory accept this information.
Please help if you know a solution on this topic!

http://sourceforge.net/projects/osxpass/
HTH
-Ralph

Similar Messages

  • HT202213 I have 3 users on one computer with 3 unique user accounts.  Each have unique ITunes accounts.  How do we share our music libraries using home sharing?

    I have 3 users on one computer with 3 unique user accounts.  Each of us have separate and unique ITunes accounts.  How do we share our music libraries using Home Sharing?  Everything that I can find talks about sharing between networked computers, but this is all on the same computer.  I just want to share between ITunes accounts.  Thanks!

    Hi b noir, I also have two users on one pc with two different iTunes libraries.  But I also want to put them onto an external hard drive so that I can free up some memory on the pc.  So I figure I need to consolidate the two users iTunes libraries first before moving to hard drive?  But not quite sure how to do that on the iTunes 11?  Thanking you in advance!!

  • Create unique user accounts for each Oracle process

    hi,
    Please tell me the command to create unique user accounts for each Oracle process
    Thanks

    create unique user accounts for each Oracle processWhat do you mean by unique user account for each oracle process ? Provide more information.
    do you mean create oracle user?
    create user <username> identified by <password> default tablespace <tablespace_name>;
    -Anantha

  • Home directory creation for local user accounts using powershell

    Through Computer Management when I create a user, a home directory is created for the same user in the folder C:\Users.I am creating a user through powershell in a remote machine.I am using the following script to create user 
    $comp = [ADSI]'WinNT://localhost,computer';
    $user = $comp.Create('User', 'account7');
    $user.SetPassword('Welcome1');
    $user.SetInfo();
    The account is getting created. But no home directory is created for this user. How to create a home directory for a user using powershell? Also the user created through GUI is a member of the group 'Users' by default. How to add the user created to the
    'Users'  Group.

    Hi Cmm user,
    Thanks for your posting.
    To set the attribute of homedirectory for a user in powershell, please also try the cmdlet set-aduser:
    import-module activedirectory
    $HomeDrive=’Z:’
    $UserRoot=’\\CONTOSO-FPS\Users$\’
    $HomeDirectory=$UserRoot+$AccountName
    SET-ADUSER $AccountName –HomeDrive $HomeDrive –HomeDirectory $HomeDirectory
    I hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Separate user account

    Separate user account for Management/Intelligent Agent      
    For Unix systems, create a unique user account for the management/Intelligent Agent process in order to differentiate accountability and file access controls. The agent database accounts must be separated. Separate accounts are not recommended for Windows environments.
    How to check this one
    and how to fix this one
    Thanks in advance
    Regards,
    Muthu

    The account that will own the OMS would preferably be the user oracle.
    Actually the same goes for the Agent. Yes it is possible to have a different user be the owner of the Agent software, but I would not recommend this. If not necessary why complicating things. If both the OMS and OMA are owned by the same user, maintaining and management of these components is most simple.
    Regards
    Rob

  • Flat File Active Sync doesn't work for account creation without unique id

    Hi,
    I'm trying to set up a FlatFileActiveSync for creation and update of accounts in IDM 7.0. I've followed the below steps for this purpose :-
    1) Create a correlation rule (confirmation rule not reqd in my case).
    2) Create a proxy admin and assign him a empty form. Also give him control over Top organisation.
    3) Create a Flat-File Resource Adapter.
    4) Create ActiveSync input form using the (Active Sync) wizard.
    5) Start Active Sync...
    My feed file contains only 3 fields firstname, lastname, email Id.
    My correlation rule has the logic of matching up with IDM accounts(Lighthouse accountId) by taking first letter of firstname and concat with lastname from the data coming from feed file.
    Now everything works fine for account updates i.e. if I change somebody's email Id who already exists in IDM I can actually see the changed email Id in Configurator's console.
    But if I put in a record that doesn't exist, and which I expect to be created, it gives me an error.
    Although, if I introduce a unique identifier in my feed file and link it with Lighthouse.accountId the account creation works fine.
    Is this a limitation or I'm not doing something right ?
    Exception I saw in resource log with log level 4 :
    2007-04-30T10:02:12.291-0400: Error Processing Line: {lastname=Pogu, firstname=Gogu, [email protected]}
    com.waveset.adapter.iapi.IAPIException: There was a conflict with the record [{lastname=Pogu, firstname=Gogu, [email protected]}]
    and no resolution process has been specified on the adapter.
    It is recommended that you define the process for handling unmatched accounts
    on this load process.
    2007-04-30T10:02:12.292-0400: Poll complete.
    2007-04-30T10:02:12.292-0400: SARunner: loop 1076
    2007-04-30T10:02:12.314-0400: Started, paused until Mon Apr 30 10:07:12 EDT 2007
    2007-04-30T10:07:12.024-0400: Pause completed
    2007-04-30T10:07:12.038-0400: Polling
    2007-04-30T10:07:12.056-0400: Error Processing Line: {lastname=Poker, firstname=Hoker, [email protected]}
    com.waveset.adapter.iapi.IAPIException: There was a conflict with the record [{lastname=Poker, firstname=Hoker, [email protected]}]
    and no resolution process has been specified on the adapter.
    It is recommended that you define the process for handling unmatched accounts
    on this load process.

    That logic is in my correlation rule as I specified in my initial post and here's the XPRESS code for it :-
    <?xml version='1.0' encoding='UTF-8'?>
    <!DOCTYPE Rule PUBLIC 'waveset.dtd' 'waveset.dtd'>
    <!-- MemberObjectGroups="#ID#Top" description="Find out if a resource account is correlated to an IDM account" id="#ID#D23CC16ECF6E5D42:-4527465C:11224925657:-769F" lastMod="61" lastModifier="Configurator" name="HR_DB_CORR" subtype="SUBTYPE_ACCOUNT_CORRELATION_RULE"-->
    <Rule subtype='SUBTYPE_ACCOUNT_CORRELATION_RULE' id='#ID#D23CC16ECF6E5D42:-4527465C:11224925657:-769F' name='HR_DB_CORR' creator='Configurator' createDate='1177449448746' lastModifier='Configurator' lastModDate='1177686884156' lastMod='61'>
    <Description>Find out if a resource account is correlated to an IDM account</Description>
    <cond>
    <and>
    <notnull>
    <ref>firstname</ref>
    </notnull>
    <notnull>
    <ref>lastname</ref>
    </notnull>
    </and>
    <block>
    <concat>
    <substr>
    <ref>firstname</ref>
    <i>0</i>
    <i>1</i>
    </substr>
    <ref>lastname</ref>
    </concat>
    </block>
    <s>false</s>
    </cond>
    <MemberObjectGroups>
    <ObjectRef type='ObjectGroup' id='#ID#Top' name='Top'/>
    </MemberObjectGroups>
    </Rule>
    Although this is not specified in Active Sync input form but in the correlation rule attribute of Active Sync config (using the wizard). Do I need to specify it there using the Field function.
    Also, I figured out today that I needed to restart IDM instance after changing the value of "Create Unmatched Accounts" flag and now the error is as below :-
    <WavesetResult>
    <ResultItem type='error' status='error'>
    <ResultError throwable='com.waveset.util.WavesetException'>
    <Message id='SES_VIEW_CHECKIN_ERROR'>
    </Message>
    <StackTrace>com.waveset.util.WavesetException: Unable to checkin view. No account ID specified.&#xA;&#x9;at com.waveset.view.UserViewer.checkinView(UserViewer.java:1165)&#xA;&#x9;at com.waveset.object.ViewMaster.checkinView(ViewMaster.java:727)&#xA;&#x9;at com.waveset.sync.IAPIUserImpl.processCommand(IAPIUserImpl.java:526)&#xA;&#x9;at com.waveset.sync.IAPIUserImpl.submitCreate(IAPIUserImpl.java:195)&#xA;&#x9;at com.waveset.sync.IAPIUserImpl.submit(IAPIUserImpl.java:749)&#xA;&#x9;at com.waveset.adapter.FlatFileActiveSyncAdapter.processLine(FlatFileActiveSyncAdapter.java:404)&#xA;&#x9;at com.waveset.adapter.FlatFileActiveSyncAdapter.processFlatFile(FlatFileActiveSyncAdapter.java:350)&#xA;&#x9;at com.waveset.adapter.FlatFileActiveSyncAdapter.poll(FlatFileActiveSyncAdapter.java:307)&#xA;&#x9;at com.waveset.task.SARunner.doRealWork(SARunner.java:288)&#xA;&#x9;at com.waveset.task.Executor.execute(Executor.java:154)&#xA;&#x9;at com.waveset.task.TaskThread.run(TaskThread.java:132)&#xA;</StackTrace>
    </ResultError>
    </ResultItem>
    </WavesetResult>

  • Send Email on User Account Creation in OIM 11g

    Hi All,
    We are working on email notifications for the user account creation. we followed the following procedure:
    1) Creation of email template
    2) Creation of resource object
    3) Creation of notification process
    4) Create Customer Rule
    5) Create Customers Role and Assign Rule
    6) Create Access Policy.
    After assigning AD account to the user we are getting following errors..
    1> Class/Method: tcEmailNotificationUtil/parseEmail encounter some problems: Data Access Error
    Supplemental Detail com.thortech.xl.dataaccess.tcDataSetException: Data Access Error
    at com.thortech.xl.dataaccess.tcDataSet.executeQuery(tcDataSet.java:952)
    at com.thortech.xl.dataobj.tcDataSet.executeQuery(tcDataSet.java:1523)
    at com.thortech.xl.dataaccess.tcDataSet.executeQuery(tcDataSet.java:903)
    at com.thortech.xl.dataobj.tcDataSet.executeQuery(tcDataSet.java:1490)
    at com.thortech.xl.dataobj.util.tcEmailNotificationUtil.parseEmail(tcEmailNotificationUtil.java:1213)
    at com.thortech.xl.dataobj.util.tcEmailNotificationUtil.constructEmail(tcEmailNotificationUtil.java:235)
    at com.thortech.xl.dataobj.util.tcEmailNotificationUtil.constructEmail(tcEmailNotificationUtil.java:269)
    at com.thortech.xl.dataobj.tcScheduleItem.checkForEmailNotification(tcScheduleItem.java:3765)
    2> *Class/Method: tcEmailNotificationUtil/sendEmail encounter some problems: [EOF]*
    Supplemental Detail javax.mail.MessagingException: [EOF]
    at com.sun.mail.smtp.SMTPTransport.issueCommand(SMTPTransport.java:1481)
    at com.sun.mail.smtp.SMTPTransport.issueSendCommand(SMTPTransport.java:1512)
    at com.sun.mail.smtp.SMTPTransport.mailFrom(SMTPTransport.java:1054)
    at com.sun.mail.smtp.SMTPTransport.sendMessage(SMTPTransport.java:634)
    at javax.mail.Transport.send0(Transport.java:189)
    at javax.mail.Transport.send(Transport.java:118)
    at com.thortech.xl.dataobj.util.tcEmailNotificationUtil.sendEmail(tcEmailNotificationUtil.java:850)
    at com.thortech.xl.dataobj.tcScheduleItem.checkForEmailNotification(tcScheduleItem.java:3782)
    at com.thortech.xl.dataobj.tcScheduleItem.eventPostUpdate(tcScheduleItem.java:741)
    3) And I am also getting error related to FAX like..
    select Fax from orc orc, usr usr where usr.usr_key=orc.usr_key and orc.orc_key =293
    Supplemental Detail java.sql.SQLSyntaxErrorException: ORA-00904: "FAX": invalid identifier
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:95)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:135)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:210)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:473)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:423)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1095)
    at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:193)
    at oracle.jdbc.driver.T4CStatement.executeForDescribe(T4CStatement.java:856)
    4) Class/Method: tcDataBase/readPartialStatement encounter some problems: ORA-00904: "FAX": invalid identifier
    Supplemental Detail java.sql.SQLSyntaxErrorException: ORA-00904: "FAX": invalid identifier
    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:95)
    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:135)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:210)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:473)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:423)
    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1095)
    at oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:193)
    Plaese provide quick resolution to our issue..
    It will be very helpful to us.
    Thanks

    Thanks alot.I have configured this requirement.
    Regards
    A Abhinay

  • Set up a unique user for an iPod under my apple account

    I bought an iPod touch 5g for my kid. He is too young to have his own apple ID, so my thought was to attach him under my account.
    Problem is I want to be able to FaceTime him. With him under my acct, he can FaceTime to me, but I can't to him.
    Also I want him to have a unique address so when his friends call, my devices don't ring.
    Any ideas on how to set him up as a unique user under my account?

    See:
    MacMost Now 653: Setting Up Multiple iOS Devices For Messages and FaceTime
    You just need to add his own email address and delete the Apple ID address.

  • VPP end user account creation

    I am a VPP program manager, i created a facilator account but i can't find out how to create a end user account to download the apps that the facilator purchases.  In the VPP video training they talk about creating both types of accounts but I am not seeing where to do it.

    When you create a new user and leave the password fields blank, you should see a warning similar to the following one. Clicking "OK" will continue to create the account, but if you press Return/Enter or click "Cancel" then the account will not be made.

  • CRM 5 : New B2B User Account Creation

    Hi all
      I am in the proceess of Creating User Account using ISAUSERADM application.
    I am able to create a new Use Account and assign Authorization for the created USer Id.
      But do not know what is the Initial Password for the created User Id.  Since there is nowhere in the ISAUSERADM that request the initial Password !!!
    Any idea ???
    Thanks
    Jack
    Message was edited by: Jack

    Hi Jack,
    the ISA USER ADMIN TOOL shows you the generated password when the new user is created. It also sends an email to the user using his/her email address.
    You can see the email in transaction code SOST although it's contents are encrypted.
    I hope this information helps you.
    Best regards,
    Nacho.

  • Unique audio/video settings per user account?

    I have a rather strange question...
    I recently purchased my first mac and love it so far, but being a windows user for 15 years is taking some getting used to.
    My situation:
    (VIDEO) I currently have a mac mini hooked up to a monitor utilizing the mini-port to DVI. Secondly I am using the HDMI port out to an HDTV.
    (AUDIO) I am using the headphone out to my DVI monitor and my HDMI obviously runs through the HDMI cable.
    I have setup 3 user accounts...mine, my wife's, and one for a "media center".
    My question:
    Is there any way that I can setup the "media center" user account to be the only account that will recognize only the HDMI port for video/audio? Since I have my mac in a different room from my HDTV, I do not want to be going back and forth every time I wish to utilize my "media center" account.
    I hope my issue is clear...thanks in advance for any help!
    MK

    ProRes ships with Final Cut Pro 6 - it does not come with 5.
    You can download the decoder separately but I don't know how well that will work on older versions of FCP:
    http://support.apple.com/downloads/AppleProRes_QuickTime_Decoder_1_0_forMac

  • Mitigating risks during new user account creation

    I have a requirement for AC 10.
    Is it possible to send a message from the security admin stage to role owner stage to know whether to mitigate the risk or not without approving the request at security stage. I am unable to understand the stages to be configured so the mitigation risks can be done during the new/change account request type.
    I would like to know who should be responsible for mitigating the risks while creating the request for new or change user account. If we assume that the risk is not mitigated already.  Is security admin or role owner will mitigate it.

    Is it possible to send a message from the security admin stage to role owner stage to know whether to mitigate the risk or not without approving the request at security stage.
    It is not possible to send a notification. However, the mitigation options can be used to identify the same in the request.
    I would like to know who should be responsible for mitigating the risks while creating the request for new or change user account..
    This is purely based on the process that you follow in your organization/project. Here are some instances:
    1. If the role framework is properly maintained (risks are mitigated at the role level, and only composites are assigned to user) - Niether the business owner nor the security person needs to mitigate the risks at users level, since all the risks are already mitigated at the role level.
    2. If the role framework is not properly maintained and single roles are assigned to users - Migitation is required. However, in a few instances, the BPOs or the functional owners will perform a risk analysis, mitigate if necessary and then raise the request. This can be done in RAR manually or also can be done in CUP.
    3. The mitigation tasks are completely owned by Security team and BPOs or functional owners will only approve/review.
    Hope this answers your question.
    Regards,
    Raghu

  • IWeb sites - allow user account creation on your site?

    Hey,
    Are you able to create a sort of a user account on your iweb site, so people who visit the site can create an account, upload a avatar, and see it everytime they visit it?
    Cheers!

    You can link forum/message board. But, as far as setting up accounts within iWeb I do not know of any way to do so at this time.

  • Question regarding unique user identification

    Hi everyone
    I haven't managed to find a way to uniquely identify a user within the UME, and was hoping someone could help with this. Here's a brief scenario to explain the problem:
    Simon Jones joins the company and is given username sjones. He is given access to various application within the Java AS (including Portal and some custom applications). Some time later, he leaves the company and his user account is deleted.
    Steven Jones joins the company a year later, and is given the username sjones (same username as Simon Jones had when he was employed). He is given access to different functionality within Portal and the same custom applications.
    The custom applications each store custom user-specific information in their own tables.
    Now here's the question. How do the custom applications store information relating to the user, ensuring that it is uniquely assigned to that specific user and not to any future users that are created with the same username? In other words, is there a unique key (similar to the SID in Microsoft Active Directory) that uniquely identifies the user, and can be used as the key in the custom tables described above? This would need to be a new key generated for each user as they are created - ensuring that two users with the same username (existing at different times) are uniquely identifiable.
    Or is there perhaps a place where custom information can be added to the user record in the UME in a generic way (i.e. does not require any schema changes)?
    I realise I may not have explained this very well, so please ask if anything is unclear.
    I'd really appreciate some comments on this.
    Thanks
    Stuart

    Hi Stuart,
    the UME API supports so called custom attributes that are written to the database without the need for any UME persistence configuration change (see code example below). If you don't mind UME persistence configuration changes and such an attribute is already available in the user objects (e.g. because they are read from an LDAP directory server which generates such identifiers during user creation), you can also change the UME persistence configuration and add new attributes on your custom namespace that are mapped to the physical attribute of the LDAP user object that contains the identifier.
    Regards,
    Uwe
    Code example:
            // define the name space and the attribute name which sould be used to store and read the unique ID
            String namespace = "com.mycomp.mydepartment";
            String attribute = "unique_user_identifier";
            // read the logged in user
            IUser u = UMFactory.getAuthenticator().getLoggedInUser();
            String uniqueUserIdentifier = null;
            // read the identifier
            String[] uniqueIdentifiers = u.getAttribute(namespace, attribute);
            if (uniqueIdentifiers != null && uniqueIdentifiers.length == 1) {
                // identifier already stored
                uniqueUserIdentifier = uniqueIdentifiers[0];
            if (uniqueUserIdentifier == null) {
                // no identifier stored (e.g. newly created user)
                // read the user factory
                IUserFactory uf = UMFactory.getUserFactory();
                boolean done = false;
                while (! done) {
                    // use any suitable algorithm that creates a String identifier with less than 255
                    // unicode characters.
                    uniqueUserIdentifier = java.util.UUID.randomUUID().toString();
                    // request a mutable user object
                    IUserMaint um = uf.getMutableUser(u.getUniqueID());
                    // set the new identifier
                    um.setAttribute(namespace, attribute, new String[] { uniqueUserIdentifier });
                    // persist the changes
                    um.save();
                    um.commit();
                    // check whether the identifier identifies exactly one user (same identifier can be
                    // created on a different server node in the cluster.
                    IUserSearchFilter usf = uf.getUserSearchFilter();
                    usf.setSearchAttribute(namespace,
                                           attribute,
                                           uniqueUserIdentifier,
                                           ISearchAttribute.EQUALS_OPERATOR,
                                           true);
                    ISearchResult sr = uf.searchUsers(usf);
                    int counter = 0;
                    while (sr.hasNext()) {
                        sr.next();
                        counter++;
                    done = counter < 2;
    Edited by: Uwe Steigmann  on Sep 11, 2008 3:06 PM
    Edited by: Uwe Steigmann  on Sep 11, 2008 3:07 PM

  • Two Libraries on ONE user account, or multiple iTunes?

    I have a rather large library of music and spoken word
    shows that I share at work, and I'd like to split these
    into two libraries, one for those who listen to the
    Spoken Word playlists, and the other for the music lovers.
    My biggest complaint I get daily is that the 5 user limit locks out too many users and they often perch like hawks
    to get on just to hear their favorite song or to hear
    an interview.
    How do I enable the use of either two iTunes running at the same time on my mac, or the running of two libraries
    to share out, on the same mac?
    I downloaded Libra, but it only allows you to
    switch libraries one at a time, enable two or more.
    Where am I missing it?

    The library was in the user account you deleted.  You should have transferred the iTunes folder before deleting the account.
    Your i-device was not designed for unique storage of your media. It is not a backup device and media transfer was planned with you maintaining a master copy of your media on a computer which is itself properly backed up against loss.  To use a device with a new computer you transfer the content from the old computer (or its backup) directly to the new computer, not the device to the new computer. Syncing is one way, computer to device, updating the device content to the content on the computer, not updating or restoring content on a computer. The exception is iTunes Store purchases which can be transferred to a computer.
    iTunes Store: Transferring purchases from your iOS device or iPod to a computer - http://support.apple.com/kb/HT1848 - only purchases from iTunes Store
    For transferring other items from an i-device to a computer you will have to use third party commercial software.  See this document by turingtest2: Recovering your iTunes library from your iPod or iOS device - https://discussions.apple.com/docs/DOC-3991

Maybe you are looking for