Remove Configuration Manager Integration

I have an MBAM 2.0 installation that I'm getting ready to upgrade to 2.5. It was installed with Configuration Manager integration. I would like to decouple this from Configuration Manager, and since the upgrade process is to basically uninstall the existing
version and install the new version, when I'm installing the new version, can I just opt not to install with the integration? And then remove the MBAM bits from the Configuration Manager server?

When removing MBAM installation from ConfigMgr, you will need do delete its IIS site, MBAM collection and Reports from viewer. Keep the database.
I understand, you want to install 2.5 as a stand-alone, right? I suggest you do this:
1. Upgrade existing database with MBAM 2.0 SP1 installer program. Install only DP role and keep DP names intact.
2. In another IIS & SQL server, import database and run 2.5 installation program with desired roles. (sure you can install same stuff on CM without integration, but why do that?).

Similar Messages

  • MDT integrated with Configuration manager

    Hi Team,
    Just wondering if it is suggested not to open or use MDT console workbench once its been integrated with configuration manager?
    I been using it for a while and never faced any issues. I believe it should be fine to use the MDT and configuration manager both even after they been integrated. I generally use MDT workbench for building image and then use Configuration
    manager MDT based TS to deploy it.  I don't see any technical risk. Any advice\best practice? Thanks.
    Regards,

    There should be no problem opening up the MDT console on a machine with ConfigMgr installed, they are separate programs.
    Keith Garner - keithga.wordpress.com

  • Configuration Manager Client Retry Scheduled Task not removed

    I have had several clients where the “Configuration Manager Client Retry” scheduled task is not removed after a successful install. The task will run daily and reinstall the client
    over and over until someone notices and we delete the task. So far I have only seen this happen on R2 clients (5.00.7958.1000). Has anyone ever run into this before? Thanks!

    Hi,
    Has this client installed successfully during the reinstall process?(ccmsetup.log and Client.msi.log) 
    Please check ccrretry.box in Program Files->Microsoft Configuration Manager->inboxes and Ccm.log on the site server to get more information. SCCM might cannot detect the SMS Agent Host is running.
    Best Regards,
    Joyce
    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.

  • Integration Services 2012 - Parameters and configuration management

    Our organization has implemented the project deployment model and it works great!  It helps has helped us standardize deployment and configuration management.  The big plus for us is the fact that we can now run reports on all SSIS
    package configurations.  There is one challenge though that we have come across.  We haven’t found a good way to reuse the same ssis package while passing different parameters from different jobs and still be able to keep the configured parameter
    values for each job documented in SSIDB; if you configure each job to pass different parameter values to the same package, the parameters are actually saved under the the job step’s command.  The challenge is that there isn’t a clean way to retrieve
    those parameters from msdb, unless someone out there has been able to?  We need to retrieve the configured values to be able to build a report on all jobs and packages which contain all configured values.  This makes our jobs easier when troubleshooting
    a problem.
    The only work around we have found is to simply create two different packages, one for each job.  I have a problem with not being able to reuse a package from a conceptual stand point.  I am sure there is someone out there that has come up with a
    good solution.  Can you please share it?
    thank you,
    Juan.

    If I understand you correctly, you may be able to get what you want from catalog.execution_parameter_values catalog view
    http://technet.microsoft.com/en-us/library/ff878152.aspx
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Can't create Source Instance in Configuration manager (BI Apps 11.1.1.7.1)

    Hi
    While configuration i created one source instance for EBS R12.1.3 but I logged into to ODI client Studio and By mistake i deleted 'Data Server' from Topology which i created during Source Instance Creation/configuration on Configuration Manager(CM).
    It wasn't intentionally by mistake i deleted. Due to that reason i am not able to edit source instance. once i try to edit when i save it error pop-ups ""Error: ODI-10182: uncategorized exception during repository access. ORA-00001: unique constrain (DEV_BIA_ODIREPO.AK_CONNECT) violated" .
    Its was bug but after ODI 11.1.1.6.0 they fix it
    Metalink Note (
    1- Note 1545938.1: ODI-10182 and ORA-02292 Errors Signalled After Deleting Unnecessary Datastore in ODI 11g Integration Interface
    2- BUG
    https://support.oracle.com/epmos/faces/BugDisplay?_afrLoop=96427980024293&id=13916069&_afrWindowMode=0&_adf.ctrl-state=1536syzwe9_437
    However I tried following Cases:
    1- Tried to Edit Source Instance from Configuration manager (CM) but Gave me Error: "Error: ODI-10182: uncategorized exception during repository access. ORA-00001: unique constrain (DEV_BIA_ODIREPO.AK_CONNECT) violated".
    2- Tried to Create New Data Server by using Same Source Source Instance on Configuration manager (CM). Failed with error message:'Source system invalid '.
    3- Tried to re-create Same Data Server Name in ODI Studio with Same name. Failed due to error: "Alread Data Server exists"
    So no success so far. I am trying to edit source System Instance but no success so far.
    Versions:
    OBI Apps: 11.1.1.7.1
    OBIEE: 11.1.1.7.0
    ODI: 11.1.1.7.0
    Database: Oracle 11.2.0.3
    OS: Windows 2008 R2
    regards
    sher ullah baig

    I rise SR with oracle and they offered below solution,  i hope it will help someone. 
    How to delete a source system?
    The Configuration Manager user interface does not include a way to delete a source system. In the Define Business Intelligence Applications page you can only add or edit a source system.
    By manually removing the source system from Oracle Data Integrator and from the tables in the back-end database you can effectively delete a source system.
    To manually delete the source system:
    1. Connect to the application database through a utility such as SQL*Plus or SQL Developer, logged in as the same user configured in the WebLogic data source.
    2. Find the source system identifier number of the source system you want to delete by executing the following SQL and looking at the value of column DATASOURCE_NUM_ID:
    SELECT DATASOURCE_NAME, DATASOURCE_NUM_ID FROM C_DATA_SOURCE;
    3. Go to ODI Studio and delete the physical schema associated with the source system.
    4. In ODI Studio go to the respective logical schema:
    2.1. Go to flexfield tab
    2.2. Mark the checkbox for Data source num id flexfield to use default value.
    5. In SQL*Plus or SQL Developer execute the following statements where the bind variable, :Bind_DatasourceNumId, is set to the value of the source system identifier. These SQL statements may also be placed in a script, if needed for later use.
    DELETE FROM C_DATA_SERVER WHERE DATASOURCE_NUM_ID = :Bind_DatasourceNumId;
    DELETE FROM C_DATA_SOURCE_DISABLEDOFFR_REL WHERE DATASOURCE_NUM_ID = :Bind_DatasourceNumId;
    DELETE FROM C_EXECUTION_PLAN_FACTGROUP_REL WHERE DATASOURCE_NUM_ID = :Bind_DatasourceNumId;
    DELETE FROM C_LOAD_PLAN_GENERATION_STEP WHERE EXECUTION_PLAN_ID IN (SELECT EXECUTION_PLAN_ID FROM C_EXECUTION_PLAN WHERE EXECUTION_PLAN_ID NOT IN (SELECT EXECUTION_PLAN_ID FROM C_EXECUTION_PLAN_FACTGROUP_REL));
    DELETE FROM C_EXECUTION_PLAN WHERE EXECUTION_PLAN_ID NOT IN (SELECT EXECUTION_PLAN_ID FROM C_EXECUTION_PLAN_FACTGROUP_REL);
    DELETE FROM C_SRC_DOMAIN_MEMBER_TL WHERE DATASOURCE_NUM_ID = :Bind_DatasourceNumId;
    DELETE FROM C_SRC_DOMAIN_MEMBER WHERE DATASOURCE_NUM_ID = :Bind_DatasourceNumId;
    DELETE FROM C_DOMAIN_MEMBER_MAP WHERE DATASOURCE_NUM_ID = :Bind_DatasourceNumId;
    DELETE FROM C_PARAM_DW_VAL WHERE DATASOURCE_NUM_ID = :Bind_DatasourceNumId;
    DELETE FROM C_PARAM_DW_VAL_AUDIT WHERE DATASOURCE_NUM_ID = :Bind_DatasourceNumId;
    DELETE FROM C_DATA_SOURCE WHERE DATASOURCE_NUM_ID = :Bind_DatasourceNumId;
    COMMIT;
    =========================================
    Regards
    Sher ullah baig

  • When converting over to HTTPS and PKI for clients, not all actions are available in configuration manager cpl

    I'm not exactly sure which forum heading this should go under so if this isn't correct please let me know or move it on my behalf.  
    So I am trying to setup Internet Based Client Management in SCCM 2012 R2 and have come across a few articles on how to do so.   I think I have mostly gotten it to work but I seem to be having a client issue when deploying new machines.  My already
    deployed servers seem to have picked up the PKI setting no problem.  In the past when I would deploy a new windows client everything would be fine.  When i converted over to PKI in my test environment I am now having issues when I go to deploy a
    new windows client. I don't get all of the Actions listed in the Configuration Manager control panel.  All I have are Discovery Data Collection, Machine Policy Retrieval and Eval, User Policy Retrieval and Eval, and Windows Installer Source list Update
    Cycles, before all of them would populate no problem.  I have let this machine sit here for several hours and nothing has changed yet.  It does say PKI for client certificate.  Sometimes when I would deploy new machines it would say NONE for
    Client certificate.  In my production environment it says self-signed.  I have found if i uninstall the client and re-install the client it does populate all of the cycles but I don't understand why it is not working on deployment.
    Ok so maybe not all the time that when i reinstall the client it fixes it.  I just did an uninstall and reinstall on a test client and all it has under actions are machine and user policy cycles.
    Does anyone have any ideas?

    Hi,
    I think SCCM client installed before the GPO applied, so you don't a certificate available when it is required.
    You can export and import the certificate by using MDT integration, try this blog for PKI part:
    How To: Build and Capture in Configuration Manager 2012 using HTTPS
    And in addition, you can upload the log to your onedrive so you can share with us.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Training and Event Management Integration with FICO

    How Training & Event Management is integrated with FICO?
    How it will be integrated and where?
    Could you please put it in simple way?

    Hi Rajesh,
    Cost allocation:
    Here it is possible to charge an employeeu2019s cost center with the fee for attending a business event (e.g. training course, workshop). The business event organizeru2019s cost center will be credited and the attendeeu2019s cost center will be debited.
    Crediting of the senderu2019s cost center  Debiting of the recipientu2019s cost center
    The costs incurred from actually holding a business event can be transferred from the resources cost center to the business event organizeru2019s cost.
    Crediting of the senderu2019s cost center  Debiting of the recipientu2019s cost center
    In SAP Configuration:
    Training and Event Management > Integration->Billing and activity Allocation-->Activity Allocation and cost transfer posting.
    Please do above configuration and create business events with or without resourses, in that you can maintain cost centre to post the expenditures .
    Bhairavareddy

  • [Forum FAQ] Configuration Manager Console shows nothing if you change SSRS to using SSL after Reporting Service Point is installed

    If the SSRS is changed to SSL mode and http binding is removed after Reporting Service Point is installed. The Configuration Manager Console shows nothing in Reporting Pane. After digging into this problem, the cause is that the SSRS information has not
    been updated in Configuration Manager Database. The following steps are taken for finding the root cause.
    1. After changing to SSL, the Reporting Service Point log shows the error as shown in Figure 1.
    The request failed with HTTP status 404: Not Found.
    (!) SRS not detected as running
    Failures reported during periodic health check by the SRS Server DB2.SCJIZHO.COM.
    Figure 1
    From the error, seems the cause was the Reporting Service Point detected a wrong port. We digged around in Registry and found the information is a Registry key named ReportServerUri at HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SMS\SRSRP. After changing the Report
    Server address to https. The error is gone as shown in Figure 2. But the issue remains, the Console still shows nothing. It is not a right direction.
    Figure 2
    2. Open the Console log file, it also shows some valuable information.
    instance of __ExtendedStatus
                    Operation = "ExecQuery";
                    ParameterInfo = "SELECT * FROM SMS_Site WHERE SiteCode = 'PRI'";
                    ProviderName = "WinMgmt";
    \r\n
    [1, PID:3136][04/24/2014 01:46:00] :Property: 'LastModifiedTime'\r\nSystem.Management.ManagementException\r\nNot found \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
       at System.Management.PropertyData.RefreshPropertyInfo()
       at System.Management.PropertyDataCollection.get_Item(String propertyName)
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlResultObjectBase.get_Item(String name)\r\nManagementException details:
    [52, PID:3136][05/11/2014 20:14:15] :[ReportProxy] - User-specified default Reporting Point [PRI.scjizho.com] could not be found, [DB2.scjizho.com] is now the default Reporting Point (Figure 3).
    Figure 3
    It seems the Console wants to access the old http site and it fails to get into the site for sure. Actually, the Site Configuration information is come from Site Control File and as we all know that ConfigMgr 2012 doesn’t store the Site Control file in the
    file system. However, it’s stored in the SQL database (as XML file). The XML file is stored in a view named vSMS_SC_SiteControlXML. This view is a read-only view. We cannot edit it directly. The related table stored the SSRS information for this view is SC_SysResUse_Property.
    Running the following query will list the SSRS address. We can see the address is still the old one. This is why the Console shows nothing.
    SELECT
    name,
    value2
    FROM dbo.SC_SysResUse_Property
    where name
    ='ReportServerUri'
    or name=
    'ReportManagerUri'
    Remarks:
    This article is just to let you know why the Console cannot show the Reports after changing to SSL mode. We do not intend to make you change the table in Database, if you want to change it, you will be at your own risk. The real solution to this situation
    is to reinstall your Reporting Service Point.
    Please click to vote if the post helps you. This can be beneficial to other community members reading the thread.

    Ok, but how do you solve this problem? Does uninstalling the RP and adding it back solve this problem?
    http://www.enhansoft.com/

  • Configuration Manager 2012 R2 - SRS Reporting Services not configuring Report Server

    Hi all,
    I am running stand-alone primary site and remote (shared) SQL 2012 SP1 on Windows 2012 R2 Standard. Remote SQL server is currently hosting multiple instances and Configuratoin Manager is running on a custom instance. SCOM databases also co-exist on the same
    SQL environment (different instance with SSRS installed & running perfectly).
    After setting up the Reporting Services role on Configuration Manager environment,  srsrpsetup.log & srsrpMSI.log states installation is successful. However, when monitoring srsrp.log file, we encounter the below message -
    SMS_EXECUTIVE started SMS_SRS_REPORTING_POINT as thread ID 5232 (0x1470).
    SMS_SRS_REPORTING_POINT 02/12/2014 
    07:44:00 7828 (0x1E94)
    This is a SRS Reporting Point Role as SRSRP registry key exists.
    SMS_SRS_REPORTING_POINT 02/12/2014 07:44:15
    5232 (0x1470)
    Waiting for changes for 0 minutes SMS_SRS_REPORTING_POINT
    02/12/2014 07:44:15 5232 (0x1470)
    Timed Out... SMS_SRS_REPORTING_POINT
    02/12/2014 07:44:15 5232 (0x1470)
    Check state SMS_SRS_REPORTING_POINT
    02/12/2014 07:44:15 5232 (0x1470)
    Check server health. SMS_SRS_REPORTING_POINT
    02/12/2014 07:44:15 5232 (0x1470)
    Registry change SMS_SRS_REPORTING_POINT
    02/12/2014 07:44:15 5232 (0x1470)
    Waiting for changes for 1 minutes SMS_SRS_REPORTING_POINT
    02/12/2014 07:44:15 5232 (0x1470)
    Timed Out... SMS_SRS_REPORTING_POINT
    02/12/2014 07:45:15 5232 (0x1470)
    Steps taken so far -
    1. Switched reporting services to run from local system account to domain account. 
    2. Created new Report Server database on our instance and reconfigured Reporting Services to this DB.
    3. Un-installed and re-installed Reporting Services role in Configuration Manager
    4. Un-installed and re-installed SSRS on Configuration Manager (dedicated) SQL instance after removing Reporting Services role in CM12.
    I have referred couple of links on forum and none seem to help resolve this issue.
    Let me know if there is anything specific I missed out from my end. Appreciate any assistance.
    Regards,
    mittu

    It seems that Reporting Services for SCOM and SCCM cannot co-exist on the same server (it sounds like a bad idea anyway)
    http://www.systemcentercentral.com/system-center-2012using-a-common-sql-backend-database-sysctr-scom-scsm/
    https://social.technet.microsoft.com/Forums/en-US/7e6b5ae9-04c8-4c5d-a77f-9f5208d4e65f/is-it-possible-to-deploy-2-scom-2012-r2-reporting-in-a-sql-server-which-already-has-scom-reporting?forum=operationsmanagerreporting
    https://social.technet.microsoft.com/Forums/systemcenter/en-US/0332b156-bc36-4699-8775-a561915f35ab/scom-2012-reporting-components-with-a-shared-sql-cluster?forum=operationsmanagerdeployment
    Gerry Hampson | Blog:
    www.gerryhampsoncm.blogspot.ie | LinkedIn:
    Gerry Hampson | Twitter:
    @gerryhampson

  • Trying to make Reporting Services Configuration Manager work. Or, SQL Server Reporting Services.

    Under Start > Programs > Microsoft SQL Server 2008, I have the following:
    SQL Server Management Studio
    Configuration Tools
    Integration Services
    Import and Export Data
    Under Configuration Tools, I have the following:
    SQL Server Installation Center
    SQL Server Configuration Manager
    SQL Server Error and Usage Reporting
    Reporting Services Configuration Manager
    I tried to enable Reporting Services through 'Reporting Services Configuration Manager' but I don't seem to have much control from this view.  I see two boxes, one named Server Name (and it shows my server name) and the other is named Report Servicer Instance (and this is grayed out).  If I click on the Find box next to Server Name, I get this message:
    Report Server WMI Provider Error: Invalid Namespace
    Details
    Invalid Namespace
    To get the Server Name I right-clicked SQL Server > Properties > General
    Any ideas on how to make Reporting Services Configuration Manager work?  Or, can you please give me more details on how to access "System control" => "Services"?  I'm not seeing it anywhere and I'm not seeing any way to find "Sql Server Reporting Services".  Basically, I'm trying to activate my SQL Server Reporting Services.
    I am using SQL Server 2008 Express Management Studio.  Is SQL Server Reporting Services included in Express Management Studio?  I read, online, that it is, but I can't find it anywhere.
    Thanks again!
    Ryan--
    <input id="gwProxy" type="hidden"><!-- Session data--></input> <input id="jsProxy" onclick="jsCall();" type="hidden" />

    Thanks Jerry Nee!!  This may be exactly what I’m looking for!  I went to this link:
    http://www.microsoft.com/downloads/details.aspx?FamilyID=B5D1B8C3-FDA5-4508-B0D0-1311D670E336&displaylang=en#filelist  
    At the top of the page it says, ‘Microsoft® SQL Server® 2008 Express with Advanced Services’, which seems like this is what I’m looking for, so I downloaded the file named ‘SQLEXPRADV_x86_ENU.exe’
    Then, I cut that from my desktop and pasted it in my C-drive and I get a message that says, ‘this folder already contains a file named ‘SQLEXPRADV_x86_ENU.exe’, would you like to replace the existing file?’
    I’m thinking…what the heck?  Do I already have this thing?  If so, why can’t I see SQL Server Reporting Services?  Maybe I have it now, and I just don’t know how to access the reporting Services features…
    Couple quick questions:
    What’s the difference b/w these two files: 
    ‘SQLEXPRADV_x64_ENU.exe’ and ‘SQLEXPRADV_x86_ENU.exe’? 
    Also, my current version of SSMS, Help > About shows this:
    Microsoft SQL Server Management Studio
    10.0.1600.22 ((SQL_PreRelease).080709-1414 )
    Microsoft Data Access Components (MDAC)
      2000.085.1132.00 (xpsp.080413-0852)
    Microsoft MSXML
    2.6 3.0 5.0 6.0
    Microsoft Internet Explorer
    8.0.6001.18702
    Microsoft .NET Framework
    2.0.50727.3603
    Operating System
    5.1.2600
    Should Server Reporting Services be included in this version?  I think so!!!
    Under Start > Programs > Microsoft SQL Server 2008 > Configuration Tools > Reporting Services Configuration Manager, I see this:
    Connect to a report server instance:
    Server Name: 
    Report Server Instance: 
    My server name is ‘'EXCEL-4J2W8KYNP', which I got from Control Panel > System Properties > Computer Name > Full Computer Name;
    However, when I put that server name in the box, and hit ‘Find’ I get this message: ‘Report Server WMI Provider error’ Invalid namespace
    Details: Invalid Namespace.
    I have no idea what this means…
    Thanks for everything!
    Ryan---

  • Enrolling iOS devices "not shown in Configuration Manager console"

    After successfully enrolled my Windows RT I want to enroll my iOS devices (iPad 1 & iPhone 4). First step is completing the iOS configuration (uploading APN certificate). Next step I associated my devices by installing management
    profiles (https://manage.microsoft.com). All my application appears when starting the Company Portal App but my device will not appear in my Configuration Manager admin console.
    When I select the Support tile in the Company App it says "Name not yet available", I'm not sure if this is a normal behavior?
    Any thoughts/pointers are welcome.
    Regards,
    Ronny de Jong | inovativ.nl | Blog: donnystyle.wordpress.com | Twitter: twitter.com/ronnydejong

    Hi Jon,
    I've installed the iPhone Configuration Utility and collected the logging below as part of enrolling the iOS devices (iPad & iPhone) and installed the Management Profile:
    iPAD
    Feb 22 23:08:36 iPAD profiled[255] <Notice>: (Note ) profiled: Service starting...
    Feb 22 23:08:36 iPAD profiled[255] <Notice>: (Note ) MC: Profile -M-i-c-r-o-s-o-f-t-.-P-a-y-l-o-a-d-s-.-D-e-v-i-c-e-I-n-f-o -q-u-e-u-e-d -f-o-r -i-n-s-t-a-l-l-a-t-i-o-n-.
    Feb 22 23:08:37 iPAD Preferences[256] <Warning>: Splitview controller <PSSplitViewController: 0x24a900> is expected to have a master view controller before its used!
    Feb 22 23:08:38 iPAD Preferences[256] <Warning>: BTM: attaching to BTServer
    Feb 22 23:08:42 iPAD profiled[255] <Notice>: (Note ) MC: Checking for MDM installation...
    Feb 22 23:08:42 iPAD profiled[255] <Notice>: (Note ) MC: ...finished checking for MDM installation.
    Feb 22 23:08:43 iPAD profiled[255] <Notice>: (Note ) MC: Enrolling in OTA Profile service...
    Feb 22 23:08:51 iPAD profiled[255] <Notice>: (Note ) MC: Attempting to retrieve issued certificate...
    Feb 22 23:08:51 iPAD profiled[255] <Notice>: (Note ) MC: Issued certificate received.
    Feb 22 23:08:51 iPAD profiled[255] <Notice>: (Note ) MC: Retrieving profile from OTA Profile service...
    Feb 22 23:08:52 iPAD profiled[255] <Notice>: (Note ) MC: Received final profile: Microsoft.Profiles.MDM
    Feb 22 23:08:52 iPAD profiled[255] <Notice>: (Note ) MC: Beginning profile installation...
    Feb 22 23:08:52 iPAD profiled[255] <Notice>: (Note ) MC: Profile -M-i-c-r-o-s-o-f-t-.-P-r-o-f-i-l-e-s-.-M-D-M -i-s -r-e-p-l-a-c-i-n-g -a-n -e-x-i-s-t-i-n-g -p-r-o-f-i-l-e -h-a-v-i-n-g -t-h-e -s-a-m-e -i-d-e-n-t-i-f-i-e-r-.
    Feb 22 23:08:59 iPAD profiled[255] <Notice>: (Note ) MC: Attempting to retrieve issued certificate...
    Feb 22 23:09:00 iPAD profiled[255] <Notice>: (Note ) MC: Issued certificate received.
    Feb 22 23:09:01 iPAD profiled[255] <Notice>: (Note ) MC: Profile -M-i-c-r-o-s-o-f-t-.-P-r-o-f-i-l-e-s-.-M-D-M -i-n-s-t-a-l-l-e-d-.
    Feb 22 23:09:01 iPAD profiled[255] <Notice>: (Note ) MC: Removing certificate with persistent ID 69646e7400000000000000a2
    Feb 22 23:09:01 iPAD SpringBoard[51] <Warning>: Reloading and rendering all application icons.
    Feb 22 23:09:02 iPAD profiled[255] <Notice>: (Note ) MC: Removing certificate with persistent ID 69646e74000000000000009f
    Feb 22 23:09:02 iPAD mc_mobile_tunnel[260] <Notice>: (Note ) MC: mc_mobile_tunnel starting.
    Feb 22 23:09:02 iPAD mc_mobile_tunnel[260] <Notice>: (Note ) MC: mc_mobile_tunnel shutting down.
    Feb 22 23:09:02 iPAD mc_mobile_tunnel[261] <Notice>: (Note ) MC: mc_mobile_tunnel starting.
    Feb 22 23:09:02 iPAD SpringBoard[51] <Warning>: Reloading and rendering all application icons.
    Feb 22 23:09:02 iPAD mc_mobile_tunnel[261] <Notice>: (Note ) MC: mc_mobile_tunnel shutting down.
    Feb 22 23:09:03 iPAD mdmd[258] <Notice>: (Note ) MDM: mdmd starting...
    Feb 22 23:09:03 iPAD mdmd[258] <Notice>: (Note ) MDM: Looking for managed app states to clean up
    Feb 22 23:09:03 iPAD com.apple.launchd[1] (com.apple.managedconfiguration.mdmd[258]) <Warning>: (com.apple.managedconfiguration.mdmd) Check-in of Mach service failed. Already active: com.apple.managedconfiguration.mdmdpush-dev
    Feb 22 23:09:03 iPAD mdmd[258] <Warning>: Unable to bootstrap_check_in() to namedDelegatePort 'com.apple.managedconfiguration.mdmdpush-dev'. APS connections will not persist past process lifetime.
    Feb 22 23:09:03 iPAD com.apple.launchd[1] (com.apple.managedconfiguration.mdmd[258]) <Warning>: (com.apple.managedconfiguration.mdmd) Check-in of Mach service failed. Already active: com.apple.managedconfiguration.mdmdpush-prod
    Feb 22 23:09:03 iPAD mdmd[258] <Warning>: Unable to bootstrap_check_in() to namedDelegatePort 'com.apple.managedconfiguration.mdmdpush-prod'. APS connections will not persist past process lifetime.
    Feb 22 23:09:03 iPAD mdmd[258] <Notice>: (Note ) MDM: Network reachability has changed.
    Feb 22 23:09:03 iPAD mdmd[258] <Notice>: (Note ) MDM: Network reachability has changed.
    Feb 22 23:09:03 iPAD mdmd[258] <Notice>: (Note ) MDM: Telling MDM Check-In Server about new device token.
    Feb 22 23:09:11 iPAD mdmd[258] <Notice>: (Note ) MDM: Transaction completed. Status: 200
    Feb 22 23:09:11 iPAD mdmd[258] <Notice>: (Note ) MDM: Telling MDM Check-In Server about new device token.
    Feb 22 23:09:13 iPAD mdmd[258] <Notice>: (Note ) MDM: Transaction completed. Status: 200
    Feb 22 23:09:13 iPAD mdmd[258] <Notice>: (Note ) MDM: Telling MDM Check-In Server about new device token.
    Feb 22 23:09:14 iPAD mdmd[258] <Notice>: (Note ) MDM: Transaction completed. Status: 200
    Feb 22 23:09:14 iPAD com.apple.launchd[1] (com.apple.managedconfiguration.mdmd[258]) <Warning>: (com.apple.managedconfiguration.mdmd) Check-in of Mach service failed. Already active: com.apple.managedconfiguration.mdmdpush-dev
    Feb 22 23:09:14 iPAD mdmd[258] <Warning>: Unable to bootstrap_check_in() to namedDelegatePort 'com.apple.managedconfiguration.mdmdpush-dev'. APS connections will not persist past process lifetime.
    Feb 22 23:09:14 iPAD com.apple.launchd[1] (com.apple.managedconfiguration.mdmd[258]) <Warning>: (com.apple.managedconfiguration.mdmd) Check-in of Mach service failed. Already active: com.apple.managedconfiguration.mdmdpush-prod
    Feb 22 23:09:14 iPAD mdmd[258] <Warning>: Unable to bootstrap_check_in() to namedDelegatePort 'com.apple.managedconfiguration.mdmdpush-prod'. APS connections will not persist past process lifetime.
    Feb 22 23:09:16 iPAD mdmd[258] <Notice>: (Note ) MDM: mdmd stopping...
    iPhone
    Feb 22 23:23:22 iPhone-van-Ronny profiled[1078] <Notice>: (Note ) MC: Checking for MDM installation...
    Feb 22 23:23:22 iPhone-van-Ronny profiled[1078] <Notice>: (Note ) MC: ...finished checking for MDM installation.
    Feb 22 23:23:24 iPhone-van-Ronny profiled[1078] <Notice>: (Note ) MC: Enrolling in OTA Profile service...
    Feb 22 23:23:24 iPhone-van-Ronny profiled[1078] <Error>: Feb 22 23:23:24  SecTrustEvaluate  [leaf AnchorTrusted]
    Feb 22 23:23:29 iPhone-van-Ronny profiled[1078] <Error>: Feb 22 23:23:29  SecTrustEvaluate  [leaf AnchorTrusted]
    Feb 22 23:23:29 iPhone-van-Ronny profiled[1078] <Notice>: (Note ) MC: Attempting to retrieve issued certificate...
    Feb 22 23:23:29 iPhone-van-Ronny profiled[1078] <Error>: Feb 22 23:23:29  SecTrustEvaluate  [leaf AnchorTrusted]
    Feb 22 23:23:29 iPhone-van-Ronny profiled[1078] <Notice>: (Note ) MC: Issued certificate received.
    Feb 22 23:23:30 iPhone-van-Ronny profiled[1078] <Notice>: (Note ) MC: Retrieving profile from OTA Profile service...
    Feb 22 23:23:30 iPhone-van-Ronny profiled[1078] <Error>: Feb 22 23:23:30  SecTrustEvaluate  [leaf AnchorTrusted]
    Feb 22 23:23:30 iPhone-van-Ronny profiled[1078] <Notice>: (Note ) MC: Received final profile: Microsoft.Profiles.MDM
    Feb 22 23:23:30 iPhone-van-Ronny profiled[1078] <Notice>: (Note ) MC: Beginning profile installation...
    Feb 22 23:23:37 iPhone-van-Ronny profiled[1078] <Error>: Feb 22 23:23:37  SecTrustEvaluate  [leaf AnchorTrusted]
    Feb 22 23:23:37 iPhone-van-Ronny profiled[1078] <Notice>: (Note ) MC: Attempting to retrieve issued certificate...
    Feb 22 23:23:38 iPhone-van-Ronny profiled[1078] <Error>: Feb 22 23:23:38  SecTrustEvaluate  [leaf AnchorTrusted]
    Feb 22 23:23:38 iPhone-van-Ronny profiled[1078] <Notice>: (Note ) MC: Issued certificate received.
    Feb 22 23:23:39 iPhone-van-Ronny SpringBoard[67] <Warning>: Reloading and rendering all application icons.
    Feb 22 23:23:39 iPhone-van-Ronny profiled[1078] <Notice>: (Note ) MC: Profile Microsoft.Profiles.MDM installed.
    Feb 22 23:23:40 iPhone-van-Ronny mc_mobile_tunnel[1094] <Notice>: (Note ) MC: mc_mobile_tunnel starting.
    Feb 22 23:23:40 iPhone-van-Ronny mc_mobile_tunnel[1094] <Notice>: (Note ) MC: mc_mobile_tunnel shutting down.
    Feb 22 23:23:41 iPhone-van-Ronny mdmd[1091] <Notice>: (Note ) MDM: mdmd starting...
    Feb 22 23:23:41 iPhone-van-Ronny mdmd[1091] <Notice>: (Note ) MDM: Looking for managed app states to clean up
    Feb 22 23:23:41 iPhone-van-Ronny com.apple.launchd[1] (com.apple.managedconfiguration.mdmd[1091]) <Warning>: (com.apple.managedconfiguration.mdmd) Check-in of Mach service failed. Already active: com.apple.managedconfiguration.mdmdpush-dev
    Feb 22 23:23:41 iPhone-van-Ronny mdmd[1091] <Warning>: Unable to bootstrap_check_in() to namedDelegatePort 'com.apple.managedconfiguration.mdmdpush-dev'. APS connections will not persist past process lifetime.
    Feb 22 23:23:41 iPhone-van-Ronny com.apple.launchd[1] (com.apple.managedconfiguration.mdmd[1091]) <Warning>: (com.apple.managedconfiguration.mdmd) Check-in of Mach service failed. Already active: com.apple.managedconfiguration.mdmdpush-prod
    Feb 22 23:23:41 iPhone-van-Ronny mdmd[1091] <Warning>: Unable to bootstrap_check_in() to namedDelegatePort 'com.apple.managedconfiguration.mdmdpush-prod'. APS connections will not persist past process lifetime.
    Feb 22 23:23:41 iPhone-van-Ronny mdmd[1091] <Notice>: (Note ) MDM: Network reachability has changed.
    Feb 22 23:23:41 iPhone-van-Ronny mdmd[1091] <Notice>: (Note ) MDM: Network reachability has changed.
    Feb 22 23:23:41 iPhone-van-Ronny awdd[1092] <Error>: libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary
    Feb 22 23:23:41 iPhone-van-Ronny awdd[1092] <Error>: CoreLocation: CLClient is deprecated. Will be obsolete soon.
    Feb 22 23:23:41 iPhone-van-Ronny mdmd[1091] <Notice>: (Note ) MDM: Telling MDM Check-In Server about new device token.
    Feb 22 23:23:45 iPhone-van-Ronny mdmd[1091] <Notice>: (Note ) MDM: Transaction completed. Status: 200
    Feb 22 23:23:45 iPhone-van-Ronny mdmd[1091] <Notice>: (Note ) MDM: Telling MDM Check-In Server about new device token.
    Feb 22 23:23:48 iPhone-van-Ronny mdmd[1091] <Notice>: (Note ) MDM: Transaction completed. Status: 200
    Feb 22 23:23:48 iPhone-van-Ronny mdmd[1091] <Notice>: (Note ) MDM: Telling MDM Check-In Server about new device token.
    Feb 22 23:23:49 iPhone-van-Ronny mdmd[1091] <Notice>: (Note ) MDM: Transaction completed. Status: 200
    Feb 22 23:23:51 iPhone-van-Ronny mdmd[1091] <Notice>: (Note ) MDM: mdmd stopping...
    Thanks,
    Ronny de Jong | inovativ.nl | Blog |
    Twitter

  • Kerberos Configuration Manager for SQL Server: Access of system information failed!

    I'm trying to use the new Kerberos Configuration Manager for SQL Server tool that was released recently to verify SPN on several SQL Servers, but any time I attempt to connect to a server I get the following error in the log:
    6/24/2013 3:48:22 PM Info: Connect to WMI, \\<HOSTNAME>\root\cimv2
    6/24/2013 3:48:25 PM Error: Access of system information failed System.DirectoryServices.AccountManagement.PrincipalOperationException: An error (1332) occurred while enumerating the group membership.  The member's SID could not be resolved.
       at System.DirectoryServices.AccountManagement.SAMMembersSet.IsLocalMember(Byte[] sid)
       at System.DirectoryServices.AccountManagement.SAMMembersSet.MoveNextLocal()
       at System.DirectoryServices.AccountManagement.SAMMembersSet.MoveNext()
       at System.DirectoryServices.AccountManagement.FindResultEnumerator`1.MoveNext()
       at System.Linq.Enumerable.Contains[TSource](IEnumerable`1 source, TSource value, IEqualityComparer`1 comparer)
       at KerberosCM.WMIHelper.isUserLocalAdmin(SystemInfo si, UserPrincipal user)
       at KerberosCM.WMIHelper.getUserInfo(SystemInfo mi)
    6/24/2013 3:48:25 PM Error: Error System.Exception: Access of system information failed!
       at KerberosCM.WMIHelper.getUserInfo(SystemInfo mi)
       at KerberosCM.SystemInfo.GetInfo()
       at KerberosConfigMgr.Utility.Login(String serverName, String login, String password, Boolean isCmdLine, Form uiForm)
    Things I have tried to resolve this:
    1. Verified that my account is a Domain Admin.
    2. Attempt to connect locally without inputting any information for server/user/pw
    3. Attempt to connect remotely using server/user/pw
    I always receive the same error message and log: Access of system information failed!
    Has anyone else run into this issue?

    Update to this:
    There were some invalid user accounts added to the Local Administrators group only showing up as a GUID. This caused the enumeration of the group to fail and generate the error in my original post. Removing those user accounts from the Administrators group
    got past the enumeration error.
    However, now when attempting to connect to the servers (locally or remotely) I get this error:
    6/27/2013 10:24:24 AM Info: Connect to WMI, \root\cimv2
    6/27/2013 10:24:38 AM Error: Access of system information failed System.Runtime.InteropServices.COMException (0x80070035): The network path was not found.
       at System.DirectoryServices.DirectoryEntry.Bind(Boolean throwIfFail)
       at System.DirectoryServices.DirectoryEntry.Bind()
       at System.DirectoryServices.DirectoryEntry.get_AdsObject()
       at System.DirectoryServices.PropertyValueCollection.PopulateList()
       at System.DirectoryServices.PropertyValueCollection..ctor(DirectoryEntry entry, String propertyName)
       at System.DirectoryServices.PropertyCollection.get_Item(String propertyName)
       at System.DirectoryServices.AccountManagement.SAMStoreCtx.ResolveCrossStoreRefToPrincipal(Object o)
       at System.DirectoryServices.AccountManagement.SAMMembersSet.MoveNextForeign()
       at System.DirectoryServices.AccountManagement.SAMMembersSet.MoveNext()
       at System.DirectoryServices.AccountManagement.FindResultEnumerator`1.MoveNext()
       at System.Linq.Enumerable.Contains[TSource](IEnumerable`1 source, TSource value, IEqualityComparer`1 comparer)
       at KerberosCM.WMIHelper.isUserLocalAdmin(SystemInfo si, UserPrincipal user)
       at KerberosCM.WMIHelper.getUserInfo(SystemInfo mi)
    6/27/2013 10:24:38 AM Error: Error System.Exception: Access of system information failed!
       at KerberosCM.WMIHelper.getUserInfo(SystemInfo mi)
       at KerberosCM.SystemInfo.GetInfo()
       at KerberosConfigMgr.Utility.Login(String serverName, String login, String password, Boolean isCmdLine, Form uiForm)

  • Configuration Manager Remote Control: rc.exe - Entry Point Not Found

    It appears this may have been caused by a patch since it happened after our systems were patched, but I can't be sure.  This issue was reported before on SCCM servers that had KB2830477 installed.  In some cases removing it works, but not in all
    cases. 
    To create this error, we right-click a computer in a collection in the SCCM admin console on one of the SCCM servers, we get the message "Configuration Manager Remote Control: rc.exe - Entry Point Not Found" with the text "The procedure entry
    point PdhAddEnglishCounterW could not be located in the dynamic link library pdh.dll."  If the SCCM admin console is installed on a workstation, this can be used to start Remote Tools without a problem.  This is only on Windows 2008 R2 servers
    running the SCCM Admin console.

    Does this continue to occur if you reinstall the console?
    Does the console match the version of the ConfigMgr site?
    Have you reviewed your AV logs to see if it might be getting in the way?
    Have you used procmon to potentially identify issues with locating the the DLL?
    Does this happen when folks are launching the admin console while directly RDPed into the server or when the console is served up using RemoteApp (given that's what the mentioned hotfix is for)?
    Jason | http://blog.configmgrftw.com

  • Support for Software Configuration Management(SCM) Tools

    Hi!,
    I am using JDevloper for my project.
    I want to maintain the versions of all files in the project.Also,if all are using one Workspace on network and someone updates a file then message box got dispalyed asking for reloading buffers again.
    So to avoid this and maintain versions I want to use Software Configuration Management (SCM)Tools.So does JDeveloper supports for SCM tools?If yes kindly tell me how to use it?
    Thanks
    Amit
    null

    Hi,
    The upcoming release of JDeveloper (3.2) has support for SCM. In this release, support has been integrated with Oracle's own SCM product, Oracle Repository. In future releases, other SCM products (e.g. CVS) will be supported.
    When JDeveloper 3.2 is released (should be available at the end of Nov / start of Dec), the installation guide will have full details on how to install the Oracle Repository and use the SCM integration in JDeveloper.
    In 3.1 or earlier, a custom addin exists for JDeveloper that can be used to support SCM systems (see JDeveloper documentation on OTN). However, this is not as tightly integrated as the new SCM support coming in 3.2.
    Brian
    JDeveloper SCM Team

  • "Configuration Manager cannot connect to the site" after site update from SP1 to R2

    Our dev SCCM environment only has a single primary site with a remote SQL database.  Initially, the dev primary site had SP1 Beta (5.00.7782.1000) installed but as everyone is aware there is no upgrade path available to SP1 or R2 from Beta; so, we uninstalled
    the site and removed the database, re-installed SP1 non-Beta (5.00.7804.1000), then proceeded to update all devices with the latest client agent.  Afterwards, we attempted to upgrade the site from SP1 non-Beta (5.00.7804.1000) to R2 (5.00.7958.1000).
     All seemed well until we attempt to open the Configuration Manager console and we get the following error message:
    Configuration Manager cannot connect to the site (Site Name)
    The Configuration Manager Administrator console could not connect to the Configuration Manager site database. Verify the version of the console is compatible with the version of the site server you are connecting to and then try to connect again.
    So we tried reinstalling the console directly from here...
    "C:\Program Files\Microsoft Configuration Manager\tools\ConsoleSetup\AdminConsole.msi"
    still the same error message persisted, so we tried installing it from here...
    "C:\Program Files\Microsoft Configuration Manager\tools\ConsoleSetup\ConsoleSetup.exe"
    still the same error message persisted, so then we tried installing it directly from the R2 (5.00.7958.1000) installation media, and afterwards the same error message persisted....
    All along, we were checking the AdminConsole log from here:
    "C:\Program Files (x86)\Microsoft Configuration Manager\AdminConsole\AdminUILog\SmsAdminUI.log"
    Here are the contents:
    [4, PID:4836][04/22/2014 15:21:10] :Property: 'Features'\r\nSystem.Management.ManagementException\r\nNot found \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
       at System.Management.PropertyData.RefreshPropertyInfo()
       at System.Management.PropertyDataCollection.get_Item(String propertyName)
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlResultObjectBase.get_Item(String name)\r\nManagementException details:
    [4, PID:4836][04/22/2014 15:21:10] :ReadExtraProperties: Failed to initialize extra properties
    [4, PID:4836][04/22/2014 15:21:11] :Transport error; failed to connect, message: 'The Configuration Manager Administrator console could not connect to the Configuration Manager site database. Verify the version of the console is compatible with the version
    of the site server you are connecting to and then try to connect again.'\r\nMicrosoft.ConfigurationManagement.ManagementProvider.SmsConnectionWithDetailException\r\nThe Configuration Manager Administrator console could not connect to the Configuration Manager
    site database. Verify the version of the console is compatible with the version of the site server you are connecting to and then try to connect again.\r\n   at Microsoft.ConfigurationManagement.AdminConsole.SmsSiteConnectionNode.ValidateConnectionParameters(ConnectionManagerBase
    connection)
       at Microsoft.ConfigurationManagement.AdminConsole.SmsSiteConnectionNode.GetConnectionManagerInstance(String connectionManagerInstance)\r\nNo details are available for this error.\r\n
    Once again, we validated we could connect to the SQL database from this box, and that the console was at the same version as the site.  Any help or guidance with getting our access to the console restored after the SP1 to R2 upgrade would be greatly
    appreciated. 

    From the Primary Site Server, I tried uninstalling the Admin Console and re-installing using:
    consolesetup.exe /q TargetDir="%ProgramFiles%\Microsoft Configuration Manager" EnableSQM=0 DefaultSiteServerName=<SiteServerName>
    Of course replacing <SiteServerName> with the FQDN of my Primary Site Server.  Console installed successfully however the same error message persists.
    Also tried installing the console on a clean Windows Server 2008 R2 installation.  I tried it from the R2 (5.00.7958.1000) installation media, from the "C:\Program Files\Microsoft Configuration Manager\tools\ConsoleSetup\" both without any luck, the
    same error message persists.  I verified I could ping the FQDN of the site server also, and that the firewall between the two permits communication over the ports listed here: http://technet.microsoft.com/en-us/library/hh427328.aspx
    Any help would be greatly appreciated.

Maybe you are looking for

  • How to make my website logo show as the new Yosemite favourites icon?

    I've been searching high and low for the answer to this question so I hope someone maybe able to help me. When you click in the address bar in safari using Yosemite you get the icons from the websites that you have as a favourite. Some, like Facebook

  • Displaying a Region on Column 2

    Hello All, I have a Jquery tab on one pf my pages. Under one tab, I need to add 2 sub regions, Region1's display point is Column1 & Region2's display point is Column2 How can I achieve this positioning ? I want the regions to be displayed beside each

  • Background doubt?

    Hi.. If a report is run in background then I need to download a file in the bcgdrnd and pass it to the spool. How can I achieve this functionality? Thank You

  • Bug in Presentation services - using cookies for GET requests

    Hi, I am implementing OBIEE bridge to integrate report in to 3rd party web applications. I am creating page using the following syntax: *string pageId = htmlViewService.startPage(new StartPageParams() { dontUseHttpCookies = true }, sessionId);* Even

  • Photoshop CS5 flattening without my permission

    No I did NOT uncheck the layers box. No I did NOT accidently FLATTEN my piece No I didn't change the color space With that out of the way I'm stumped as to why the eff my photoshop has flattened two of my PSD files without my permission. I've lost ho