Thursday, January 31, 2013

[OpsMgr 2012][Powershell] Get Alerts for all specified SCOM MP using powershell in Operations Manager 2012


Here is a short powershell script I've just updated to be usable in operations Manager 2012 since cmdlet have been renamed. This script will help you to retrieve alerts from a specified SCOM MP using powershell.
 

Note that previous version dedicated to Operations Manager 2007 R2 is here
  
Here is the new script :

  1. $mp = Get-SCOMManagementPack -name 'MPName'
  2. # Criteria       : All alerts, raw and processed descriptions.
  3. # Output to      : File (c:\temp\output\Alerts-all.csv)
  4. # Fields Selected: Lots.
  5. # Output Format  : CSV
  6. # Notes          : Need more work on this.
  7. $alerts_csv = "C:\MPName.csv";
  8. write-host "Exporting all alerts to csv: ",$alerts_csv;
  9. Get-SCOMAlert | select-object @{Name = '%'; expression ={$_.MonitoringObjectDisplayName}},Severity, Name, ResolutionState, RepeatCount,@{Name = 'Instances'; expression ={$_.RepeatCount+1}},@{Name = 'Created'; expression =
  10. {$_.TimeRaised.ToLocalTime()}},@{Name = 'Description (Processed)';Expression = {$_.Description  -replace "`n"," " -replace " "," "}},MonitoringObjectFullName, IsMonitorAlert,Id,MonitoringRuleId,MonitoringClassId,Description | sort Name | export-csv $alerts_csv -noTypeInformation;
 Replace MPName in red by the your MP Name. Il will export all alerts in a CSV file.

This posting is provided "AS IS" with no warranties.

[OpsMgr 2007 R2][OpsMgr 2012] Get Rule/Monitor full information from Rule/Monitor name - Powershell script



Today, I've had a request to retrieve all informations for a rule that was generating too much alerts. The rule was give, by it's name and the name was not really user friendly : _08C092E8_FD6F_48b2_BA1E_473C3B84A2F3_.RaiseAlert

Thanks to the Exchange Server 2010 Management pack developper team :)

So I've create a short powershell function to add to my powershell profile :

  1. Function RuleInfo  ([string]$RuleName)
  2. {
  3. get-rule | where {$_.Name -eq $RuleName} | select-object @{Name="MP";Expression={ foreach-object {$_.GetManagementPack().DisplayName }}}, @{Name="MP Version";Expression={ foreach-object {$_.GetManagementPack().Version }}}, Name, DisplayName, XmlTag, Enabled, Category, Target, ConfirmDelivery, Remotable, Priority, DiscardLevel, ConditionDetection, DataSourceCollection, WriteActionCollection, Id, Description, Comment, Status, LastModified, TimeAdded
  4. }
Then I've launch it in my powershell console using the line :

RuleInfo  _08C092E8_FD6F_48b2_BA1E_473C3B84A2F3_.RaiseAlert

Result is like :



 Well done ! :)


I've also created the same function for monitors :

  1. Function MonitorInfo  ([string]$MonitorName)
  2. {
  3. get-monitor | where {$_.Name -eq $MonitorName} | select-object @{Name="MP";Expression={ foreach-object {$_.GetManagementPack().DisplayName }}}, @{Name="MP Version";Expression={ foreach-object {$_.GetManagementPack().Version }}}, Name, DisplayName, XmlTag, Enabled, Category, Configuration, Id, ConfirmDelivery, OperationalStateCollection, Target, ParentMonitorID, Remotable, Priority, RunAs, AlertSettings, Accessibility, Description, LanguageCode, Comment, Status, LastModified, TimeAdded
  4. }
Have fun !

This posting is provided "AS IS" with no warranties.

Wednesday, January 30, 2013

[OpsMgr 2012] How to Display Management Group Information - VBS Script

Updated: January 31, 2012
Applies To: System Center 2012 - Operations Manager





In Operations Manager, you can create a script that can retrieve a management group or a collection of management groups from the agent.

Example

The following is an example script, which is written in VBScript, that displays information about management groups. For more information about parameters, return values, usage, and errors, see GetManagementGroups Method or GetManagementGroup Method.
 
  1. Option Explicit
  2. Dim objMSConfig
  3. Set objMSConfig = CreateObject("AgentConfigManager.MgmtSvcCfg")
  4. 'Get a management group and display the server name
  5. Dim objMG
  6. Set objMG = objMSConfig.GetManagementGroup ("MyManagementGroupToGet”)
  7. MsgBox  objMG.ManagementGroupServer
  8. 'Get all management groups and display the port
  9. Dim collMG
  10. Set collMG = objMSConfig.GetManagementGroups()
  11. 'Enumerate the collection
  12. Dim mgItem
  13. For Each mgItem In collMG
  14.    MsgBox CInt(objMG.ManagementServerPort)
  15. Next

This posting is provided "AS IS" with no warranties.

[OpsMgr 2012] How to Add and Remove a Management Group - VBS Script

Updated: January 31, 2012
Applies To: System Center 2012 - Operations Manager



In Operations Manager, you can create a script that can add or remove a management group from the agent.

Example

The following is an example script, which is written in VBScript, that adds or removes a management group. For more information about parameters, return values, usage, and errors, see AddManagementGroup Method or RemoveManagementGroup Method.
 
 
 
  1. Option Explicit
  2. Dim objMSConfig
  3. Set objMSConfig = CreateObject("AgentConfigManager.MgmtSvcCfg")
  4. ‘Add a management group
  5. Call objMSConfig.AddManagementGroup ("MyManagementGroupToAdd", "company.sm.net",5723)
  6. ‘Remove a management group
  7. Call objMSConfig.RemoveManagementGroup ("MyManagementGroupToRemove”)

This posting is provided "AS IS" with no warranties.

Tuesday, January 29, 2013

[OpsMgr 2007 R2][OpsMgr 2012] OpsMgr Event IDs Spreadsheet

OpsMgr 2007 Event IDs Spreadsheet


OpsMgr 2012 Event IDs Spreadsheet


This posting is provided "AS IS" with no warranties.

[OpsMgr 2007 R2] Columns may be missing in Monitoring views after installing the SQL 2012 Management Pack in Operations Manager 2007 R2

Article ID: 2809231 - Last Review: January 28, 2013 - Revision: 1.1
 
Columns may be missing in Monitoring views after installing the SQL 2012 Management Pack in Operations Manager 2007 R2
 

   Summary

After installing the SQL Management Pack version 6.3.173.1 in System Center Operations Manager 2007 R2, you will see default columns selected in the monitoring views for the new SQL 2012 components.

However, if you upgrade to this Management Pack from an earlier version without removing the old one first, the columns will remain unchanged from your previous view settings.

This is by design, although you can go to Personalize View under Actions and check the desired columns to display.

  More information

This behavior may also occur with other Management Packs.
 
Note This is a "FAST PUBLISH" article created directly from within the Microsoft support organization. The information contained herein is provided as-is in response to emerging issues. As a result of the speed in making it available, the materials may include typographical errors and may be revised at any time without notice. See Terms of Use for other considerations.

  Properties

Article ID: 2809231 - Last Review: January 28, 2013 - Revision: 1.1
Applies to
  • Microsoft System Center Operations Manager 2007 R2
Keywords: 
KB2809231

This posting is provided "AS IS" with no warranties.

[OpsMgr 2012] System Center Monitoring Pack for System Center 2012 - Orchestrator

The monitoring pack fmonitors the health and availability of Microsoft System Center 2012 - Orchestrator.


Quick details

Version:7.0Date published:4/1/2012
Language:English

Files in this download

The links in this section correspond to files available for this download. Download the files appropriate for you.
File nameSize
OpsMgr_MP_Orch2012.docx               82 KB        Download
SC2012OrchestratorMP.EXE322 KBDownload

Overview

The Microsoft System Center Monitoring Pack for System Center 2012 - Orchestrator monitors the health and availability of Microsoft System Center 2012 - Orchestrator.

Feature Summary
The Microsoft System Center Monitoring Pack for System Center 2012 - Orchestrator provides the following capabilities.
  • Orchestrator Management Server Health - This scenario checks Orchestrator Management Servers for service status and critical log file events.
    • (monitor) Orchestrator Management Service
    • (monitor) Orchestrator Runbook Server Monitor
    • (alerting rule) Orchestrator Management Server Database Connection Error
    • (alerting rule) Orchestrator Runbook Server Monitor Database Connection Error
  • Orchestrator Runbook Server Health - This scenario checks Orchestrator Runbook Servers for service status and critical log file events
    • (monitor) Orchestrator Runbook Service
    • (monitor) Orchestrator Remoting Service
    • (alerting rule) Orchestrator Runbook Policy Module Fault Alert
    • (alerting rule) Orchestrator Runbook Server Database Connection Error
    • (alerting rule) Orchestrator Runbook Update Error
    • (alerting rule) Orchestrator Runbook Server ActionServerStorage Call Refused Error
    • (non-alerting rule) Orchestrator Runbook Policy Module Working Set Peak Collection
    • (non-alerting rule) Orchestrator Runbook Policy Module Thread Count Collection
    • (non-alerting rule) Orchestrator Runbook Policy Module % Processor Time Collection
  • Orchestrator Web Components Health - This scenario implements health roll-up for monitored IIS 7 components that represent the Orchestrator Web Components
    • (dependency monitor) Web Components Availability Rollup

    Please refer to the Monitoring Pack Guide included in the downlaod for more details
Release History
  • 4/2/2012 - Original English Release, version 7.0

System requirements

Supported operating systems: Windows Server 2008, Windows Server 2008 R2, Windows Server 2008 R2 SP1, Windows Server 2008 Service Pack 2
    The Monitoring Pack for System Center 2012 - Orchestrator has the following prerequisites:
    • The Monitoring Pack for System Center 2012 - Orchestrator supports both System Center 2012 - Operations Manager as well as System Center Operations Manager 2007 R2 or later. A dedicated management group is not required.
    • The Windows Server 2008 Internet Information Services 7 Management Pack (version 6.0.6658 or later) must be imported to the management group prior to importing the Monitoring Pack for System Center 2012 - Orchestrator.
    • Windows PowerShell is required on Orchestrator Management Servers and Runbook Servers

Instructions

Once you have reviewed the Monitoring Pack Guide and meet the prerequisites for the Monitoring Pack for System Center 2012 - Orchestrator you can import this management pack module using the Microsoft Operations Manager administrative console and following these steps. The MP file “Microsoft.SystemCenter.Orchestrator.Library.mp” should be imported first.

  1. Open the Microsoft Operations Manager Operator console
  2. Click on the Administrator pane at the bottom left corner
  3. Expand the Management Packs node in the tree view
  4. Click on the Import Management Pack on the “Actions” pane on the right and then browse to the folder where you extracted the MP and then import it.
  5. Follow the instructions until you have finished importing the management pack module.

This posting is provided "AS IS" with no warranties.

Monday, January 28, 2013

[OpsMgr 2012] Trigger On Demand Discovery task

I've read, but not tested yet, an article that explains how to Manual trigger a Discovery via the SCOM Console (On Demand Discovery) Posted by Matthew on January 24, 2013.

I was not aware of this new task but this will help me a lot ! You can now, within the Operations Manager 2012 console, run this task on a health service to manually trigger a discovery attempt!

You 'll find the task when clicking on an agent on the agent health state view.


Then follow Matthew's documentation on his site.

This posting is provided "AS IS" with no warranties.

[OpsMgr 2012] System Center 2012 Monitoring Pack for RemoteAccess 2012

Microsoft System Center Monitoring Pack for Remote Access helps you monitor the health and availability of computers configured for Remote Access server role and running Windows Server 2012.


Quick details

Version:7.0.8560.0Date published:1/25/2013
Language:English

Files in this download

The links in this section correspond to files available for this download. Download the files appropriate for you.
File nameSize
Microsoft Windows Server 2012
Remote Access MP for OM 2012.msi               
568 KBDownload
OM2012_MgtPack_RAS Guide.doc432 KBDownload

Overview

​Microsoft System Center Monitoring Pack for Remote Access helps you monitor the health and availability of computers configured for Remote Access server role and running Windows Server 2012.

System Center Monitoring Pack for Remote Access combines monitoring for DirectAccess and RRAS into a single management pack. Monitoring capabilities for DirectAccess have been enhanced to cover more components and encompass larger set of health scenarios. This management pack monitors the following conditions:

  1. DirectAccess Monitoring
    • Issues with internal and external network adapter connection and settings such as forwarding
    • State of transition technologies such as teredo, 6to4 etc
    • State of underlying services
    • Heuristics around network security such as DOS attack, spoof attack etc
  2. VPN Monitoring
    • Connection failures
    • Erroneous configuration
    • Other erroneous conditions such as hardware device error, IP-Sec related failures etc
    • Support for monitoring performance counters and instrumentation
    All existing support for VPN Server monitoring has been ported to this combined pack.

Release History
  • 1/25/2013 - Original English release, version 7.0.8560.0

System requirements

Supported operating systems: Windows Server 2012
  • Other Software - System Center 2012 - Operations Manager

Instructions

Please refer to MP Guide

This posting is provided "AS IS" with no warranties.

Thursday, January 24, 2013

[Ebook]Exam Ref 70-410: Installing and Configuring Windows Server 2012

imageThe latest edition of the new Exam Ref series, Exam Ref 70-410: Installing and Configuring Windows Server 2012 (ISBN 9780735673168) by Craig Zacker, is available for purchase. Use this book as an aid in your studies to take the Microsoft Exam 70-410.
You can buy the book from here and here.
The contents and information about the book are on this previous blog post.

Chapter 3 Configure Hyper-V (excerpt)


The concept of virtualizing servers has, in the past several years, grown from a novel
experiment to a convenient lab and testing tool to a legitimate deployment strategy for
production servers. Windows Server 2012 includes the Hyper-V role, which enables administrators
to create virtual machines (VMs), each of which runs in its own isolated environment.
VMs are self-contained units that administrators can easily move from one physical
computer to another, greatly simplifying the process of deploying network applications and
services.

This chapter covers some of the fundamental tasks that administrators perform to create
and deploy Hyper-V servers and VMs.

Objectives in this chapter:
■ Objective 3.1: Create and configure virtual machine settings
■ Objective 3.2: Create and configure virtual machine storage
■ Objective 3.3: Create and configure virtual networks

Objective 3.1: Create and configure virtual machine settings


Server virtualization in Windows Server 2012 is based on a module called a hypervisor.
Sometimes called a virtual machine monitor (VMM), the hypervisor is responsible for
abstracting the computer’s physical hardware and creating multiple virtualized hardware
environments, called VMs. Each VM has its own (virtual) hardware configuration and can
run a separate copy of an operating system (OS). Therefore, with sufficient physical hardware
and the correct licensing, a single computer running Windows Server 2012 with the
Hyper-V role installed can support multiple VMs, which administrators can manage as if
they were standalone computers.

This posting is provided "AS IS" with no warranties.

Windows 2012 server Updates and Security Patches

I'll try to summarize here all updates and security patches that have been released for Windows Server 2012 :



 
Update 2/25/2013 Update for Windows Server 2012 (KB2794599) Install this update to resolve issues in Windows.
Update 2/22/2013 Update for Internet Explorer Flash Player for Windows Server 2012 (KB2819372) This update addresses the vulnerability discussed in Microsoft Security Advisory (KB2819372).To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Update 12/20/2012 Update for Windows Server 2012 (KB2792476) Install this update to resolve a set of known application compatibility issues with Windows.
Security Update 12/20/2012 Security Update for Windows Server 2012 (KB2753842) A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Update 11/26/2012 Update for Windows Server 2012 (KB2764462) Install this update to resolve a set of known application compatibility issues with Windows.
Update 11/26/2012 Update for Windows Server 2012 (KB2779562) Install this update to resolve issues caused by revised daylight saving time and time zone laws in several countries.
Update 11/26/2012 Update for Windows Server 2012 (KB2758246) Install this update to resolve issues in Windows.
Update 10/22/2012 Update for Windows Server 2012 (KB2770816) Install this update to resolve issues in Windows.
Update 1/21/2013 Update for Windows Server 2012 (KB2794119) Install this update to resolve issues in Windows.
Update 1/21/2013 Update for Windows Server 2012 (KB2803748) Install this update to resolve issues in Windows.
Update 1/18/2013 Update for Windows Server 2012 (KB2795719) Install this update to resolve issues in Windows.
Update 03/11/2013 Update for Windows Server 2012 (KB2790907) Install this update to resolve a set of known application compatibility issues with Windows.
Update 03/11/2013 Update for Windows Server 2012 (KB2812822) Install this update to resolve issues in Windows.
Update 03/11/2013 Update for Windows Server 2012 (KB2811660) These updates (*.msu) provide a collection of performance and reliability improvements that are designed to improve the Windows Server 2012 experience.
Security Update 03/11/2013 Security Update for Windows Server 2012 (KB2807986) A security issue has been identified that could allow an authenticated local attacker to compromise your system and gain control over it.
Update 02/11/2013 Update for Windows Server 2012 (KB2795944) These updates (*.msu) provide a collection of performance and reliability improvements that are designed to improve the Windows Server 2012 experience.
Update 02/11/2013 Update for Windows Server 2012 (KB2793210) Install this update to resolve a set of known application compatibility issues with Windows.
Update 02/11/2013 Update for Internet Explorer Flash Player for Windows Server 2012 (KB2805940) This update addresses the vulnerability discussed in Microsoft Security Advisory (KB2805940).To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Security Update 02/11/2013 Security Update for Microsoft .NET Framework 3.5 on Windows 8 and Windows Server 2012 A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 02/11/2013 Security Update for Microsoft .NET Framework 4.5 on Windows 8, Windows RT and Windows Server 2012 A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 02/11/2013 Security Update for Windows Server 2012 (KB2790978) A security issue has been identified that could allow an authenticated remote attacker to cause the affected system to stop responding.
Security Update 02/11/2013 Security Update for Windows Server 2012 (KB2778344) A security issue has been identified that could allow an authenticated local attacker to compromise your system and gain control over it.
Security Update 02/11/2013 Security Update for Windows Server 2012 (KB2790655) A security issue has been identified that could allow an unauthenticated remote attacker to cause the affected system to stop responding.
Security Update 02/11/2013 Security Update for Windows Server 2012 (KB2799494) A security issue has been identified that could allow an authenticated local attacker to compromise your system and gain control over it.
Update 04/08/2013 Update for Windows Server 2012 (KB2800033) Install this update to resolve issues in Windows.
Update 04/08/2013 Update for Windows Server 2012 (KB2822241) These updates (*.msu) provide a collection of performance and reliability improvements that are designed to improve the Windows Server 2012 experience.
Security Update 04/08/2013 Security Update for Windows Server 2012 (KB2772930) A security issue has been identified in a Microsoft software product that could affect your system.
Security Update 04/08/2013 Security Update for Windows Server 2012 (KB2808735) A security issue has been identified in a Microsoft software product that could affect your system.
Security Update 04/08/2013 Security Update for Windows Server 2012 (KB2813170) A security issue has been identified in a Microsoft software product that could affect your system.
Update 03/08/2013 Update for Internet Explorer Flash Player for Windows Server 2012 (KB2824670) This update addresses the vulnerability discussed in Microsoft Security Advisory (KB2824670).To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Security Update 03/08/2013 Cumulative Security Update for Internet Explorer 10 in Windows Server 2012 x64 Edition (KB2809289) This update addresses the vulnerability discussed in Microsoft Security Bulletin MS13-021. To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Security Update 02/08/2013 Security Update for Internet Explorer 10 for Windows Server 2012 x64 Edition (KB2797052) A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 02/08/2013 Cumulative Security Update for Internet Explorer 10 in Windows Server 2012 x64 Edition (KB2792100) This update addresses the vulnerability discussed in Microsoft Security Bulletin MS13-009. To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Update 01/07/2013 Update for .NET Framework 4.5 for Windows 8, Windows RT and Windows Server 2012 - KB2750149 Update for .NET Framework 4.5 for Windows 8, Windows RT and Windows Server 2012 - KB2750149
Update 01/07/2013 Update for Windows Server 2012 (KB2785094) These updates (*.msu) provide a collection of performance and reliability improvements that are designed to improve the Windows Server 2012 experience.
Security Update 01/07/2013 Security Update for Microsoft .NET Framework 4.5 on Windows 8, Windows RT and Windows Server 2012 A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 01/07/2013 Security Update for Microsoft .NET Framework 3.5 on Windows 8 and Windows Server 2012 A security issue has been identified that could allow an unauthenticated remote attacker to cause the affected application to stop responding.
Security Update 01/07/2013 Security Update for Microsoft .NET Framework 3.5 on Windows 8 and Windows Server 2012 A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 01/07/2013 Security Update for Microsoft .NET Framework 3.5 on Windows 8 and Windows Server 2012 A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 01/07/2013 Security Update for Windows Server 2012 (KB2757638) A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 01/07/2013 Security Update for Windows Server 2012 (KB2753596) A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 01/07/2013 Security Update for Windows Server 2012 (KB2778930) A security issue has been identified that could allow an authenticated local attacker to compromise your system and gain control over it.
Security Update 01/07/2013 Security Update for Windows Server 2012 (KB2785220) A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain access to information.
Update 04/05/2013 Update for Internet Explorer Flash Player for Windows Server 2012 (KB2833510) This update addresses the vulnerability discussed in Microsoft Security Advisory (KB2833510).To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Security Update 04/05/2013 Cumulative Security Update for Internet Explorer 10 in Windows Server 2012 x64 Edition (KB2817183) This update addresses the vulnerability discussed in Microsoft Security Bulletin MS13-028. To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Update 02/05/2013 Update for Internet Explorer Flash Player for Windows Server 2012 (KB2811522) This update addresses the vulnerability discussed in Microsoft Security Advisory (KB2811522).To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Update 01/04/2013 Update for Internet Explorer Flash Player for Windows Server 2012 (KB2796096) This update addresses the vulnerability discussed in Microsoft Security Advisory (KB2796096).To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Update 01/02/2013 Update for Windows 8, Windows Server 2012 (KB2798897) Install this update to resolve an issue which requires an update to the untrusted certificate store on Windows systems and to keep your systems up to date.
Update 11/12/2012 Update for Windows Server 2012 (KB2769034) Install this update to resolve issues in Windows.
Update 11/12/2012 Update for Windows Server 2012 (KB2769165) Install this update to resolve issues in Windows.
Update 11/12/2012 Update for Windows Server 2012 (KB2770917) These updates (*.msu) provide a collection of performance and reliability improvements that are designed to improve the Windows Server 2012 experience.
Security Update 11/12/2012 Security Update for Microsoft .NET Framework 4.5 on Windows 8 Release Preview, Windows RT Release Preview and Windows Server 2012 Release Candidate A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 11/12/2012 Security Update for Microsoft .NET Framework 3.5 on Windows 8 and Windows Server 2012 A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 11/12/2012 Security Update for Microsoft .NET Framework 4.5 on Windows 8 Release Preview, Windows RT Release Preview and Windows Server 2012 Release Candidate A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 11/12/2012 Security Update for Microsoft .NET Framework 4.5 on Windows 8, Windows RT and Windows Server 2012 A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 11/12/2012 Security Update for Microsoft .NET Framework 3.5 on Windows 8 Release Preview and Windows Server 2012 Release Candidate A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 11/12/2012 Security Update for Windows Server 2012 (KB2727528) A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 11/12/2012 Security Update for Windows Server 2012 (KB2761226) A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Update 10/11/2012 Update for Windows Server 2012 (KB2768703) Install this update to resolve issues in Windows.
Update 09/11/2012 Update for Windows Server 2012 (KB2751352) Install this update to resolve issues in Windows.
Update 12/10/2012 Update for Windows Server 2012 (KB2779768) These updates (*.msu) provide a collection of performance and reliability improvements that are designed to improve the Windows Server 2012 experience.
Update 12/10/2012 Update for Internet Explorer Flash Player for Windows Server 2012 Release Candidate (KB2785605) This update addresses the vulnerability discussed in Microsoft Security Advisory (KB2785605). To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Update 12/10/2012 Update for Windows Server 2012 (KB2780541) Install this update to resolve issues in Windows.
Update 12/10/2012 Update for Internet Explorer Flash Player for Windows Server 2012 (KB2785605) This update addresses the vulnerability discussed in Microsoft Security Advisory (KB2785605).To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Update 12/10/2012 Update for Windows Server 2012 (KB2783122) Install this update to resolve issues in Windows.
Security Update 12/10/2012 Security Update for Windows Server 2012 (KB2779030) A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Security Update 12/10/2012 Security Update for Windows Server 2012 (KB2765809) A security issue has been identified that could allow an attacker to break or bypass a security feature in the affected software.
Security Update 12/10/2012 Security Update for Windows Server 2012 (KB2770660) A security issue has been identified that could allow an unauthenticated remote attacker to compromise your system and gain control over it.
Update 10/10/2012 Update for Windows Server 2012 (KB2756872) These updates (*.msu) provide a collection of performance and reliability improvements that are designed to improve the Windows Server 2012 experience.
Security Update 12/07/2012 Cumulative Security Update for Internet Explorer 10 in Windows Server 2012 x64 Edition (KB2761465) This update addresses the vulnerability discussed in Microsoft Security Bulletin MS12-077. To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Security Update 12/07/2012 Cumulative Security Update for Internet Explorer 10 in Windows Server 2012 x64 Edition (KB2761465) This update addresses the vulnerability discussed in Microsoft Security Bulletin MS12-077. To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Update 10/07/2012 Update for Internet Explorer Flash Player for Windows Server 2012 Release Candidate (KB2758994) This update addresses the vulnerability discussed in Microsoft Security Advisory (KB2758994). To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Update 10/07/2012 Update for Internet Explorer Flash Player for Windows Server 2012 (KB2758994) This update addresses the vulnerability discussed in Microsoft Security Advisory (KB2758994). To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Update 11/05/2012 Update for Internet Explorer Flash Player for Windows Server 2012 Release Candidate (KB2770041) This update addresses the vulnerability discussed in Microsoft Security Advisory (KB2770041). To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Update 11/05/2012 Update for Internet Explorer Flash Player for Windows Server 2012 (KB2770041) This update addresses the vulnerability discussed in Microsoft Security Advisory (KB2770041).To find out if other security updates are available for you, see the Additional Information section at the bottom of this page.
Update 12/04/2012 Update for Windows Server 2012 (KB2771431) Install this update to resolve issues in Windows.

This posting is provided "AS IS" with no warranties.