How can we force a single user to re-register to Self service password reset?

In my scenario, I trying to figure out how I can force a user to re-register if he forgets his answers for his pwd reset questions? I tried to force it by checking the re-register check box on Password reset set, but it enforces it on every user.
Thanks

If one were to do that using PowerShell it might look like this:
001
002
003
004
005
006
007
008
009
010
011
012
013
014
015
016
017
018
019
020
021
022
023
024
025
026
027
028
029
030
031
032
033
034
035
036
037
038
039
040
041
042
043
044
045
046
047
048
049
050
051
### Get the User object
$xPathFilter = "/Person[AccountName='HoofHearted']"
$queryResult = Export-FIMConfig -OnlyBaseResources -CustomConfig $xPathFilter
### Display the object
$queryResult | foreach{$_.resourcemanagementobject.ResourceManagementAttributes
| ft -AutoSize}
### Get the object ID and the AuthNWFRegistered attributes
$objectId = $queryResult.ResourceManagementObject.ResourceManagementAttributes
| where{$_.AttributeName
-eq 'ObjectID'}
$AuthNWFRegistered = $queryResult.ResourceManagementObject.ResourceManagementAttributes
| where{$_.AttributeName
-eq 'AuthNWFRegistered'}
### Create a new ImportObject for the User
$update = New-Object Microsoft.ResourceManagement.Automation.ObjectModel.ImportObject
$update.ObjectType
= "Person"
$update.SourceObjectIdentifier
= $objectId.Value
$update.TargetObjectIdentifier
= $objectId.Value
$update.State
= 1 ## Put
### AuthNWFRegistered is multivalued
foreach($AuthNWFRegisteredValue in $AuthNWFRegistered.Values)
### Create an ImportChange for each value in AuthNWFRegistered
    $importChange = New-Object Microsoft.ResourceManagement.Automation.ObjectModel.ImportChange
    $importChange.Operation
= 2 ## Delete
    $importChange.AttributeName
= "AuthNWFRegistered"
    $importChange.AttributeValue
= $AuthNWFRegisteredValue
    $importChange.FullyResolved
= 2
    $importChange.Locale
= "Invariant"
    $update.Changes
+= $importChange
### Finally, import the change to FIM
Import-FIMConfig $update
CraigMartin – Edgile, Inc. – http://identitytrench.com

Similar Messages

  • TS1543 my mac wont stop at single user it continues to root, how can i get to single user to enter info needed to reset password

    I my mac wont recognise my password, i have tried to reset password using single user but my mac wont stop at single user it just continues to root, how do i get it to stop at single user so i can add info needed to reset password?

    Are your sure that wasn't a Verbose boot (Cmd-V) you were trying? That would go on to a regular boot.
    Try a PRAM Reset, then try the single user, Cmd-S, at the startup chime. For the PRAM Reset, hold down Option - Cmd - P - R all together until it chimes a total of three times, then let go to finish booting.

  • 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 force Time Machine to make a complete backup of my Hard Drive.  I just installed a new external drive for Backup since my previous one failed.  Now when I back up, Time Machine only backs up my data folder and the Users folder.

    How can I force Time Machine to make a complete backup of my Hard Drive.  I just installed a new external drive for Backup since my previous one failed.  Now when I back up, Time Machine only backs up my data folder and the Users folder.
    When I start a backup. Time Machine says "Oldest Backup: None; Latest Backup: None", so it seems like it should do a complete backup, but it only does a partial. 

    Hi I'd like to jump in here. Your app showed me this:
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 749.3 GB Disk used: 453.81 GB
              Destinations:
                        Plastic Wrapper [Local] (Last used)
                        Total size: 999.86 GB
                        Total number of backups: 64
                        Oldest backup: 2013-07-24 23:25:11 +0000
                        Last backup: 2013-11-17 01:40:47 +0000
                        Size of backup disk: Too small
                                  Backup size 999.86 GB < (Disk used 453.81 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
              /sbin excluded from backup!
              /usr excluded from backup!
              /System excluded from backup!
              /bin excluded from backup!
              /private excluded from backup!
              /Library excluded from backup!
              /Applications excluded from backup!
    Aside from the size of my backup drive, which I will increase at some point, I'd really like to have time machine backing up all system folders, especially Applications. How to I reset this hidden exclusions?
    Thanks,
    Darcy

  • How can i declare a single radio button field in selection-screen ?

    How can i declare a single radio button field in selection-screen ?

    >
    Rob Burbank wrote:
    > And how will you turn it off once it is turned on??
    >
    > Rob
    Thats correct ;)...See ravi if users will ask so many things its our Job to convay the correct solution ....
    Just post your org requirement..SOo some body guide you better//
    Sas

  • How to put database in single user mode?

    hi
    how to put database in single user mode?and what could be the impact of this to EBS R12 RUP 6.DB 10.2.0.0
    rgrds

    hsawwan wrote:
    Hi,
    Are you referring to restricted mode? If yes, please see these links/docs.
    Restricting Access to an Open Database
    http://download.oracle.com/docs/cd/E11882_01/server.112/e10595/start002.htm#ADMIN11155
    Note: 1059291.6 - How to Put a Database into Restricted Mode and Verify Restricted Mode
    The impact is none of the users will be able to connect to the database/application (except for the sys user which can connect to the database). Usually, you would need to put the database in restricted mode when doing upgrade/migrate (i.e. you do not want to have active user sessions in the database during that time).
    Thanks,
    HusseinHi
    i want to mean:
    ALTER SYSTEM QUIESCE RESTRICTEDThe ALTER SYSTEM QUIESCE RESTRICTED statement may wait a long time for active sessions to become inactive. You can determine the sessions that are blocking the quiesce operation by querying the V$BLOCKING_QUIESCE view. This view returns only a single column: SID (Session ID). You can join it with V$SESSION to get more information about the session, as shown in the following example:
    select bl.sid, user, osuser, type, program
    from v$blocking_quiesce bl, v$session se
    where bl.sid = se.sid;I suspect all apps user can.t login to db?
    Edited by: new2appsdba on Aug 19, 2010 1:54 AM

  • How can I force specific devices to use a specific Airport Express?

    I have an Airport Extreme router on the main level of my three level house. I have a 1st Generation Airport Express on the same level, extending my wireless network and acting as an airplay device.
    I have added another Airport Express (2nd Generation) in my basement to be close to several wifi-ready devices (Wii, AV receiver, Blu-ray player). How can I force these particular devices to connect to the new and 'closest' device, just 20 feet away? Some, but not all, are connecting still to my Airport Extreme with a 'good/average' connection. Specifically, I'd like to force the blu-ray player to use my new Express, to eliminate buffering on my blu-ray player (Vudu - movie rentals).
    Suggestions?

    It might help to remember that the AirPort Express...or any other "extending" device....can only extend the quality of signal that it receives.
    So the trick is to get the best signal possible to the extending device......and also....have it provide a good signal for other devices.  It's a compromise at best with the best location for the "extending" device about half the distance between the main router and the devices that need more wireless signal.
    This assumes no major obstructions in the signal path.....and unfortunately a floor/ceiling is a major obstruction....often the thickest barrier in a home.
    Unfortunately, users tend to locate the extending device where they feel that they need more wireless coverage....in a weak signal area....and then the extending device receives a weak signal and extends that weak signal quality.  The result is little or no improvement at all.
    It is going to take some experimentation to find the best compromise if you want to extend using wireless only. Even a good connection results in half of the bandwidth being lost, so you might want to think about a "Plan B" in case wireless will not deliver the bandwidth that you need.

  • How can I force a group of checkboxes using imported PDF forms

    how can I force a group of checkboxes when using imported PDF forms,
    My checkboxes are single fields rather than a group, the form is design using indesign?

    The PDF file format doesn't support grouping check-boxes into a multi-choice field. Because of that, FormsCentral just represents them as check boxes.
    Randy

  • How can I store a single instance of a hashtable

    How can I store a single instance of a hashtable in a predefined application object that way I can use it by all sessions? I've tried storing a instance of hashtable in the session but it only allows for one user and it doesn't accomplish my goal in the web application. Could show me how i could store a single instance of a hashtable in a predefined application object? Or at least a link which demonstrates it
    thanks

    assuming ctx is an instance of javax.servlet.ServletContext (which can be retrieved from the ServletConfig).
    ctx.setAttribute("yourAttrName", new Hashtable());

  • How can I view as "single page continuous" in full screen mode?

    how can I view as "single page continuous" in full screen mode?
    preferences->page display:
    preference->accessbility:

    Not possible.

  • I had over 200 e-mails.  I went to my webmail and deleted most of them.  However, my iPhone still shows 200 e-mails.  How can I force my iPhone to update from the e-mail server?  Or will I have to delete each e-mail from my iPhone as well?  Thanks.

    I had over 200 e-mails.  I went to my webmail and deleted most of them.  However, my iPhone still shows 200 e-mails.  How can I force my iPhone to update from the e-mail server?  Or will I have to delete each e-mail from my iPhone as well?  Thanks.

    You may have to try deleting all the music from your phone (by going to Settings>General>Usage>Music, swipping All Music and tapping Delete), then sync it all back on with iTunes in order to fix this.

  • How can I force-install iOs5/6 apps on my iPod Touch?

    Hi, I have an iPod touch version 4.3.5 (ML1). Model is MC540C.
    The App Store sometimes bars me from installing apps because the app has a minimum requirement of iOS 5 or 6. How can I force my iPod to install these apps anyway?

    No, it is more than the screen dimension.
    You have a 4G iPod, why not update?
    To update:
    iOS 4: Updating your device to iOS 5 or later
    You need iTunes 10.7 or later on the computer

  • How can I restore a single image from an aperture time machine backup, do I have to restore the entire library? that does not make sense

    I hope there has been found a more efficiant solution for this,  how can I restore a single image from an aperture time machine backup, I really hope I don't have to restore the entire library? that does not make sense
    any suggestions?

    Did you try browsing your backups in the Finder ?  That is, do not go and "Enter Time Machine".  Instead, navigate to your Time Machine backup via Finder and then manually go to the time period (by folder name) you are looking for ... when you find your Aperture library you can then "Show Package Contents" and find the Master you are looking for.

  • How can I force iTunes Match to upload a "Duplicate" to the iCloud?

    I have one album where the first track was uploaded, and the other eleven tracks are all tagged as "Duplicates." These tracks were not uploaded to the iCloud. How can I force iTunes Match to upload these eleven tracks erroneously tagged as Duplicates?

    I'm adding my 2¢ because I just "discovered" iTunes Match yesterday and decided to subscribe thinking there was no downside (doh!).
    Well, firstly, there's the enormous downside of Apple's structure not being able to keep up with (what they should have known would be) enormous interest... my iTunes has been matching for >20-hours and has yet to reach half-way up my library. BTW: I thought I read the iTunes Match info fairly thoroughly prior to subscribing and did not see anything about it being for songs vrs full library.
    And secondly, and even more important to me, is that Apple's method of determining duplicate songs is not robust enough, especially for classical music and audio books (e.g., LoTR). I have >12000 "songs" in my library, and Match has determined a boatload are duplicates. They are not of course and even if Apple's duplicate-determining algorithm just looked at disc & track numbers it would "know" that. Anyway, there's a fairly good chance I will not have one complete album upload/match out of >500 albums. That's nae Scottish, in anybody's book.
    Gotta say, using Garage Band to individually alter >2000 "songs" on the off-chance that may assist Apple's duplicate algorithm to be correct is not gonna happen. If, after the matching/uploading is complete, I still have >even 100-not-duplicate-songs listed as duplicates, I'm getting my $29.95 subscription back.
    ... and C: does anybody know why Apple's Lion spell check doesn't work on Apple's discussion forums???

  • How can i set up multiple user accounts for my new ipad mini?

    How can i set up multiple user accounts for my new ipad mini?

    The iPad mini is basically a one user device. There are no Accounts. You can set up restrictions so that only you can do certain things.

Maybe you are looking for

  • Problems with non-electable client

    Hello! I am not sure if this forum is the right place to submit feedback, but since I have not find another places I will try to do it here. If anybody knows more appropriate way, please let me know. I am setting up the replication environment with t

  • Partial Submit

    Hi, I want to do form partial submit without using any command link or button. i want to refresh 1 field. how to do that? I'm using Jdeveloper 10.1.3.1.0 ADF BC. Thanks and Regards, Sudha.

  • LMS 4.1 Threshold Information problem

                       Dear all.                               Can i modify the information when violate threshold?                             Like : CiscoWorks HUM: Critical: Processor Threshold Violation: reset57.10 (Test) Host Name: vwapbjsrvlms001.a

  • 1 (out of 10) Playlists will not sync!

    Ok, this is probably a pretty strange question, but I thought it would be at least worth a shot to see if anyone else had experienced the same thing, and if there was a possible fix. I sync my iPhone with my iMac including photos, videos, and of cour

  • VS 2013 Prof. edition always shows "Could not complete the action"

    Hi all, When I open any .ascx file VS2013 always shows alert, and when I close, it shows it again. Could you help please? Thanks.