Roll Back SCOM 2012 R2 after deploying Cumulative Updates

Hi,
I updated my SCOM 2012 R2 Environment into CU2 and I need to roll back this CU2 into the previous version CU1.
Is there any way to do the roll back to any previous version of CU?
Thanks,
Khaled

You should refer to http://support.microsoft.com/kb/2929891/en-us which provide uninstall information
To uninstall an update, run the following command:
msiexec /uninstall PatchCodeGuid /package RTMProductCodeGuid
Note In this command, <var>PatchCodeGuid</var> is a placeholder that represents one of the following GUIDs.
Collapse this tableExpand this table
Patch Code GUID
Component
Architecture
Language
{D6943F32-41C0-4252-B216-4EE6867F74FB}
Server
AMD64
EN
{1D38FCF3-DDB1-4810-B747-898E7FCCC57B}
Gateway
AMD64
EN
{3FF0B1F5-9A92-4544-A311-6CCFE552BD0F}
WebConsole
AMD64
EN
{033805E7-9FBA-45A8-B9E0-DEF1395D0E63}
Console
AMD64
EN
{4A2BA6B7-9A24-46FA-A379-1ABD74E576AB}
Console
x86
EN
Additionally, <var>RTMProductCodeGuid</var> is a placeholder that represents one of the following GUIDs.
Collapse this tableExpand this table
Component
RTMProductCodeGuid
Server
{C92727BE-BD12-4140-96A6-276BA4F60AC1}
Console (AMD64)
{041C3416-87CE-4B02-918E-6FDC95F241D3}
Console (x86)
{175B7A24-E94B-46E5-A0FD-06B78AC82D17}
WebConsole (AMD64)
{B9853D74-E2A7-446C-851D-5B5374671D0B}
Gateway
{1D02271D-B7F5-48E8-9050-7F28D2B254BB}
SCX-ACS (AMD64)
{46B40E96-9631-11E2-8D42-2CE76188709B}
SCX-ACS (x86)
{46B40E96-9631-11E2-8D42-2CE76188709B}
Roger

Similar Messages

  • SCOM 2012 R2 Agent Deployment - Uninstall Old and Install New

    By chance anyone come up with a scripted method for removing an existing SCOM 2012 SP1 agent and installing a new 2012 R2 agent? While I've come across a few scripts I'm trying to kill a few birds with one stone. This is a cross-domain attempt where the
    SCOM servers sit in one domain and the member servers are scattered across multiple domains. Member servers range from Windows Server 2003, 2008, and 2012. In most cases the servers have the 2012 SP1 agent installed and in some cases there are multiple management
    groups from previous SCOM standups. In addition there's a separate DEV SCOM 2012 R2 environment to manage DEV/QA servers. Active Directory Integration is configured and I have the necessary security groups created. There is a group policy created which is
    filtered to just that security group. So the plan is to simply drop the servers into the correct group and have the agent installed via group policy start up script. ADI should have DEV servers appear in DEV SCOM and PROD in PROD SCOM.
    Although there are ways to facilitate agent deployment via the console I need to perform a staged migration against a ton of server so as to not impact the existing production environment. So I'd rather do this remotely to pre-selected servers. This process
    should involve removing the existing agent, installing the new one, and if possible removing any existing management groups. So far I've come up with the following:
    Uninstall SCOM Agent:
    %WinDir%\System32\msiexec.exe /x <path>\MOMAgent.msi /qb
    Install SCOM Agent:
    msiexec.exe /i \\path\Directory\MOMAgent.msi /qn /l*v \logs\MOMAgent_install.log USE_SETTINGS_FROM_AD=0 MANAGEMENT_GROUP=<MG_Name> MANAGEMENT_SERVER_DNS=<MSDNSName> ACTIONS_USE_COMPUTER_ACCOUNT=0 ACTIONSUSER=<AccountUser> ACTIONSDOMAIN=<AccountDomain>
    ACTIONSPASSWORD=<AccountPassword>
    Remove Management Group via Script
    http://gallery.technet.microsoft.com/Remove-a-Management-group-336c849a/view/Discussions#content
    I'm guessing this wheel has already been invented or maybe there's a better way. So I'm open to ideas or suggestions.
    Any responses appreciated.

    Wow! 4 days and no responses, not good Microsoft SCOM Community. So here's a status on this issue.
    As stated I have Active Directory Integration configured which means:
    I see the OperationsManager container in AD: dev_scom
    I see the HealthService SCP and separate OU's for each of my management servers.
    I have an ADI security group containing my management servers and scom action account.
    I have an Agent security group which will contain servers the scom agent will be deployed via group policy.
    I also have an AD LDAP query set to target the SCOM agent group.
    (&(objectCategory=group)(name=DSCOM_ADI))
    I finally get the script to install via the following steps:
    Reference:
    http://technet.microsoft.com/en-us/library/cc754995.aspx
    http://technet.microsoft.com/en-us/library/cc770556.aspx
    http://blog.coretech.dk/msk/install-a-scom-2012-agent-silent/
    1. Launch Notepad ++ and enter the following:
    msiexec /i
    \\server.yourdomain.com\opsmgragent\%Processor_Architecture%\MOMAgent.msi USE_SETTINGS_FROM_AD=1 MANAGEMENT_GROUP=DEV_SCOM MANAGEMENT_SERVER_DNS=YourSCOMsrvr1.yourdomain.com ACTIONS_USE_COMPUTER_ACCOUNT=0 USE_MANUALLY_SPECIFIED_SETTINGS=0 ACTIONSUSER=svc_dscom
    ACTIONSDOMAIN=yourdomain ACTIONSPASSWORD=YourPassword! AcceptEndUserLicenseAgreement=1 /qn /l*v c:\scom2012r2mmainstall.log
    2. Save the script to a name of your choice. For me it's installdopsmgragent.cmd. Watch the extensions as you may end up saving it as installdopsmgragent.cmd.txt.
    Note: Make note of this steps in the reference articles listed above:
    "In the Add a Script dialog box, do the following:
    In the Script Name box, type the path to the script, or click Browse to search for the script file in the Netlogon shared folder on the domain controller."
    It's been a while since having to use a startup script so it took me a minute to figure this out. "getting too old 'fer this..."
    3. Copy the script to the Netlogon folder which is located in the following directory on my Windows 2012 server: E:\SYSVOL\sysvol\yourdomain.com\scripts
    4. Launch the group policy management console, create a new policy, edit it, and navigate to the following location:
    Computer Configuration > Policies > Windows Settings > Scripts (Startup/Shutdown)
    5. Double-click Startup to open the Startup Properties window.
    6. Click Add and browse to the location of the script which you copied to the Netlogon share.
    7. Click OK to close the Startup Properties window.
    8. Close the Group Policy Management Editor.
    9. Link the policy to an OU containing the servers.
    10. Add the SCOM Agent group to the Security Filtering area of the group policy. I also remove Authenticated Users.
    Note: make sure you have a few test servers in your Agent security group.
    11. Drop to a command line and run gpupdate /force. You can also use gpupdate /force /sync but you will have to reboot the box you're running this from.
    12. Log into one of the servers you have slated to deploy the agent to, drop to a command line, and run the same gpupdate command.
    13. Follow this with a gpresult /r command to ensure that you see the policy applied in the Computer Settings area.
    14. Reboot the server and you should see the startup script run.
    15. Log into the server and launch the Control Panel.
    16. If all went well you'll see the "Microsoft Monitoring Agent" icon.
    17. Launch Event Viewer, navigate to the Operations Manager events node located under Applications and Services Logs and validate the logs.
    17. If all didn't go well check the error log located, for me, on the C:\scom2012r2mmainstall.log
    My issue: I don't see the management info in the Agent properties.
    I installed this last night and waited until the next day still no changes. Event logs show the following:
    Event ID: 2011 The Health Service did not find any policy in Active Directory
    Event ID: 2003 No management groups were started.  This may either be because no management groups are currently configured or a configured management group failed to start.  The Health Service will wait for policy from Active Directory configuring
    a management group to run.
    I see the HealthService is Running in Task Manager on this server and of course I don't see anything listed in the Management Groups registry key:
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\HealthService\Parameters\
    I don't want to manually add the management group info. Checking as I may have missed something in one of the switches. 
    Any responses appreciated.

  • Roll Back the Sales Order After Adding

    Hi Experts,
    I want to roll back the system form trasaction like Sales Order. After adding the Sales Order immediately i want to roll back the transaction.
    I used the Company.Transaction Object, but it is only working on User Tables. Not in System Forms like Sales Order.
    Can you please tell me the solution for this ASAP.
    Thanks in Advance,
    G.Suresh

    Hi Petr,
    You didnt get my point. In my concern is, i am going to add Sales Order by Manually not using code.
      In FormDataEvent of the Sales Order
                Select Case BusinessObjectInfo.EventType
                    Case SAPbouiCOM.BoEventTypes.et_FORM_DATA_ADD
                     If BusinessObjectInfo.ActionSuccess = True Then
    /***** This Code for getting current transaction of the Sales Order *****/
                            Dim oObject As SAPbobsCOM.Documents
                            oObject = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oOrders)
                            oObject.Browser.GetByKeys(BusinessObjectInfo.ObjectKey).
    /**** here i want to rollback the saved sales order  ****/
                    End If
                  End Select
    Can you tell me, how i ll rollback the already saved transaction which added by user from Sales Order Screen not in code.
    Thanks in Advance,
    G.Suresh.

  • SCOM 2012 Cross forest deployment

    Hi all,
    Is two way trust is mandatory to deploy cross forest scom 2012 if we user certificate also ?
    Thanks,
    Sengottuvel M

    Monitoring across non- trust domain
    1) two way trust between domains OR
    2) using certificate
    Roger

  • Issue after applying Cumulative update on SharePoint 2010 Server

    Hi All,
    We got an issue after applying the "SharePoint Server 2010 and Project Server 2010 Cumulative Update Server Hotfix Package (MOSS server-package,
    Project server-package): June 28, 2011" on SharePoint 2010 server.
    Environment details:
    OS: Windows server 2008 R2 with SP1
    TFS: TFS 2010 with SP1
    DB:  SQL Server 2008 R2
    SharePoint: SharePoint 2010 with SP1
    Due to this issue we are not able to proceed further to integrate PS 2010 with TFS 2010. Can someone please suggest solution for this issue.
    Thanks,
    Rajukumar

    Hi Rajukumar,
    At the very first, please refer to the article below for installing CU on Project 2010 server:
    http://technet.microsoft.com/en-us/library/dd239177(v=office.14).aspx#Installation_steps
    I found a blog for this issue:
    http://blogs.msdn.com/b/brismith/archive/2011/07/06/project-server-2010-sp1-and-june-2011-cu-formatexception-when-trying-to-provision-a-pwa-site.aspx
    In addition, I'd recommend you install latest update for your server.
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How do i find my music back that got moved after an itunes update

    after a itunes UPDATE all of my music that use to be there cant be found, Im not in a cloud, how and where do i look for my music? i have windows 8.1

    Installing iTunes does not move media.
    scottyddg wrote:
    Im not in a cloud
    Are you sure? 
    No content shows in iTunes after updating
    How to re-create your iTunes library and playlists

  • How do i add my camera roll back to my iphone after a restore?

    I back up to icloud every night so it should be there. Most everything came back except my text messages and photos and videos after my restore.

    Same thing happened to me yesterday - were you able to get your pictures back?  I know they were saved to iCloud - but they didn't restore

  • Cannot roll back to Firefox 4 after installing Firefox 12

    I'd upgraded to Firefox 12 from Firefox 4 on my Windows XP system, and it consistently closes instantly when starting, no crash dialog, no errors, nothing. Just instant close. I've tried opening it in safe mode, disabling all add-ons, and restarting in normal mode, and it still closes instantly.
    So I decided to go back to Firefox 4. I uninstalled 12, manually deleted all the Mozilla Firefox folders and data, rebooted the computer, and installed Firefox 4. When I start Firefox 4 it will, without permission, immediately download the Firefox 12 upgrade. I tried unchecking the 'Check for updates to the browser' checkbox, but since it's already in the process of downloading the upgrade, I can't stop it.
    What do I have to do to get rid of all vestiges of Firefox 12 so i can go back to using Firefox 4 normally, short of completely reinstalling my OS?

    Earlier Firefox versions 3.x, 4.0.x, etc. are no longer maintained with Security and Stability updates and therefore contain Security Vulnerabilities that are known and could be exploited by some websites to gain unauthorized access to information or to disrupt critical processing. Only the Latest version Firefox 12.0 is secure against these known vulnerabilities. See these articles for some guidance:
    * http://en.wikipedia.org/wiki/Vulnerability_%28computing%29#Vulnerability_consequences
    * http://www.mozilla.org/security/known-vulnerabilities/firefox.html#firefox12

  • Roll back to standard SAP, after generating a new version for an interface

    Hello all,
    Somebody has modified one standard interface, and now a new version has been created with that  user name.  But, there is no difference between the old SAP version and the current active versioin (he/she has changed nothing).  If i go and see the version management it is appearing like this,
    X     Active    ..............   with that user name............
    below which i have the standard SAP version like this,
    .......................0.00.000. ......................  SAP
    But, if i go and see the attributes for that interface,  its showing
    LAST CHANGED BY    ............................ SAP
    how this can happen, when the active version is under a user name, but still the attributes is showing LAST CHANGED BY as SAP ????
    one more question,
    Now i want to revert my interface back to Standard SAP version, although there are no changes between the old and the current version.  If i go and see the version management, it should show me only one version that too of standard SAP, like this,
    X      Active...........................   SAP.
    THe reason is, some body in future on seeing this interface should not think that this standard interface got changed.
    Is it possible now?  Please give me suggestions. 
    Thanks in advance

    Hi ,
    This currently seems like a bug , we have encountered this too.
    work around is you have to delete the rtf files from server Siebel\client\temp\XMLP directory and upload them again so that they are not cached any more.
    same on dedicated client you may have to delete relavant files form siebel\client\temp\xmlp directory and upload again.
    Thanks,
    Vamsi

  • Front and back cameras stopped working after IOS 8 update

    My front and back cameras both stopped working after i updated my phone to the IOS 8 software. Does anyone know why this would happen or any way of fixing it?

    Hi VictoriaViking,
    Not sure why your cameras stopped working with the update, or what the exact symptom is (black screen, no response...), but please check out the Camera troubleshooting section of this article.  (I know some don't apply to your issue.)
    iPhone: Hardware troubleshooting
    If the screen shows a closed lens or black image, force quit the Camera app.
    If you do not see the Camera app on the Home screen, try searching for it in Spotlight. If the camera does not show up in the search, check to make sure that Restrictions are not turned on by tappingSettings > General > Restrictions.
    Ensure the camera lens is clean and free from any obstructions. Use a microfiber polishing cloth to clean the lens.
    Cases can interfere with the camera and the flash. Try gently cleaning the lens with a clean dry cloth or removing the case if you see image or color-quality issues with photos.
    Try turning iPhone off and then back on.
    Tap to focus the camera on the subject. The image may pulse or briefly go in and out of focus as it adjusts.
    Try to remain steady while focusing:
    Still images: Remain steady while taking the picture. If you move too far in any direction, the camera automatically refocuses to the center.
    Note: If you take a picture with iPhone turned sideways, it is automatically saved in landscape orientation.
    Video: Adjust focus before you begin recording. You can also tap to readjust focus while recording. Exiting the Camera application while recording will stop recording and will save the video to the Camera Roll.
    Take care,
    Nubz

  • How can I put my apps back on my phone after 5.0 update

    how can get my apps that are in my library back in my i phone after doing the ios5 update

    Sync it as you would anything else.
    iPhone User Guide (For iOS 5.0 Software)

  • How do i get my labels back on my videos after installing the updated ios on my iphone

    I did the update to the newest operating system on my iphone 5 and ipad and now all my labels are gone on my videos. How do I get back my labels?
    Thanks

    Your contacts should be available on your computer - the iPhone is designed to sync contacts with a supported address book app on your computer. Sync your iPhone with the supported address book app on your computer where your contacts should be available.

  • How do I get my apps back on my iphone after the new update.

    I can't get my apps from Itunes back on my phone. How do I get them back?

    No I do not have multiple pages.  There are only two pages, and the second one only has two icons on it.  My apps are only in the store, and I want them on the home screen. 

  • NOT RESOLVED - SCOM 2012 R2 - App Advisor and App Diagnostics Issue

    Hi there!
    Here is our scenario: SCOM 2012 R2 is deployed in the environment
    SCOM - Management Server and SCOM Management Console.
    SQLOD - SQL 2012 Operational Database
    SQLDW - SQL 2012 Data Warehouse Database, SQL Reporting Services, SCOM Reporting, SCOM Web Console.
    Problem: SCOM Administrator is able to open SCOM Application Advisor,  SCOM Application Diagnostics and SCOM Web Console from any computer only after the SCOM Application Advisor,  SCOM Application Diagnostics and SCOM Web Console are opened
    from SQLDW (i.e. after opening them from the place where they were originally installed). The errors message prompts to retry after adding the user to the proper groups for SCOM Application Advisor and SCOM Application Diagnostics. SCOM Web Console prompts
    the user to login.
    Workaround: Open SCOM Application Advisor,  SCOM Application Diagnostics and SCOM Web Console on SQLDW (i.e. after opening them from the place where they were originally installed) and everything works fine.
    Question: What is causing the issue and how to fix it?
    Many thanks, in advance!

    I followed the article and it did not fix the issue.
    Here are additional details:
    There is only one user who does not experience the issue and it is a user under whose credentials the SCOM was installed AND that user has to login from the local network. If this users tries to connect over VPN he receives the same error.
    Here are errors when Test1 user logs in:
    Application Advisor (Enabled authentication: Windows Authentication, Forms Authentication, ASP.NET Impersonation):
    Authentication error
    User account: DOMAINNAME\Test1
    This user account does not have sufficient rights to use Application Advisor.
    Ask your administrator to add this user account to the Operations Manager Report Operators role, and then try again. 
    Application Diagnostics (Enabled authentication: Windows Authentication, Forms Authentication):
    Access denied 
    User account: DOMAINNAME\Test1
    This user account does not have sufficient rights to use Application Diagnostics.
    Ask your administrator to add this user account to the Operations Manager Application Monitoring Operators role, and then try again.
    Operations Manager Web Console (Enabled authentication: Windows Authentication):
    Prompted for credentials with error:
    The user credentials are invalid or user does not have permissions to access the application.
    Please provide the following information to the support engineer if you have to contact Microsoft Help and Support :
    Microsoft.EnterpriseManagement.Presentation.Security.ConnectionSessionAccessDeniedException: The user access is denied.
    This error reappears no matter whose credentials are entered. Even the SCOM Installer's credentials generate Error 3 when entered at the time when Test1 user is logged on.
    App Pools:
    OperationsManager - 4.0; Integrated; ApplicationPoolIdentity; 1 application
    OperationsManagerAppMonitoring - 4.0; Classic; NetworkService; 2 applications
    OperationsManagerMonitoring View - 2.0; Classic; NetworkService; 1 application
    Added *://*.domain.local zone to the trusted zone in the Internet Explorer.
    Please help!!!!

  • SCOM 2012 Global Architecture, One management group or multiple?

    Hi Folks,
    I work for a global firm, we have multiple data caters in different regions. America, UK, Australia, China etc etc. We are looking to roll out SCOM 2012 for monitoring all systems. Our environment
    1,000 Windows servers
    All servers on the same Active Directory domain
    10 Mbps links between data centers.
    My question is around whether to use multiple management groups or one?   I’ve seen recommendations for both. For example
    In the Infrastructure Planning and Design guide for SCOM 2012 it is stated:
    “A centralized management model with large remote locations works best with a management group in each region and a local management group (which provides a consolidated view of alerts and status) in the parent location. In this case, the centralized management
    group connects through the software development kit (SDK) and functions as an additional console on each of the connected management groups.”
    However moderators in this forum have stated
    “Each management group has its own set of SQL Servers and Management Servers \ Gateways. It also adds considerably to administrative overhead. I'd try to avoid
    multiple management groups where possible.”
    ” It will get expensive in terms of hardware and software with multiple management groups and you will duplicate a lot of work with regards to overrides”
    “If you go with multiple Management Groups then you would need to add on a fair number of SQL licenses plus additional hardware. “
    “Presumably if I have multiple management groups will that mean I will have to
    create rules for each Management Group- correct. Same
    with overrides. It could add a lot of administrative overhead. “
    It would seem easier to just deploy one management group with the management servers in one datacenter but I’m concerned with performance. I’ve heard
    stories about SCOM deployments architected in this way not performing well because of network latency. i.e admins from all regions besides the region local to the SCOM deployment not wanting to use SCOM because application performance is too slow.
    What would the SCOM experts recommend for this scenario?
    MH

    1) My question is around whether to use multiple management groups or one?
    Factors to consider in determine the number of Management group
     • Scaling
     • Agents separated from their management server by WAN-speed network links
     • Political, administrative or security requirements within the organization requiring separate management groups.
     • A view of AD DS topology required across multiple forests.
     • A dedicated management group required for auditing purposes.
     • Disaster recovery functionality required.
     • Consolidated views of connected management groups required in Operations Manager.
     • Operations Manager integration with the VMM console.
     With refer to your situation
     a) 1,000 Windows servers
     b) All servers on the same Active Directory domain
     c) 10 Mbps links between data centers.
    It is suggest that one Management group is required.
    2) It would seem easier to just deploy one management group with the management servers in one datacenter but I’m concerned with performance
    It is recommend that you should deploy Gateway server in region office which has more than 10 agents.
    • Gateway server reduce network bandwidth utilization. Agents located across WAN links consume network bandwidth, potentially affecting service delivery to and from the remote location. A gateway server can consolidate the traffic.
    Roger

Maybe you are looking for