FIM 2010 Management Agents usage

Hi all,
we have implemented some FIM management agent that read information from different AD forest and the write email contacts into a destination forest. I looking for a tool, or powershell cmdlets I can use to export management agents errors.
I try to explain better, ope FIM Syncronization Service, click on operations button, select the row that reports errors and in pane below show erros details and informations. In my case DistinguishedName for the object that encountered errors. I would
like to export this rows to have a list with all the Distinguishedname and the use that with a script to manage and resolve the issues. i hope to have explained my needed.
Thanks in advance for your help.
Regards

Hi!
You can get this info from FIM sync with WMI.
$maName = "AD-MA"
(Get-WmiObject -Namespace "root\MicrosoftIdentityIntegrationServer" -class "MIIS_ManagementAgent"| where {$_.name -eq $maName}).RunDetails().returnvalue
You will have to pick what you want from the xml but this should get you started.
/Robert
Thanks Robert,
well I try to ask again for more information: :)
Running your script I retrieve:
<?xml version="1.0" encoding="utf-16"?>
<run-history>
 <run-details>
  <ma-id>{AFB1D87E-1580-488F-9F2A-8A382FF4B14A}</ma-id>
  <ma-name>MA_SI</ma-name>
  <run-number>282</run-number>
  <run-profile-name>Delta Sync</run-profile-name>
  <security-id>DOMAIN\user</security-id>
  <step-details step-number="1" step-id="{4550BF08-A3E1-40D4-854E-546C44FBE016}">
   <start-date>2014-04-16 05:10:26.320</start-date>
   <end-date>2014-04-16 05:10:43.310</end-date>
   <step-result>completed-sync-errors</step-result>
   <step-description>
    <step-type type="apply-rules">
 <apply-rules-subtype>apply-pending</apply-rules-subtype>
</step-type>
<partition>DC=fqdn,DC=fqdn,DC=fqdn</partition>
<custom-data>
 <adma-step-data><batch-size>100</batch-size><page-size>500</page-size><time-limit>120</time-limit></adma-step-data>
</custom-data>
   </step-description>
   <current-export-step-counter>0</current-export-step-counter>
   <last-successful-export-step-counter>0</last-successful-export-step-counter>
   <ma-connection>
   </ma-connection>
   <ma-discovery-errors>
   </ma-discovery-errors>
   <ma-discovery-counters>
   </ma-discovery-counters>
   <synchronization-errors><import-error cs-guid="{F56B20AE-8EA3-E311-A7B3-005056A80FB6}" dn="CN=NAME,OU=Contacts,OU=Resources,DC=fqdn,DC=fqdn,DC=fqdn">
 <first-occurred>2014-04-15 22:20:32.657</first-occurred>
 <retry-count>3</retry-count>
 <date-occurred>2014-04-16 05:10:38.847</date-occurred>
 <error-type>extension-dll-exception</error-type>
 <algorithm-step>provisioning</algorithm-step>
<extension-error-info>
 <extension-name>MVExtension.dll</extension-name>
 <extension-callsite>provisioning</extension-callsite>
 <call-stack>Microsoft.MetadirectoryServices.ObjectAlreadyExistsException: An object with DN &quot;"CN=NAME,OU=Contacts,OU=Resources,DC=fqdn,DC=fqdn,DC=fqdn"&quot; already exists in management agent &quot;AD_CF&quot;. An object with
targetAddress smtp:[email protected] already exists, Contact for ObjectName from CAN NOT BE CREATED
   at Mms_Metaverse.MVExtensionObject.Microsoft.MetadirectoryServices.IMVSynchronization.Provision(MVEntry mventry)
</call-stack>
</extension-error-info>
</import-error>
</synchronization-errors>
   <mv-retry-errors/>
   <outbound-flow-counters ma="AD_CF" ma-id="{58020956-DC2A-4C09-9DF1-296778D4788E}">
 <provisioned-add-flow detail="true">1</provisioned-add-flow>
</outbound-flow-counters>
   <staging-counters>
    <stage-no-change detail="false">0</stage-no-change>
    <stage-add detail="true">0</stage-add>
    <stage-update detail="true">0</stage-update>
    <stage-rename detail="true">0</stage-rename>
    <stage-delete detail="true">0</stage-delete>
    <stage-delete-add detail="true">0</stage-delete-add>
    <stage-failure detail="true">0</stage-failure>
   </staging-counters>
   <inbound-flow-counters>
    <disconnector-filtered detail="true">2711</disconnector-filtered>
    <disconnector-joined-no-flow detail="true">0</disconnector-joined-no-flow>
    <disconnector-joined-flow detail="true">0</disconnector-joined-flow>
    <disconnector-joined-remove-mv detail="true">0</disconnector-joined-remove-mv>
    <disconnector-projected-no-flow detail="true">0</disconnector-projected-no-flow>
    <disconnector-projected-flow detail="true">1</disconnector-projected-flow>
    <disconnector-projected-remove-mv detail="true">0</disconnector-projected-remove-mv>
    <disconnector-remains detail="false">235</disconnector-remains>
    <connector-filtered-remove-mv detail="true">0</connector-filtered-remove-mv>
    <connector-filtered-leave-mv detail="true">0</connector-filtered-leave-mv>
    <connector-flow detail="true">0</connector-flow>
    <connector-flow-remove-mv detail="true">0</connector-flow-remove-mv>
    <connector-no-flow detail="true">0</connector-no-flow>
    <connector-delete-remove-mv detail="true">0</connector-delete-remove-mv>
    <connector-delete-leave-mv detail="true">0</connector-delete-leave-mv>
    <connector-delete-add-processed detail="true">0</connector-delete-add-processed>
    <flow-failure detail="true">2</flow-failure>
   </inbound-flow-counters>
   <export-counters>
    <export-add detail="true">0</export-add>
    <export-update detail="true">0</export-update>
    <export-rename detail="true">0</export-rename>
    <export-delete detail="true">0</export-delete>
    <export-delete-add detail="true">0</export-delete-add>
    <export-failure detail="true">0</export-failure>
   </export-counters>
  </step-details>
 </run-details>
</run-history>
If I want to retrieve information from field:
<synchronization-errors> and <call-stack> how I can do this ?
I'd like to have an output with few rows reporting something like:
<synchronization-errors><import-error cs-guid="{F56B20AE-8EA3-E311-A7B3-005056A80FB6}" dn="CN=NAME,OU=Contacts,OU=Resources,DC=fqdn,DC=fqdn,DC=fqdn">
<call-stack>Microsoft.MetadirectoryServices.ObjectAlreadyExistsException: An object with DN &quot;"CN=NAME,OU=Contacts,OU=Resources,DC=fqdn,DC=fqdn,DC=fqdn"&quot; already exists in management agent &quot;AD_CF&quot;. An object with targetAddress
smtp:[email protected] already exists, Contact for ObjectName from CAN NOT BE CREATED
   at Mms_Metaverse.MVExtensionObject.Microsoft.MetadirectoryServices.IMVSynchronization.Provision(MVEntry mventry)
</call-stack>
Do you have any ideas on how to do that ?
Thanks in advance!!!
Regards

Similar Messages

  • FIM 2010 management agent support Oracle Identity directory OID 10.1.4.2.0

    Does FIM 2010 R2 SP1 support  OID version  10.1.4.2.0 ? If there is no support for OID then what is the alternative for making its connectivity?

    The error indicates that the password (or wallet) files oidpwdldap1 and oidpwdr<ORACLE_SID> do NOT exist under $ORACLE_HOME/ldap/admin or your $ORACLE_HOME and $PATH are set incorrectly (a bit unlikely).
    Assuming that the $ORACLE_HOME and $PATH are indeed set to correct values, if the 2 files mentioned above do not exist under $ORACLE_HOME/ldap/admin, then perform the below action plan:
    1. Set the ORACLE_HOME to INFRASTRUCTURE ORACLE_HOME
    2. set the PATH to $ORACLE_HOME/bin:$ORACLE_HOME/ldap/bin:$ORACLE_HOME/opmn/bin:$PATH
    3. Ensure that you are able to login to sqlplus as "ods" user.
    4. If you do NOT know the password of ods user, then reset the password.
    5. Run the below command and enter the ods password when prompted for it.
    oidpasswd create_wallet=true
    6. Voila! The Wallet files are created under $ORACLE_HOME/ldap/admin.
    HTH,
    Regards,
    Praveen
    Edited by: Praveen B K on Aug 28, 2009 3:20 AM

  • SO I am getting a strange error when trying to access the FIM Management Agents

    Hi Everyone,
    So I am getting a really odd error when I go to FIM --> Management Agents -->MOSS-guid ID right click on that and choose porperties, then Configure Connection Information, then I click OK and I get this pop up error "the type of 'pictureurl' string
    is not compatible with the type of 'sps_mv_octelstring_pictureurl'. I got here by noticing that in the error log there was an error that said:
    The management agent "MOSS-guid ID" failed on run profile "MOSS_EXPORT_Guid ID" because the server encountered errors.
    when I searched on that error, it lead me to a ton of blogs that said to do the following:go to FIM --> Management Agents -->MOSS-guid ID right click on that and choose porperties, then Configure Connection Information at the bottom of the page there
    is a Connect To field and every blog I read said to change it to direct:{Domain}:{Port}. The thing is that my domain and port were fine, so that is when I clicked ok, and got that error message. Ever since this happened, my FIM has been broken, and I really
    can't figure out why???
    So I haven't done any updates to the server in at least a year, so nothing could be happening there.
    Any help at all with this would be taken with the greatest appreciation.
    Best regards, Mike

    What you're doing is unsupported. You need to manipulate the MAs via Central Admin -> Manage Service Applications, find your UPA SA and manage it. You can then Manage User Properties and make changes to the Picture property from here.
    Trevor Seward
    Follow or contact me at...
    This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • SharePoint Foundation 2013 SP1 for Microsoft Forefront Identity Manager (FIM) 2010 R2 SP1

    For subsequent installation FIM 2010
    R2 SP1, I must create a Web application
    with the classical method of authentication. According to
    Microsoft (http://technet.microsoft.com/en-us/library/jj863242(v=ws.10).aspx),
    it is created using PowerShell the following commands:
    $ AdminCredentials = Get-user domain
    \ contosoAdmin
    • $ adminManagedAccount = New-SPManagedAccount -Credential $ adminCredentials
    • New-SPWebApplication -Name "FIM SharePoint Web Application" -ApplicationPool "FIMAppPool" -AuthenticationMethod "Kerberos" -ApplicationPoolAccount $ adminManagedAccount -Port
    80 -URL http://www.contoso.com
    But these commands do not specify an account for
    Web services applications,
    and services of that applications will run under the account
    under which installed Sharepoint. As a result,
    the Administration Console Sharepoint error occurs:
    the application service account has
    local administrator rights. But it should not
    be.
      I ask for advice on how to solve this problem.

    Where I can found ULS Log and configuration details as well?
    I have errors:
    Accounts used by application pools or service identities are in the local machine Administrators group.
    One or more web applications are configured to use Windows Classic authentication.
    When I create a Web application through the
    web interface, and select
    the account for the application pool and application services
    (see. Screenshot). So I decided
    that the account application services
    become account under which installed
    Sharepoint, which has local administrator rights.
    And the application pool account to the
    administrators group is not included. Therefore,
    the question arises: what kind of account
    reports error :: 
    there is only one Web application (but
    before I create and delete the same):
    New-SpWebApplication
    DisplayName                    Url
    Sharepoint-FIM                
    http://www.contoso.com
    help to solve the error, please.

  • Oracle IdM integration with Microsoft ILM 2007/FIM 2010

    We currently have ILM 2007 in our environment with limited usage at the moment. We are looking at purchasing Oracle Identity Manager to implement an enterprise wide IAM solution.
    We were wondering if it is possible to continue using ILM like a middleware between our AD forests and the Oracle IdM. Where the Oracle IdM is the overarching IAM solution and Microsoft ILM 2007/FIM 2010 is like the metadirectory for our AD forests.
    Is this possible without installing the Oracle Management Connector on any of our DCs and using ILM as the directory that Oracle IdM connects to. All AD account provisioning/de-provisioning, acct updates, password sync/reset will be initiated from the Oracle IdM to ILM and then implemented on AD. In order words no direct interaction with AD domain controllers from Oracle IdM, everything will go to ILM and ILM in turn applies it to AD.
    Is this possible?
    Is there a custom connector that will work with ILM 2007/FIM 2010
    Is this a simple customization or something that can be problematic and expensive?
    Any feedback is much appreciated
    Thanks

    user1106726 wrote:
    We currently have ILM 2007 in our environment with limited usage at the moment. We are looking at purchasing Oracle Identity Manager to implement an enterprise wide IAM solution.
    We were wondering if it is possible to continue using ILM like a middleware between our AD forests and the Oracle IdM. Where the Oracle IdM is the overarching IAM solution and Microsoft ILM 2007/FIM 2010 is like the metadirectory for our AD forests.
    Is this possible without installing the Oracle Management Connector on any of our DCs and using ILM as the directory that Oracle IdM connects to. All AD account provisioning/de-provisioning, acct updates, password sync/reset will be initiated from the Oracle IdM to ILM and then implemented on AD. In order words no direct interaction with AD domain controllers from Oracle IdM, everything will go to ILM and ILM in turn applies it to AD.
    Is this possible?yes
    >
    Is there a custom connector that will work with ILM 2007/FIM 2010Yes, if you write one you will have a custom connector
    >
    Is this a simple customization or something that can be problematic and expensive?It won't be simple. Problematic and expensive maybe, depends on how good you are with OIM and ILM

  • Upgrade FIM 2010 R2 Sp1 Databases from SQL 2008 R2 to SQL 2012

    Hi,
    I want to upgrade my SQL from 2008 R2 to SQL 2012.
    FIM Databases   
    1) FIMService Database 
    2) FIMSynchronizationService Database 
    Mentioned above are my FIM databases running on SQL server 2008 R2 . Now I was looking for some article which could tell me if SQL can be upgraded without affecting my existing databases of FIM or if i can move these databases to a new server having SQL
    2012
    Activity I want to perform :  Create a fresh  Server of SQL 2012 and move my FIM 2010 databases over it by restoring the backups. but as per the link below it seems not possible!
    http://social.technet.microsoft.com/wiki/contents/articles/5465.fimilm-how-to-move-the-backend-sql-server-synchronization-service-database.aspx

    Hi Shivam,
    Please take a look here: Release Notes for Forefront Identity Manager 2010 R2 SP1.
    In the table you have tasks to upgrade SQL for FIMService and FIMSych.
    FIM Service:
    Upgrade FIM Service servers to FIM 2010 R2 SP1
    Stop FIM Service on all servers
    Backup Database [in case rollback needed]
    Upgrade SQL to SQL Server 2012
    Start FIM Service on all servers
    FIM Synch:
    Upgrade FIM Sync to FIM 2010 R2 SP1
    Stop FIM Sync
    Backup Database [in case rollback needed]
    Upgrade SQL to SQL Server 2012
    Start FIM Sync
    If you are not making in-place upgrade, I would do something like here:
    Stop FIM Services
    Backup the databases at SQL 2008
    Restore backed up databases on SQL 2012
    Make sure SQL Agent Jobs are moved (FIMService)
    Make sure Broker is enabled on FIMService database
    On FIM machines create SQL alias using cliconfg utility. Alias should have the name of "old(sql2008) SQL" and point to new name/instance.
    Start FIM Services - they would use "old" name to connect, but it would be translated to new location. So they would start.
    If you found my post helpful, please give it a Helpful vote. If it answered your question, remember to mark it as an Answer.

  • GAL Synchronization FIM 2010

    currently I have several companies
    with exchange 2010 and 2013
    want to create a global address list,
    my question would be:
    1 I have to implement FIM
    Server in each of the organizations?
    2 I have to purchase a license for FIM
    for each organization?
    thank you very much

    Hello Boris,
    you only need one FIM Server and only the SyncService component, so only 1 Server license has to be purchased.
    In this FIM server you create one Management Agent for GALSync for each forest you want to sync.
    There is a lot of documentation out for this since the good old MIIS times, have a look on this wiki:
    GALSync Resources Wiki
    Regards
    Peter
    Peter Stapf - ExpertCircle GmbH - My blog:
    JustIDM.wordpress.com

  • Kerberos-no-logon-server in fim 2010

    Hi,
    When we run Export run profile of ADMA Management Agent then we get fallowing error
    kerberos-no-logon-server
    and all user that provisioned in AD OU in disabled mode and also taking more time for provisioning.
    please provide any solution.
    Regards
    Anil Kumar

    Yes I do - if the fqdn idea still doesn't fix your problem, turn off the Exchange provisioning features of the AD MA and run a post-export PowerShell script to manage your mailboxes.  This is the approach we mostly take here @ UNIFY whereby the PowerShell
    script is executed by FIM Event Broker - mainly to overcome problems like this.
    Bob Bradley (FIMBob @
    TheFIMTeam.com) ... now using FIM Event Broker for just-in-time delivery of FIM 2010 policy via the sync engine, and continuous compliance for FIM

  • Unable to install Sharepoint Foundation 2013 in Windows Server 2012 for FIM 2010 R2

    HI,
    I am Unable to install Sharepoint Foundation 2013 in Windows Server 2012 for FIM 2010 R2,
    Before SharePoint Foundation 2013 installation I installed all prerequisite software that is required for SharePoint Foundation 2013 but when we run SharePoint Foundation 2013 setup that gives below error so I am requesting you please help on this.
    Setup is unable to proceed due to the following error(s):
    Windows Server Appfabric is not correctly configured.You should unistall Windows Server Appfabric and reinstall it using the SharePoint Products Preparation Tool.
    Regards
    Anil Kumar

    You really need to do what error is suggesting.
    Windows Server Appfabric is not correctly configured.You should unistall Windows Server Appfabric and reinstall it using the SharePoint Products Preparation Tool.
    Nosh Mernacaj, Identity Management Specialist

  • How do I install a management agent

    How do I install a management agent?
    I have OMS installed on Server A.
    I have server B that I need to manage with OMS, how do I install an agent on that?
    There seems to be no clear way of installing an agent, and pointing it to Server A for registration.
    I have tried:
    1. Downloading the management agent from http://www.oracle.com/technology/software/products/oem/htdocs/agentsoft.html
    a. Running the ./runInstaller
    b. It fails with missing .rsp files, I've touched .rsp files in order to get the installer to run
    c. But it does not give me an option to install an agent, only an 'additional service'
    2. The mass installer
    a. I unzipped the agent .zip file into the appropriate directory on Server A
    b. Modified the agentDownload.linux_x64 file
    c. Copied the agentDownload.linux_x64 file to Server B
    d. Run the agentDownload script, with -b option
    i. The script downloaded some files from Server A
    ii. The script quit
    I can't seem to find any real documentation on how to do this that actually makes sense and works.
    I only need to install the agent on a few servers, so I don't need any mass install, surely, how hard can it be?

    Here is some output from agentDownload
    [oracle@drora02 ~]$ scp -p prdgrid01.uto:/opt/oracle/Middleware/oms11g/sysman/agent_download/11.1.0.1.0/linux_x64/agentDownload.linux_x64 .
    [oracle@drora02 ~]$ egrep '^(OMShost|httpPort)' agentDownload.linux_x64
    OMShost=prdgrid01.uto
    httpPort=4900
    [oracle@drora02 ~]$ ./agentDownload.linux_x64 -b $ORACLE_BASE -dt
    agentDownload.linux_x64 invoked on Tue Aug 10 09:52:23 EST 2010 with Arguments "-b /opt/oracle -dt"
    Platform=Linux.x86_64, OS=linux_x64
    GetPlatform:returned=0, and os is set to: linux_x64, platform=Linux.x86_64
    Creating /home/oracle/agentDownload11.1.0.1.0Oui ...
    LogFile for this Download can be found at: "/home/oracle/agentDownload11.1.0.1.0Oui/agentDownload.linux_x64081010095223.log"
    Running on Selected Platform: Linux.x86_64
    Installer location: /home/oracle/agentDownload11.1.0.1.0Oui
    Downloading Agent install response file ...
    Downloading Agent install response file ...
    Executing wget_get_file http://prdgrid01.uto:4900/agent_download/11.1.0.1.0/agent_download.rsp
    using the url http://prdgrid01.uto:4900/agent_download/11.1.0.1.0/ to access OMS
    --2010-08-10 09:52:23-- http://prdgrid01.uto:4900/agent_download/11.1.0.1.0/agent_download.rsp
    Resolving prdgrid01.uto... 10.200.200.36
    Connecting to prdgrid01.uto|10.200.200.36|:4900... connected.
    HTTP request sent, awaiting response... 200 No headers, assuming HTTP/0.9
    Length: unspecified
    Saving to: `agent_download.rsp'
    [ <=>                                                                                                                            ] 7 --.-K/s in 0s
    2010-08-10 09:52:23 (570 KB/s) - `agent_download.rsp' saved [7]
    Finished Downloading agent_download.rsp with Status=0
    Response file check complete - Failed
    Could not download through url . Trying secure download..
    Executing wget_get_file https://prdgrid01.uto:4900/agent_download/11.1.0.1.0/agent_download.rsp
    using the url https://prdgrid01.uto:4900/agent_download/11.1.0.1.0/ to access OMS
    --2010-08-10 09:52:23-- https://prdgrid01.uto:4900/agent_download/11.1.0.1.0/agent_download.rsp
    Resolving prdgrid01.uto... 10.200.200.36
    Connecting to prdgrid01.uto|10.200.200.36|:4900... connected.
    WARNING: cannot verify prdgrid01.uto's certificate, issued by `/O=EnterpriseManager on prdgrid01.uto/OU=EnterpriseManager on prdgrid01.uto/L=EnterpriseManager on prdgrid01.uto/ST=CA/C=US/CN=prdgrid01.uto':
    Self-signed certificate encountered.
    HTTP request sent, awaiting response... 200 OK
    Length: 10008 (9.8K) [text/plain]
    Saving to: `agent_download.rsp'
    100%[===============================================================================================================================>] 10,008 --.-K/s in 0.005s
    2010-08-10 09:52:23 (1.93 MB/s) - `agent_download.rsp' saved [10008/10008]
    Finished Downloading agent_download.rsp with Status=0
    Response file check Complete - Success
    Checking the writable permission for baseDir - passed
    If you wish to receive security updates, provide MYORACLESUPPORT_USERNAME in the <OMS_HOME>/sysman/agent_download/11.1.0.1.0/agent_download.rsp
    If you do not want security updates, set DECLINE_SECURITY_UPATES to true in the <OMS_HOME>/sysman/agent_download/11.1.0.1.0/agent_download.rsp (or) invoke agentDownload with -y option
    [oracle@drora02 ~]$ echo $?
    1
    And that is it, it stops there with no more information, and does not try to do anything further

  • How to show register attribute value in my register users report in FIM 2010 R2

    Hi,
    How to show register attribute value in my register users report in FIM 2010 R2?
    Please suggest on this.
    Regards
    Anil Kumar

    hello,
    the only way I know is manage the attribute descriptiona s a property and then enable the pivot table option "Show properties in tooltip".
    But I'm interested in what you mean with  "using
    "OLAP pivot table extension" is an option". How this works?
    Thanks
    bye
    Norman

  • Problem with the install of 11.1.0.1.0 Management Agent in silent mode

    I have a server with the operation system windows 2003 and a installation WeblogicServer 10.3.2.
    Now I like install the managemant agent for Grid Control on this server.
    I use silent installation, because the in 11.1.0.1.0 Grid Control no longer supports a GUI-based OUI installation of the agent. (Reference : Master Note for Grid Control 11.1.0.1.0 Installation and Upgrade).
    But the silent installation is not sucessfully.
    I get following errors in the logfile:
    oracle.sysman.oii.oiii.OiiiInventoryDoesNotExistException: Der Speicherort für den Bestandszeiger C:\Programme\Oracle\Inventory kann entweder nicht gelesen werden oder ist nicht vorhanden.
         at oracle.sysman.oii.oiii.OiiiInstallAreaControl.initAreaControl(OiiiInstallAreaControl.java:1763)
         at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:292)
         at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:231)
         at oracle.sysman.oii.oiic.OiicStandardInventorySession.initSession(OiicStandardInventorySession.java:180)
         at oracle.sysman.install.oneclick.EMGCGetUpgradeableHomes.initInventorySession(EMGCGetUpgradeableHomes.java:401)
         at oracle.sysman.install.oneclick.EMGCGetUpgradeableHomes.getHomes(EMGCGetUpgradeableHomes.java:113)
         at oracle.sysman.install.oneclick.EMGCGetUpgradeableHomes.getInstance(EMGCGetUpgradeableHomes.java:103)
         at oracle.sysman.install.oneclick.EMGCUpgradeSelection.m_createupgradeTblSCrollPane(EMGCUpgradeSelection.java:252)
         at oracle.sysman.install.oneclick.EMGCUpgradeSelection.m_createMainPanel(EMGCUpgradeSelection.java:151)
         at oracle.sysman.install.oneclick.EMGCUpgradeSelection.<init>(EMGCUpgradeSelection.java:109)
         at oracle.sysman.install.oneclick.EMGCUpgradeSelection.getInstance(EMGCUpgradeSelection.java:123)
         at oracle.sysman.install.oneclick.EMGCWizardFlow.<init>(EMGCWizardFlow.java:315)
         at oracle.sysman.install.oneclick.EMGCWizardFlow.getInstance(EMGCWizardFlow.java:527)
         at oracle.sysman.install.oneclick.EMGCWizardFlow.main(EMGCWizardFlow.java:1103)
         at oracle.sysman.install.oneclick.EMGCInstaller.main(EMGCInstaller.java:1044)
    ERROR: ERROR: E-Mail-Adresse nicht angegeben
    ERROR: Vollautomatische Installation nicht erfolgreich. Weitere Informationen finden Sie im Log.
    Can everybody help me?
    Petra

    Hi,
    the directory c:\Programme\Oracle\Inventory exist.
    I haven't no further files, in which informations for the silent installation are logged.
    I think, the error "ERROR: ERROR: E-Mail-Adresse nicht angegeben" is the actual problem, but I don't like give the e-mail-adress,
    because I use following command for the installation:
    D:\>D:\oas_stage\GridControlAgent_111010\Win32_Grid_Control_agent_download_11_1_0_1_0\win32\agent\setup.exe -silent -responseFile D:\oas_stage\GridControlAgent_
    111010\Win32_Grid_Control_agent_download_11_1_0_1_0\win32\agent\additional_agent.rsp -invPtrLoc C:\Programme\Oracle\Inventory
    The contents of the additional_agent.rsp is following:
    ## copyright (c) 1999, 2010 Oracle. All rights reserved. ##
    ## Specify values for the variables listed below to customize ##
    ## your installation. ##
    ## Each variable is associated with a comment. The comment ##
    ## identifies the variable type. ##
    ## Please specify the values in the following format: ##
    ## Type Example ##
    ## String "Sample Value" ##
    ## Boolean True or False ##
    ## Number 1000 ##
    ## StringList {"String value 1","String Value 2"} ##
    ## The values that are given as <Value Required> need to be ##
    ## specified for a silent installation to be successful. ##
    ## This response file is generated by Oracle Software ##
    ## Packager. ##
    RESPONSEFILE_VERSION=2.2.1.0.0
    #Inputs for Oracle Configuration Manager
    #SECURITY_UPDATES_VIA_MYORACLESUPPORT:<Boolean> Whether security updates are reqi-
    # uired via My Oracle Support
    #DECLINE_SECURITY_UPDATES:<Boolean> Whether security updates should be declined.
    #MYORACLESUPPORT_USERNAME & MYORACLESUPPORT_PASSWORD:<String> User name and passw-
    # ord for My Oracle Support access, these will be effected only when SECU-
    # RITY_UPDATES_VIA_MYORACLESUPPORT=true
    #COLLECTOR_SUPPORTHUB_URL:<String> If there is not direct connection and Support
    # hub is deployed. Need to specify that URL.
    SECURITY_UPDATES_VIA_MYORACLESUPPORT=False
    DECLINE_SECURITY_UPDATES=False
    #[email protected]
    #MYORACLESUPPORT_PASSWORD=no
    #COLLECTOR_SUPPORTHUB_URL=<Value Unspecified>
    #PARAMETERS FOR SOFTWARE UPDATES
    #INSTALL_UPDATES_SELECTION:<String>
    # Option 1. If you want to skip the software updates, provide
    # INSTALL_UPDATES_SELECTION="skip"
    # Option 2. If you have already downloaded the updates then provide
    # INSTALL_UPDATES_SELECTION="staged"
    # If you choose the Option 2 then make sure you also provide STAGE_LOCATION.
    #STAGE_LOCATION:<String> Stage location for software updates. It will be effected
    # only when INSTALL_UPDATES_SELECTION is set to "staged"
    INSTALL_UPDATES_SELECTION="skip"
    STAGE_LOCATION=<Value Unspecified>
    #PROXY DETAILS FOR SECURITY UPDATES/ SOFTWARE UPDATES
    #PROXY_USER:<String> User name for proxy access.
    #PROXY_PWD:<String> Password for proxy access.
    #PROXY_HOST:<String> Server providing proxy access.
    #PROXY_PORT:<String> Port for proxy access.
    PROXY_USER=<Value Unspecified>
    PROXY_PWD=<Value Unspecified>
    PROXY_HOST=<Value Unspecified>
    PROXY_PORT=<Value Unspecified>
    #Various inputs required for Installation and Configuration
    #ORACLE_AGENT_HOME_LOCATION:<String> The location of oracle agent home.
    #Agent home "agent11g" would be created under the directory specified by
    #ORACLE_AGENT_HOME_LOCATION.
    ORACLE_AGENT_HOME_LOCATION=D:\Oracle
    #DEINSTALL_LIST:<StringList> List of components to be deinstalled during a
    # deinstall session.The following choices are available. The value should
    # contain only one of these choices.The choices are of the form
    # Internal Name, Version : External name. Please use the internal name and
    # version while specifying the value.
    # oracle.sysman.top.agent, 10.2.0.0.0 : Oracle Management Agent 10.2.0.0.0
    # oracle.sysman.top.em_seed, 10.2.0.0.0 : Oracle Enterprise Manager Repository Database 10.2.0.0.0
    # oracle.sysman.top.oms, 10.2.0.0.0 : Oracle Enterprise Manager Grid Console 10.2.0.0.0
    DEINSTALL_LIST={"oracle.sysman.top.agent","11.1.0.1.0"}
    #b_silentInstall:<Boolean> The user should not change this value
    #CLUSTER_NODES:<StringList> This variable represents the cluster node names
    # selected by the user for installation.
    b_silentInstall=true
    #CLUSTER_NODES=<Value Unspecified>
    #TOPLEVEL_COMPONENT:<StringList> The top level component to be installed in the
    # current session.Value should contain only one of the following available
    # choices.The choices are of the form Internal Name, Version : External name.
    # Please use the internal name and version while specifying the value.
    # oracle.sysman.top.agent, 10.3.0.0.0 : Oracle Management Agent 10.3.0.0.0
    # Example: TOPLEVEL_COMPONENT = {"oracle.sysman.top.agent","10.3.0.0.0"}
    TOPLEVEL_COMPONENT={"oracle.sysman.top.agent","11.1.0.1.0"}
    #SELECTED_LANGUAGES:<StringList> Languages in which the components will be installed.
    # The following choices are available. The value should contain only one of
    # these choices.The choices are of the form Internal Name : External name.
    # Please use the internal name while specifying the value.
    # en, : English
    # de, : German
    # es, : Latin American Spanish
    # es_MX, : Mexican Spanish
    # es_ES, : Spanish
    # fr, : French
    # fr_CA, : Canadian French
    # it, : Italian
    # iw, : Hebrew
    # ja, : Japanese
    # ko, : Korean
    # pt_BR, : Brazilian Portuguese
    # zh_CN, : Simplified Chinese
    # zh_TW, : Traditional Chinese
    #Example: SELECTED_LANGUAGES = {"en"}
    #SELECTED_LANGUAGES={"en"}
    #COMPONENT_LANGUAGES:<StringList> Languages in which the components will be installed.
    # The following choices are available. The value should contain only one of
    # these choices.The choices are of the form Internal Name : External name.
    # Please use the internal name while specifying the value.
    # en, : English
    # de, : German
    # es, : Latin American Spanish
    # es_MX, : Mexican Spanish
    # es_ES, : Spanish
    # fr, : French
    # fr_CA, : Canadian French
    # it, : Italian
    # iw, : Hebrew
    # ja, : Japanese
    # ko, : Korean
    # pt_BR, : Brazilian Portuguese
    # zh_CN, : Simplified Chinese
    # zh_TW, : Traditional Chinese
    #Example: COMPONENT_LANGUAGES = {"en"}
    COMPONENT_LANGUAGES={"en"}
    #OMS_HOST:<String> OMS host info required to connect to OMS
    #OMS_PORT:<String> OMS port info required to connect to OMS
    #AGENT_REGISTRATION_PASSWORD:<String> Agent Registration Password needed to
    # establish a secure connection to the OMS.
    OMS_HOST=sidk-vswo14.smi.sachsen.de
    OMS_PORT=4889
    AGENT_REGISTRATION_PASSWORD=gc11agent
    #s_agentSrvcName:<String> Sets the agent Service Name and this variable can be
    # used to overrite the agent service name calculated by the install. This is
    # required for only Windows.
    # Example:
    # s_agentSrvcName = "Oracleagent11gAgent" ; default value
    # s_agentSrvcName = "GridAgent"      ; User specified value
    #s_agentSrvcName=""
    #Please Don't change the values of these variables
    #FROM_LOCATION:<String> Complete path to the products.xml.
    #b_upgrade:<Boolean> "whether it is Upgrade or not"
    #EM_INSTALL_TYPE:<STRING> install type
    FROM_LOCATION="../stage/products.xml"
    b_upgrade=false
    EM_INSTALL_TYPE="AGENT"
    Regards Petra

  • FIM 2010 Sync not running with status "Stopped-extension-dll-exception"

    we are getting the following error for all our extensions when trying to run the Sync Operations. All extensions have similar errors with event ID 6159 generated in the application event log. They all started occurring after I deleted a attribute flow
    rule in one of the agents. This is happening in Production and are facing lot of other issues because of this.
    The management agent "Peoplesoft" failed on run profile "Full Import Full Synch" because of a problem with the initialize method on the extension object. The extension dll is "PeoplesoftExtension.dll" and the stack trace is:
    Microsoft.MetadirectoryServices.UnexpectedDataException: String or binary data would be truncated.
    The statement has been terminated.
       at Mms_ManagementAgent_PeoplesoftExtension.ExtFunctions.RunSQLCommand(String commandstring)
       at Mms_ManagementAgent_PeoplesoftExtension.ExtFunctions.AddSentEmailsRecord(String sAMAccountName, String MessageSubject, String MessageBody, Int16 DelayDays)
       at Mms_ManagementAgent_PeoplesoftExtension.ExtFunctions.CheckDoNotDisableInactiveGroup()
       at Mms_ManagementAgent_PeoplesoftExtension.ExtFunctions.LoadConfigSettings()
       at Mms_ManagementAgent_PeoplesoftExtension.ExtFunctions.InitializeCommon()
       at Mms_ManagementAgent_PeoplesoftExtension.MAExtensionObject.Initialize()
    Please advise on how to fix this as I have no clue where to start and am new to FIM.
    Only Full Import(Staging ONLY) is successful.

    The error message you are getting is talking about data getting truncated. Any change that you had a data change alongside your other changes and now the length of data in one or more of your attributes is longer than it was?
    I suspect that since you are new to FIM, something else has changed that you don't realize (beyond just the deletion of the one sync rule), but...
    If truly the only thing that changed was a deletion of a flow rule, is there any chance that either of the following could have happened:
    With the deletion of a flow rule the corresponding data is no longer going through the sync engine. Could there be some logic that due to precedence, is now using a different value, and this different value is too long for some other piece of logic.
    With the deletion of a flow rule the corresponding data is no longer going through the sync engine. With this value missing, some extension logic is making a different choice and generating invalid data. Without the deleted data flow, there may be a null
    value that extension logic is not properly dealing with.
    As was suggested, the best thing to do may be to restore from backup and get the system back to a known state.
    If you have development skills and if you have the source code to your custom rules extensions, it is fairly easy to debug and single step through the code. This of course must be done with extreme caution if you are in a production environment. You will
    also need familiarity with how the FIM Synchronization engine works. Documentation is here:
    http://msdn.microsoft.com/en-us/library/windows/desktop/ms698774

  • FIM 2010 Workflow Processing Issue

    Hi All,
    We are having a problem with FIM 2010 (Update Rollup 2) workflow processing.
    Background is:
                Set: Object State 2 set (criteria based membership, criteria includes AUX_Attr1 ‘NOT Equal’ 3)
                Set Object State 3 Set (Manually managed membership)
    WF1: set AUX_Attr1 to 3
    WF2 : Set AUX_Attr1 to 2
    MPR 1: Transition in MPR (Transition set = Object State 2 set), fires WF2
    MPR 2: Transition in MPR (Transition Set = Object State 3 Set), fires WF1
    What we are seeing is the following:
                We add a user to “Object State 3 Set”
    From the request history we can see that:
    The successful request for the set membership change (transition in Object State 3 Set)
    The successful request by the Forefront Identity Manager Service Account to set AUX_Attr1 to 3
    and FIM correctly fires MPR 2, this sets AUX_Attr1 to 3 and this has been verified by looking through the request history
                A couple of seconds later FIM fires WF2 which sets AUX_Attr1 back to 2.
                The request history shows no signs of the object transitioning back into “Object State 2 set” so I am unsure why this
    workflow would trigger again.

    Best thing to do with this problem is look at the request that caused this to happen and look for parent requests and for the applied policies
    David Lundell, Get your copy of FIM Best Practices Volume 1 http://blog.ilmbestpractices.com/2010/08/book-is-here-fim-best-practices-volume.html

  • Self Service Password Registration Page taking more time for loading in FIM 2010 R2

    Hi,
    I have beeen successfullly installed FIM 2010 R2 SSPR and it is working fine
    but my problem is that Self Service Password Registration Page taking more time for loading when i provide Window Credential,it is taking approximate 50 to 60 Seconds for loading a page in FIM 2010 R2
    very urgent requirement.
    Regards
    Anil Kumar

    Double check that the objectSid, accountname and domain is populated for the users in the FIM portal, and each user is connected to their AD counterparts
    Check here for more info:
    http://social.technet.microsoft.com/wiki/contents/articles/20213.troubleshooting-fim-sspr-error-3003-the-current-user-account-is-not-recognized-by-forefront-identity-manager-please-contact-your-help-desk-or-system-administrator.aspx

Maybe you are looking for

  • LG TV Connection to Network

    Just purchased an LG TV that has Netcast. I can't get it to connect to my home network even though it is getting a great signal. I am asked to enter the security key for my network and I enter my password but that is not accepted. Any ideas? BTW I am

  • Lineitem detial for confirmation/produciton order-othr thn 0pp_c03/0pp_c01?

    Dear Friend, I am using 0pp_c03(work center view) for confirmation order detial But while first full load  i am getting latest total record i.e. order confirmed on 4 diffrent days than we are getting sum of confirm quantity of all 4 days with latest

  • I cant play any songs from icloud on my iTunes. they are all grayed out

    when i try to get my music in my itunes, it is all in the icloud and they are grayed out and there is not an option for me to download them. what am i missing?

  • Unable to open a specific Numbers 3.2 SS  while running 3.2

    I have a new replacement MBA running 10.9.3.  I have Numbers 3.2 open.  From the cloud, when I try to open one specific SS created in Numbers 3.2 I get the message that I need to get a newer version to open this SS. Of course, there is no newer versi

  • Sony Vaio Graphics Questions

    Im thinking about purchasing the Sony - VAIO All-In-One Computer / Intel® Core™ i3 Processor / 21.5" Display / 4GB Memory / 500GB Har... and was wondering what type of games  the graphics will support (can it play games like call of duty 4 or 5?) an