URGENT! syncing question.

Alright basically I just bought a new computer about a month ago and set it up in the new room I just moved in. Before that I always synced my iPhone with the other computer, that I still have. Well tonight I decided I would sync my iPhone with this new computer so I have a backup of all my stuff. Well when I synced it, it removed all of my effing applications, which I have 9 pages of. While it was doing that it like turned my iPhone off, I unplugged it after that an luckily all of my contacts were still there. But most of my applications were gone. But, if in my iTunes all of the applications that I have are in there. So I'm really confused, what can I do? Also, I didn't know Vista doesn't have a Windows Address Book?

Steps:
1) Have either a USB Transfer Cable or an external hard drive handy
2) If you've set up the USB Transfer Cable to both machines
* Vista - Press start and type "Transfer" to pop up the message you want
3) If you have an external hard drive
* Open My documents\My Music
* Select "iTunes Music", right click, send to, (external hard drive)
Note that some applications may fail to transfer. Don't worry. All applications once purchased are free to redownload. Just your data is gone from the previous installation.
Your music however, God forbid you lost any during the transfer, will cost you to redownload unless you can file an appeal on your purchased items section of the iTunes Store account.
Vista doesn't have the Windows Address Book anymore. However they do have "Windows Contacts". You can also use "Google Contacts" and "Yahoo Address Book" for PC sync with your accounts.
If you are using the iPhone and have GMail or Plaxo or MobileMe, you can sync over the air on all accounts and your contacts are backed up by the providers.
With GMail and Plaxo, you can go to nuevasync.com and request a login account and setup from there.
Message was edited several times by: JoeZinVA

Similar Messages

  • FCP Sound Syncing Question

    Hey Everyone,
    I have an audio syncing question for you. Any help would be greatly appreciated!
    I am cutting in FCP. I logged and captured my footage and with timecode breaks, etc. the tape was cut up, and I was left with eight files, let's call them Footage1-Footage8. I have completed my cut of the piece using the in-camera audio that was linked to the video on the DV tape that I imported. Our sound guy in the field used a DAT recorder to record the production audio and apparently captured the timecode to the audio files, so that it matches the video (i.e. the DAT recorder and our cameras - DVX-100s had synced timecode during the shoot). The DVD he gave me has 20 audio files as .wav, let's call them Audio1-Audio20. My question is, now that I have finished my cut, I would like to replace the current audio tracks with the production audio. How can I sync the audio with the video and replace it in what I've cut. Or perhaps I can't, in which case - how can I sync them up and THEN cut, but I'd really rather have to not do that, lol!
    Thanks for your advice!

    Sorry about the long winded post, though.
    I guess my real question, summarized is - is there a way to sync separately recorded production audio (that has timecode) with the footage that I shot (that has the same timecode as the audio, but also has in camera audio that accompanies the video track - I would imagine I can just "cut" the extra audio tracks, however).
    I'm at my bay trying to figure this out, and I've got nothing, and the people I work for don't want to spring for that bwf2xml program you were talking about What's the emote for pulling one's hair out?

  • Urgent SQL question : how to flip vertical row values to horizontal ?

    Hello, Oracle people !
    I have an urgent SQL question : (simple for you)
    using SELECT statement, how to convert vertical row values to horizontal ?
    For example :
    (Given result-set)
    MANAGER COLUMN1 COLUMN2 COLUMN3
    K. Smith ......1
    K. Smith ...............1
    K. Smith ........................1
    (Needed result-set)
    MANAGER COLUMN1 COLUMN2 COLUMN3
    K. Smith ......1 .......1 .......1
    I know you can, just don't remeber how and can't find exactly answer I'm looking for. Probably using some analytic SQL function (CAST OVER, PARTITION BY, etc.)
    Please Help !!!
    Thanx !
    Steve.

    scott@ORA92> column vice_president format a30
    scott@ORA92> SELECT f.VICE_PRESIDENT, A.DAYS_5, B.DAYS_10, C.DAYS_20, D.DAYS_30, E.DAYS_40
      2  FROM   (select t2.*,
      3                row_number () over
      4                  (partition by vice_president
      5                   order by days_5, days_10, days_20, days_30, days_40) rn
      6            from   t2) f,
      7           (SELECT T2.*,
      8                row_number () over (partition by vice_president order by days_5) RN
      9            FROM   T2 WHERE DAYS_5 IS NOT NULL) A,
    10           (SELECT T2.*,
    11                row_number () over (partition by vice_president order by days_10) RN
    12            FROM   T2 WHERE DAYS_10 IS NOT NULL) B,
    13           (SELECT T2.*,
    14                row_number () over (partition by vice_president order by days_20) RN
    15            FROM   T2 WHERE DAYS_20 IS NOT NULL) C,
    16           (SELECT T2.*,
    17                row_number () over (partition by vice_president order by days_30) RN
    18            FROM   T2 WHERE DAYS_30 IS NOT NULL) D,
    19           (SELECT T2.*,
    20                row_number () over (partition by vice_president order by days_40) RN
    21            FROM   T2 WHERE DAYS_40 IS NOT NULL) E
    22  WHERE  f.VICE_PRESIDENT = A.VICE_PRESIDENT (+)
    23  AND    f.VICE_PRESIDENT = B.VICE_PRESIDENT (+)
    24  AND    f.VICE_PRESIDENT = C.VICE_PRESIDENT (+)
    25  AND    f.VICE_PRESIDENT = D.VICE_PRESIDENT (+)
    26  AND    f.VICE_PRESIDENT = E.VICE_PRESIDENT (+)
    27  AND    f.RN = A.RN (+)
    28  AND    f.RN = B.RN (+)
    29  AND    f.RN = C.RN (+)
    30  AND    f.RN = D.RN (+)
    31  AND    f.RN = E.RN (+)
    32  and    (a.days_5 is not null
    33            or b.days_10 is not null
    34            or c.days_20 is not null
    35            or d.days_30 is not null
    36            or e.days_40 is not null)
    37  /
    VICE_PRESIDENT                     DAYS_5    DAYS_10    DAYS_20    DAYS_30    DAYS_40
    Fedele Mark                                                          35473      35209
    Fedele Mark                                                          35479      35258
    Schultz Christine                              35700
    South John                                                                      35253
    Stack Kevin                                    35701      35604      35402      35115
    Stack Kevin                                    35705      35635      35415      35156
    Stack Kevin                                    35706      35642      35472      35295
    Stack Kevin                                    35707      35666      35477
    Stack Kevin                                               35667      35480
    Stack Kevin                                               35686
    Unknown                             35817      35698      35596      35363      35006
    Unknown                                        35702      35597      35365      35149
    Unknown                                        35724      35599      35370      35155
    Unknown                                                   35600      35413      35344
    Unknown                                                   35601      35451      35345
    Unknown                                                   35602      35467
    Unknown                                                   35603      35468
    Unknown                                                   35607      35475
    Unknown                                                   35643      35508
    Unknown                                                   35644
    Unknown                                                   35669
    Unknown                                                   35684
    Walmsley Brian                                 35725      35598
    23 rows selected.

  • Syncing question Urgent Help Needed!

    Hey guys.
    I'm going to be getting a new iTouch tomorrow cuz mine is broken (I LOVE APPLE! Much better customer support and help than PC!)
    I've emailed all my notes and screen cap pics to myself, and synced the iTouch.
    Will this save my bookmarks in safari?
    is there anything else I should make sure i have a copy of?
    Thanks so much guys!!!

    When you connect your new iPod to iTunes, it will offer to restore from the backup of your old one. When you do that and let it sync, it will be a clone of your original iPod. See these for info:
    Backup: http://support.apple.com/kb/HT1766
    Restore: http://support.apple.com/kb/HT1414

  • Log file sync question

    Metalink note 34592.1 has been mentioned several times in this forum as well as elsewhere, notably here
    http://christianbilien.wordpress.com/2008/02/12/the-%E2%80%9Clog-file-sync%E2%80%9D-wait-event-is-not-always-spent-waiting-for-an-io/
    The question I have relates to the stated breakdown of 'log file sync' wait event:
    1. Wakeup LGWR if idle
    2. LGWR gathers the redo to be written and issue the I/O
    3. Time for the log write I/O to complete
    4. LGWR I/O post processing
    5. LGWR posting the foreground/user session that the write has completed
    6. Foreground/user session wakeup
    Since the note says that the system 'read write' statistic includes steps 2 and 3, the suggestion is that the difference between it and 'log file sync' is due to CPU related work on steps 1, 4, 5 and 6 (or on waiting on the CPU run queue).
    Christian's article, quoted above, theorises about 'CPU storms' and the Metalink note also suggests that steps 5 and 6 could be costly.
    However, my understanding of how LGWR works is that if it is already in the process of writing out one set of blocks (let us say associated with a commit of transaction 'X' amongst others) at the time a another transaction (call it transaction 'Y') commits, then LGWR will not commence the write of the commit for transaction 'Y' until the I/Os associated with the commit of transaction 'X' complete.
    So, if I have an average 'redo write' time of, say, 12ms and a 'log file sync' time of, say 34ms (yes, of course these are real numbers :-)) then I would have thought that this 22ms delay was due at least partly to LGWR 'falling behind' in it's work.
    Nonetheless, it seems to me that this extra delay could only be a maximum of 12ms so this still leaves 10ms (34 - 12 -12) that can only be accounted for by CPU usage.
    Clearly, my analsys contains a lot of conjecture, hence this note.
    Can anybody point me in the direction of some facts?

    Tony Hasler wrote:
    Metalink note 34592.1 has been mentioned several times in this forum as well as elsewhere, notably here
    http://christianbilien.wordpress.com/2008/02/12/the-%E2%80%9Clog-file-sync%E2%80%9D-wait-event-is-not-always-spent-waiting-for-an-io/
    The question I have relates to the stated breakdown of 'log file sync' wait event:
    1. Wakeup LGWR if idle
    2. LGWR gathers the redo to be written and issue the I/O
    3. Time for the log write I/O to complete
    4. LGWR I/O post processing
    5. LGWR posting the foreground/user session that the write has completed
    6. Foreground/user session wakeup
    Since the note says that the system 'read write' statistic includes steps 2 and 3, the suggestion is that the difference between it and 'log file sync' is due to CPU related work on steps 1, 4, 5 and 6 (or on waiting on the CPU run queue).
    Christian's article, quoted above, theorises about 'CPU storms' and the Metalink note also suggests that steps 5 and 6 could be costly.
    However, my understanding of how LGWR works is that if it is already in the process of writing out one set of blocks (let us say associated with a commit of transaction 'X' amongst others) at the time a another transaction (call it transaction 'Y') commits, then LGWR will not commence the write of the commit for transaction 'Y' until the I/Os associated with the commit of transaction 'X' complete.
    So, if I have an average 'redo write' time of, say, 12ms and a 'log file sync' time of, say 34ms (yes, of course these are real numbers :-)) then I would have thought that this 22ms delay was due at least partly to LGWR 'falling behind' in it's work.
    Nonetheless, it seems to me that this extra delay could only be a maximum of 12ms so this still leaves 10ms (34 - 12 -12) that can only be accounted for by CPU usage.
    Clearly, my analsys contains a lot of conjecture, hence this note.
    Can anybody point me in the direction of some facts?It depends on what you mean by facts - presumably only the people who wrote the code know what really happens, the rest of us have to guess.
    You're right about point 1 in the MOS note: it should include "or wait for current lgwr write and posts to complete".
    This means, of course, that your session could see its "log file sync" taking twice the "redo write time" because it posted lgwr just after lgwr has started to write - so you have to wait two write and post cycles. Generally the statistical effects will reduce this extreme case.
    You've been pointed to the two best bits of advice on the internet: As Kevin points out, if you have lgwr posting a lot of processes in one go it may stall as they wake up, so the batch of waiting processes has to wait extra time; and as Riyaj points out - there's always dtrace (et al.) if you want to see what's really happening. (Tanel has some similar notes, I think, on LFS).
    If you're stuck with Oracle diagnostics only then:
    redo size / redo synch writes for sessions will tell you the typical "commit size"
    redo size + redo wastage / redo writes for lgwr will tell you the typical redo write size
    If you have a significant number of small processes "commit sizes" per write (more than CPU count, say) then you may be looking at Kevin's storm.
    Watch out for a small number of sessions with large commit sizes running in parallel with a large number of sessions with small commit sizes - this could make all the "small" processes run at the speed of the "large" processes.
    It's always worth looking at the event histogram for the critical wait events to see if their patterns offer any insights.
    Regards
    Jonathan Lewis

  • Aperture 3 library syncing question

    I want to move to Aperture, but I need some advice first. (I have considered Aperture in the past, but my expectations and demands were unrealistic. Now I am trying to be as realistic as possible about what I want from Aperture.)
    I have learned that Aperture 3 in fact supports syncing libraries between computers. Before I attempt this however I want to find out from you people whether what I want to do will work.
    First let me describe my situation.
    I have Mac Pro which contains the following types of files dating from 1997:
    RAW + JPEG pairs from my DSLR, mirrorless, and compact cameras
    JPEG solo images from DSLR, mirrorless, and compact cameras
    TIFFs, PSDs, and JPEGs from film scans
    TIFFs, PSDs, and JPEGs that are saved, edited versions of the above (edited files have the same filename as the original, plus a few letters added to indicate which changes have been made; s = sharpened, a = converted with ACR, c = cropped, w = web resolution, etc.)
    AVI, MOV, MP4, and MTS (AVCHD) movies shot with various digital cameras
    There are 160,383 files in total, although the number of photographs is probably less than 100,000 due to RAW + JPEG pairs counting as two files. The total space used is ~1.2TB. The files are on an internal 2TB RAID volume, which is constantly backed up to an external Time Machine RAID.
    The files are all organized into folders by year up to 2009, and inside each year's folder are sub-folders that organize the pictures by event. All photos taken after 2009 are organized either by event or by subject matter, depending on which seemed more relevant to the particular shoot. I have been using Adobe Bridge to sort them. After they are sorted, I use a wonderful gem called ChronoSync to sync the JPEGs only (but not the RAWs, TIFFs, PSDs, or movies) to my MacBook Pro. That way I have my photos with me in the field in case I want to make some prints, upload to Flickr/Facebook, etc.
    However, I am feeling many limitations of this workflow -- hence why I am considering Aperture.
    Here are the main things I want to do with Aperture. Please tell me if this will work, and what any gotcha's might be.
    I want to have a "master" Aperture library on the Mac Pro. I will add all my existing files into the master library in a 'referenced' fashion -- they will remain where they are in the current directory structure on the 2TB RAID.
    I want to also maintain a "satellite" Aperture library on the MacBook Pro that contains only the JPEG versions of these files. I would use ChronoSync to copy over all the referenced JPEGs such that they exist in the same places in the directory structure of the laptop as they do on the desktop (i.e. /Users/me/Pictures/etc.), so that hopefully when Aperture looks for them it can find them. (I am guessing that I would create the "satellite" library by simply copying the "master" library to the laptop, rather than creating a fresh library there.)
    I want to use the "satellite" library on the MacBook Pro to perform tagging, adding location data, rating, further organizing, etc. and then sync those changes back to the "master" library on the Mac Pro.
    I know that Aperture 3 has the ability to sync/merge libraries, but my questions are:
    If the "satellite" library has only the JPEGs available on the local drive, then will any metadata changes made in the "satellite" library properly sync back to the JPEG+RAW pairs in the "master" library? I.e. will Aperture still apply changes in metadata to both the RAWs and JPEGs, even though the RAWs were not present on the "satellite"?
    Will Aperture allow me to group other versions of the file besides the RAW and JPEG on the master library? Will metadata to just the JPEG also be applied to these other versions upon syncing, as described above?
    Is it a "two-way sync" -- i.e. will changes made to the master library also sync back to the satellite library? (If not, that's OK with me, because presumably after merging the satellite into the master, I can delete the satellite library, then re-copy the master back to the laptop to make a new satellite library -- I am also going to have copy over any new JPEG files to the laptop as well, so I don't mind copying one extra file [the new satellite library].)
    I'm sure I've forgotton something important here but, my time is limited so I'll leave it at this for now and post any other questions later. Thanks for any tips, I know this is a complicated issue.
    -=DM=-

    I still need to do some experimenting to see if the file references are volume-specific or if they are volume-blind -- i.e. if they just use paths starting with "/[path]" instead of paths starting with "/Volumes/SpecificDriveName/[path]".
    I am not sure I understand you fully - what kind of file referencing are you speaking of?
    If you use managed master image files, the master images are stored inside the Aperture library, and if you move the complete library to a new drive, then thereferences to  files inside the package still work. So obviously Aperture uses relative pathes here.
    If you use referenced master image files - let's for example assume the Aperture library is on Volume A, the referenced master image files are  on Volume B, and you move your Aperture library now from A to Volume C:  If you open the Library on Volume C, it will still find the master image files on Volume B, so the library stores the absolute path for referenced masters. This even works with referenced masters on network volumes, but I really cannot recommend to store the masters on remote volumes; you will have to make sure the volume is mounted, when you launch Aperture.
    Is that what you were asking about? if not, please rephrase your question.
    Regards
    Léonie

  • Syncing question

    I have some songs on my ipod that I would like to keep on my iPod.  I'd like to add some songs to my iPod by syncing it with iTunes on my computer.  My question is, will I lose the songs that are on my iPod, if I sync it with my computer.
    Also, vice/versa--I have some songs on my iTunes account on my computer that I downloaded from a CD.  I'd like to get these songs onto my iPod.  Will I lose the songs I currently have on my iPod  if I sync it?  (Not everything that is on my iPod is on my iTunes account on my computer. 
    I hope this makes sense!
    Thanks for any advice!

    If this computer is one you've not synced the iPod to before, then yes, without taking extra steps, anything on the iPod not in iTunes will be erased. Check out this user tip from TuringTest:
    https://discussions.apple.com/docs/DOC-3991
    and this page on "How-to Geek":
    http://www.howtogeek.com/104298/sync-your-ios-device-with-a-new-computer-without -losing-data/
    Regards.

  • Sync Question

    I have a question regarding syncing my Touch. I recently moved my library to a external drive, however when I go to Itunes I can't pull anything up. I know the transfer was successful, because I can see everyhing on the external drive. I currently still have everything on my ipod, so my question is can I sync my ipod back to itunes. I can reload my music if i have to, However I have videos of my own that I do not have anymore, that I want to keep. I also don't wan't to lose the apps that I have downloaded. Any help would be appreviated. Thanks.

    You already asked this, and the answer is you just can't move your music.
    It may have copied over, but you have a lot more work to do, depending on what you've already done.
    I posted the Apple article, but here is another one.
    Scott

  • Urgent 508 Question!

    The only thing i need to do is add a title or label attribute to some of the controls.
    One of the ones to begin with that i am fixing is the ADF tag af:selectBooleanRadio. When i add some text to the shortDesc field of the control, the html is produces doesn't have the title attribute.
    So i tried to use the corresponding trinidad control tr:selectBooleanRadio, and add some text to the same shortDesc field for the control, and in this case it does add a title attribute in the html that it produces.
    Everything else in the code works fine as well when i add the trinidad control, except for one thing. I have a ValueChangeListener that gets called when you click on another tr:selectBooleanRadio. Within that valueChangeListener event handler function, i have a bunch of code which in the end displays a af:popup. The problem i am having when using the trinidad control is that it somehow is not allowing the display of the popup even though it is going through the code that executes display of the popup. When i click on another link or button that is supposed to display a different popup as well, then the popup associated with the tr:selectBooleanRadio also displays at that time, but not originally when the value changed by selecting a different tr:selectBooleanRadio.
    So, my question is, are there any other successful ways of adding a title attribute to the these controls. If its the af:selectBooleanRadio how do we make it so that the html it generates has the title attribute, or if its the tr:selectBooleanRadio, what might be happening during the event handling that it is not allowing the af:popup to display?
    A quick response to this appreciated since this is very urgent! Thanks very much for your help!

    JDev version is 11.1.1.5
    ok, i will go one step at a time so that it is easy to understand. So i will only mention the first thing right now and then we can try other things later.
    i have a af:selectBooleanRadio. After running the page/application, when the user does View Source in the browser for the page that has the radio button, it is in the form of an HTML tag <input> of type for radio button. What i want to do is to have a "title" attribute for the <input> tag for this radio button. I can use the tr:selectRadioButton trinidad control to do that, but then i have other issues with that, and we can talk about those later.
    Let me know if it is still not clear.
    Thanks very much for your help!

  • Mail syncing question

    Hi,
    the scenario is this:
    On my macbook, 10.6, one of the POP accounts is acting strange. It's a BT internet account. Symptoms are it starts to download messages and just gets stuck. Also duplicates are appearing. I've tried deleting the message from the server via webmail, and recreating the account. The messages do reach the iPhone no problem.
    So , i'm assuming that there's something lurking inside "My home directory"/Library/Mail.
    I'm going to delete this Mail folder, along with Mail preferences.
    The question is, can i sync the accounts (one bt internet, the other @me.com) from my iPhone / ipod to the Macbook via either MobileMe or iTunes?
    Am i right in thinking that you can sync accounts from a desktop / laptop Mac to an iPhone / iPod, but you can't do the reverse?
    Many thanks in advance.

    The +iPod touch+ doesn't offer Mail syncing. All it does is sync the account details. Emails are downloaded separately when you next get a suitable WiFi connection. 
    mrtotes

  • 2 Sync questions

    Hi!
    I have 2 things to ask to the experts!
    1. My Ovi Suite doesn't sync my SMS since I realized an Hard reset... I had installed also PC suite to see if that program was better than this one, but the 2 were in conflict (Ovi suite asked to install a phone support program or something similar, but it didn't find it), so I deleted PC suite also with PC Suite Cleaner... And now OVi is "good" and sees there are new messages, but when i try to sync them, the program says the Synchronization is ok and no new messages are added (in Ovi memory). How can I solve it?
    2. If I want to change computer, how can i save all Ovi suite files (SMS, notes, notebook,...) and move them to the new PC?
    Thx

    Can't answer your Question but want to add something..
    I am never comfortable with the Sync process and hence always Save my Data thru' Back-up... I can choose the location / name of the file I want to.. and can easily transfer it to othe PC using a Pen drive.. (though never needed it..)
    Also tested the functionality.. Take Back-up ( all important / not so important data..) Delete not -so important from the phone.. and restore to confirm..
    --------------------------------------------------​--------------------------------------------------​--------------------------------------------------​--If you find this helpful, pl. hit the White Star in Green Box...

  • Another Library Sync Question

    Hi. A slight variation on an often asked question - but one I haven't found asked elsewhere on the forums:
    So, my old computer died and I don't have a backup of my iPhone contents. I'm trying to sync to a new instance of iTunes on my new laptop.
    I have my mp3 collection on an exteral hard drive, so I can just rebuild the collection on my iPhone if it comes to it.
    The thing is, my mp3 collection is up in the 50,000's and I want to transfer the same 10,000ish to my iPhone out of it ... if possible without starting from scratch.
    So the question is, is it possible to get itunes to recognize that the songs on the iPhone are actually in it's library - but only a subset of the library needs syncing?
    Thanks!

    I didn't find any other free ones, and Tuneranger is discontinued and doesn't work right anyway.  I resorted to using itunes on the mac mini and the option to show files not in it's library to do a manual sync.  I did not try rsync on the w8 machine to push files over because I was worried it would mess up the database files.

  • Calendar Sync Question

    Nice forum,
    I have a question re calendard. in my 9000 I have a work account using BES and one more e-mail work acount using BIS (since they are pop3). When I shcedule an appointment from outlook and choose to send the invitation the pop3 account the appointment is synced with my BB fine (BB calendar shows it in blue).
    But in case I use my 9000 to to add an appointment (BB calendar shows it in orange) using the pop3 account (the default is desktop BES account) then this appointment is not synced with outlook.
    Does anyone know if there is a way to sync these appointments with the outlook calendar(s), too?
    Thanks!

    Hi Donald,
    It's be a pleasure to help you on this!
    As you said, you events created on your computers will show up automatically on my iPod Touch's calendar (if activated). But also, if you make any change or add a new event directly on your iPod, they will definitely appear also on your computer, the next time you access it!
    If this is not the case can someone explain to me how I get the events I have added on the iPod Touch to show up on the calendars at the other locations?
    Have you ever read [this article|http://www.apple.com/mobileme/setup> from Apple. It should be helpful, to teach you how to setup your devices!
    Hope this helps!
    !http://signatures.mylivesignature.com/54486/309/C0888EFB23D8E5532D986DDFEB2F111 D.png!

  • URGENT : Challenge questions query: Oracle Access Manager 10g

    Hi all,
    This is a query regarding password challenge questions in Oracle Access Manager 10g. We have created password policies for a specific container in OID (say cn=xxx,cn=users,dc=oracle,dc=com) and it is working fine.
    In order to exclude certain set of users (say user ABC ) for password policies, we have set the obpasswordchangeflag to false for those users which are in same container for which password policy is created.
    When we try to login to the application with the user say ABC, I am not seeing any reset password page - I am happy till this point. However it is showing Configure Challenge questions page. Is there any way to bypass this page? Or is this the expected behavior?
    This is very urgent and prompt reply is very much appreciated.
    -Mahendra

    Hi Mahendra,
    This is expected behaviour. In order to exclude the password policy management for some certains user for particular domain/container. please add the below configuration parameter to your OAM10g password policy.
    Password Policy Filter Field     (!(|(cn=xxx)(cn=abc)))
    ----Ajay

  • CHALLENGING sync question - which one of you Pro's is up to it?

    I have my iphone set to sync with my calendar and contacts from Outlook '07 and my bookmarks from Internet Explorer. The bookmarks sync perfectly - if I add one on Iphone it puts it into IE and vice versa. Outlook is another story though. It used to sync every time, now not at all. The appropriate boxes are checked in itunes, I have tried the "reset sync history," technique. Tried deleting other 3rd party addins in Outlook, and tried reinstalling itunes. It is almost as though itunes is not looking in the right place for the sync. Is this possible? How can I find out / change where itunes looks for Outlook data? I need a real pro for this question!

    After many pulled hairs and bumping around into all sorts of Fixes, I finally found the correct fix. I hope this helps somebody else.
    Upon boot, I kept receiving a message that "mapi32.dll" was not found. It didn't seem to affect anything, or so I thought. Outlook worked normally - Itunes worked normally. On a whim, I decided to go to a WinXP help forum and search "mapi32.dll." A suggestion was to click start > run > type "fixmapi.exe>" You guessed it - that did the trick. Outlook and Iphone are now happily married and I can start regrowing hair!

Maybe you are looking for

  • Trial version problem when using more than 1 track - does trial version same as full one?

    I am thinking of upgrading to Premiere Elements 9 as I have upgraded my laptop. But the trial version Premiere Elements 9 doesn't even perform as well (with the same media) as Elements 4.0 did on my old laptop. My new laptop is an HP Pavilion with In

  • Resizing PDFs with Adobe PDF Pack

    Our office uses Adobe PDF Pack for combining PDFs and conversions. However, when we send reports via email our PDF attachments are too large for the email to be sent.  Is there a way to resize the file using Adobe PDF Pack, or do we need to buy Adobe

  • Burned cd's skip on consumer players not on computer?

    I burned 8 audio cd's all of them had at least half of the songs skipping slightly most were so bad they were unplayable-two different players wouldn't recognize them.then one did but static and skips were awfull. I tried three different consumer pla

  • Problem you may have in iTunes 7

    If the ituneslibrary data file is missing from your my music folder..go to the previous library folder and copy ALL the files there and put it into the itunes folder, then delete the previous libraries folder...that should help...it did that to me on

  • Paid for monthly plan for photoshop cc but did not receive activation serial number?

    Can somebody tell me if Adobe will email me the activation key or is photoshop CC for photography automatically activated? I have downloaded the PS trial version through CC. Thanks.