Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

Description of Update Rollup 3 for System Center 2012 Service Pack 1


View products that this article applies to.

Introduction

This article describes the issues that are fixed in Update Rollup 3 for Microsoft System Center 2012 Service Pack 1 (SP1). Additionally, this article contains the installation instructions for Update Rollup 3 for System Center 2012 SP1.

↑ Back to the top


Issues that are fixed in this update rollup

App Controller Update (KB2853227)

Issue 1
When you try to add a Microsoft System Center 2012 Virtual Machine Manager (VMM) connection by using either the UI or a Windows PowerShell command, the connection is unsuccessful. Additionally, you receive the following error message:

Connection address must be a fully qualified domain name.

This problem may occur when the fully qualified domain name (FQDN) contains a hyphen (-) in the last part of the name.

Issue 2
When a Microsoft Azure subscription contains a high-memory (A6 or A7) Microsoft Azure virtual machine, Azure functionality is not available in Microsoft System Center 2012 App Controller. Additionally, you receive the following error message:

Retrieved data is incomplete.

When you click More details, you receive a "Service Unavailable" message. You may also receive a "Requested value 'A6' was not found" message.

Issue 3
When you try to use App Controller together with a proxy server, you receive the following error message:

(407) authentication required.

Note App Controller does not use configured proxy settings.

Issue 4
When you view the network properties of a deployed virtual machine and then click OK, the network connection is set to None. For example, the network connection field is empty and does not show the current network adapter.

Issue 5
When you move quickly between virtual machines in a list and then click the Properties task, the properties page for the previously selected virtual machine is displayed.

Issue 6
When you deploy an Azure virtual machine when the User must change password at next logon option is selected, you receive the following error message:

Bad Request

App Controller Setup Update (KB2823452)

Issue 1
App Controller cannot be installed if the Microsoft SQL Server database server name starts with a number.

See Installation of App Controller to a Remote SQL Server fails with Exception Error Code: 0x80131500 for more information.

Issue 2
Setup incorrectly reports that the SQL Server database has insufficient disk space.

Issue 3
Setup on a non-English operating system is unsuccessful when it tries to enable Internet Information Services (IIS).

Data Protection Manager Update (KB2877075)

Issue 1
When you try to set up library sharing when you use Data Protection Manager SP1 Update Rollup 2, you receive the following error message:

Failed to execute RBACRolePermissionOnStoredProcScript.sql on DPMServer\Database

Issue 2
When you run a Windows PowerShell script that retrieves the protection groups, the console crashes.

Issue 3
The VMM Helper Service stops responding, and no virtual machines are backed up. A restart enables the backups to continue.



Note If you have protection groups that have the Data Protection Manager to Azure backup configuration enabled, and if you deployed Data Protection Manager 2012 SP1 Update Rollup 3 (KB 2877075), you should follow these steps after you install Update Rollup 3: 
  1. Copy the following script to a file, and then save the file as "Regneratejobdefscloud.ps1" in the Data Protection Manager folder \DPM\DPM\Bin:

    #Get installed path of Data Protection Manager. try{                 $DPMInstalledPathProp = Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\Microsoft Data Protection Manager\Setup"                 $DPMInstalledPath = $DPMInstalledPathProp.InstallPath } catch {                 TraceMessage("Unable to read DPM registry key. Make sure DPM is installed on this machine ")                 exit 1 } $logDir = $DPMInstalledPath+"\Temp" $logfilename = $logDir+"\ReGenerateJobDefs-Cloud.log" # Logs Message to log file  function TraceMessage($message) {                 $timestamp = Get-Date                 $timestamp.ToString() +":"+ $message >> $logfilename                 Write-Host $message } # This function prints name of passed datasources.  function PrintDSList($DSList) {                 if($DSList -ne $null)                 {                     foreach($item in $DSList)                     {                          TraceMessage( $item.ProductionServerName+"/"+ $item.DataSourceName)                     }                 } } try {                 $dpmservername = &"hostname"                 $dpmsrv = connect-dpmserver $dpmservername                 if (!$dpmsrv)                 {                                 TraceMessage("Unable to connect to $dpmservername")                                 exit 1                 } } catch{                 TraceMessage("Unable to connect to $dpmservername")                 exit 1 } #PG translation TraceMessage("############################################################################") TraceMessage("Going to generate job definitions") $err = $($pgList = @(Get-DPMProtectionGroup)) 2>&1 if($err)                 {                                 TraceMessage(" Failed to get PGList of $dpmservername")                                 TraceMessage($err)                                 exit 1                 } $failedPgList = New-Object System.Collections.ArrayList if($pgList -ne $null) {                 foreach($pg in $pgList)                 {                                 TraceMessage( "------------------------------------------")                                 TraceMessage("PG $($pg.FriendlyName) PGId : $($pg.ProtectionGroupId)-  Regenerating jobs and schedules");                                 try                                 {                                                 if($pg.IsCloudLongTerm -eq $true)                                                 {                                                                 $pgToModify = Get-DPMProtectionGroup | Where{$_.ProtectionGroupId -eq $pg.ProtectionGroupId}                                                     $mpg = Get-DPMModifiableProtectionGroup $pgToModify                                                                 $err = $($dsList = Get-DPMDatasource $pg) 2>&1                                                                 if($err)                                                                 {                                                                                 TraceMessage("PG $($pg.FriendlyName) PGId : $($pg.ProtectionGroupId) -  Failed to get datasource list ")                                                                                 TraceMessage($err)                                                                                 throw $err                                                                 }                                                                 TraceMessage("PG $($pg.FriendlyName) PGId : $($pg.ProtectionGroupId) -  Doing force translation for all datasources");                                                                 PrintDSList($dsList);                                                     $err = $(Set-DPMProtectionGroup -ProtectionGroup $mpg -TranslateDSList $dsList) 2>&1                                                                 if($err)                                                                 {                                                                                 TraceMessage("PG $($pg.FriendlyName) PGId : $($pg.ProtectionGroupId) -  Failed to translate PG ")                                                                                 TraceMessage($err)                                                                                 throw $err                                                                 }                                                                 TraceMessage( "PG $($pg.FriendlyName) PGId : $($pg.ProtectionGroupId) -  Successfully regenerated jobs and schedules")                                                 }                                                 else                                                 {                                                                TraceMessage("PG $($pg.FriendlyName) -  is not Cloud Protected.")                                                 }                                 }                                 Catch                                 {                                                 TraceMessage( "PG $($pg.FriendlyName) PGId : $($pg.ProtectionGroupId) - Failed to regenerate jobs")                                                 if($_.Exception -ne $null)                                                 {                                                                 TraceMessage( "ExceptionMessage is " + $_.Exception.Message)                                                 }                                                 $failedPgList.Add($pg.FriendlyName)                                 }                                 Finally                                 {                                                 TraceMessage( "------------------------------------------")                                 }                 }#end of foreach }#end of if($pgList -ne $null) if($failedPgList.Count -eq 0) {                 TraceMessage( "Script execution Completed Successfully")                 TraceMessage( "############################################################")                 exit 0 } else {                 TraceMessage( "Script execution Completed , List of Failed PG: "+ $failedPgList)                 TraceMessage( "############################################################")                 exit 1 } 
  2. Open the Data Protection Manager management shell, and then run the script in the Regneratejobdefscloud.ps1 file that you created in step 1. 
  3. Open the Data Protection Manager UI.
  4. For each protection group that has online protection, follow these steps:
    1. Click PG, and then click Modify Protection Group.
    2. Click Select data protection method, click to clear the I want online protection check box, and then click Next to proceed with the wizard.

    3. Click Update Group to save the changes.
    4. Again, click PG, and then click Modify Protection Group.
    5. Click Select data protection method, click to select the I want online protection check box, and then click Next to proceed with the wizard.

  5. Click Update Group to save the protection group. All backups will continue to run as usual.
Other issues
The following issues occur when you use the Data Protection Manager to Azure backup configuration:
  • When you add or remove online protection for a data source in a protection group that has online protection enabled, scheduled online backup jobs of other data sources in the protection group are deleted.
  • When you add online protection back to a data source in a protection group that has online protection enabled and when the data source is in a paused-online-protected state, the data source  is no longer being protected online. However, the replica for the data source is still retained in Azure. When the data source is in this "inactive Online replica" state, scheduled online backup jobs for the data source are not created.
  • After you re-enable online protection for a protection group that is in the "inactive Online replica" state for some of its data sources, if online protection is not enabled for a data source that is in the "inactive Online replica" state, the Data Protection Manager engine crashes. 

Operations Manager Update (KB2852565)

Issue 1
The Audit Collection Services (ACS) dtPrincipal tables sometimes are missing a user's domain name.

Issue 2
If you decide to see more than two days' worth of data in a Service Level Dashboard view, the data is displayed from the Daily Aggregated data and does not contain the last two days' worth of data.

Issue 3
The Health Service stops collecting performance data on Windows Server 2008 R2.

Issue 4
The web console crashes when the Active Alerts view and the Windows Computer State view are accessed at the same time when Internet Explorer 9 is used.

Issue 5
A memory leak may occur in the console when the performance widgets dashboard is left open.

Issue 6
When the Operator role is used, many 26319 events are generated. This causes performance problems.

Issue 7
Health Service availability reports are incorrect because of duplicate entries in the HealthServiceOutage table.

Issue 8
When the Orchestrator Integration pack is under a high-load scenario, a software development kit (SDK) process deadlock may occur.

Issue 9
This update includes fixes to the following Advisor Connector issues:
  • Group opt-in
  • Microsoft System Center 2012 Operations Manager gateway and Microsoft monitoring
  • Windows PowerShell cmdlets
  • Health state
  • Microsoft Knowledge Base article links in Operations Manager console alerts


Operations Manager - UNIX and Linux Monitoring (Management Pack Update)

Issue 1
The Solaris agent cannot be installed on Solaris 11.1 because it does not find the prerequisite OpenSSL package.

Issue 2
Knowledge editing pages are not displayed when monitors that were created by the Shell Command templates are edited.

Issue 3
Log files that are encoded in schemes other than ASCII cannot be monitored.

Virtual Machine Manager Administration Console Update (KB2858509), Virtual Machine Manager Server Update (KB2858510), and Virtual Machine Manager Guest Agent Update (KB2858511)

Issue 1
You receive an invalid prefix length error and cannot set migration subnets if the prefix length is not between 4 and 30 characters for IPv4 or between 64 and 126 characters for IPv6.

Issue 2
Migration subnets for cluster and cluster nodes must be read-only.

Issue 3
Virtual Machine Manager (VMM) cannot take any action on Recovery Virtual Machine (VM) post-failover without reverse replication.

Issue 4
In some cases, a virtual machine on an SMB file share that is registered by using a NetBIOS name on a cluster will be in an unsupported cluster configuration state in VMM. This problem may occur even though the virtual machine is healthy and running. Additionally, the virtual machine status cannot be updated after that.

Issue 5
The virtual machine refresher does not correctly update the state of the virtual machine even after an unsupported cluster configuration issue is corrected.

Issue 6
In a bare-metal setup, the VMM service crashes when an out-of-range IP address is specified.

Issue 7
Every time DRA Initialize occurs in the VMM service, a database corruption exception is received.

Issue 8
You receive an "Unable to connect to the VMM DB" exception when you try to publish host and virtual machine network data to the SQL Server Reporting Service.

Issue 9
When you try import a Linux template from VMware in Virtual Machine Manager 2012 Service Pack 1, you receive error 22723.

Issue 10
The Get-SCVirtualMachine cmdlet does not return virtual machines by their IDs when the virtual machines contain clustered pass-through disks.

Issue 11
A user cannot set the domain name in Service Setting.

Issue 12
The VMM service crashes intermittently.

Issue 13
The VMM ID registry subkey value is set to a null value after Update Rollup 1 is applied.

Issue 14
This update fixes some UI text issues in the Virtual Machine Manager 2012 Service Pack 1 console for Disaster Recovery and for the HRM Azure Service.

Issue 15
This update fixes some reports that are not working with SQL Server 2012.

Issue 16
If a virtual machine has a static IP address, Test Failover does not set the IP address on the test virtual machine.

Issue 17
Virtual machine snapshot operations might fail if multiple snapshots are restored at the same time and have the same name.

Issue 18
The VMM server might crash when you create a virtual machine template from a virtual machine that has a previous failed task checkpoint data.

Issue 19
Logical unit numbers (LUNs) for EMC storage cannot be assigned to a cluster in VMM.

Issue 20
The VMM service crashes if a VMWare cluster or host is added by using a local root or administrator account.

Issue 21
Some log information is recorded multiple times in the guest log file.

Issue 22
This update fixes some performance issues in a bare-metal installation.

Issue 23
The placement of the Network Load Balancing (NLB) clusters in a network environment does not work for NLB load balancer and nested host groups.

Issue 24
The VMM service may stop while VMWare vSphere 4.1 is updated.

Issue 25
If Test Failover is initiated while VMM is restarting, the recovery side of VMM crashes.

↑ Back to the top



How to obtain and install Update Rollup 3 for System Center 2012

Download information

The update packages for App Controller, Data Protection Manager, Operations Manager, and Virtual Machine Manager are available from Microsoft Update.

↑ Back to the top


Installation instructions

App Controller Setup installation instructions
To obtain and install the update packages from Microsoft Update, follow these steps on a server on which you are trying to install App Controller:
  1. Run App Controller Setup.
  2. On the initial installation screen, click to select the Use Microsoft Update to check for updates to App Controller Setup check box.

    Note If you install from the command line, use the /SelfUpdate true parameter.

  3. Click Install.

If you are installing App Controller on a server that does not have Internet access, you can manually install the setup update. To do this, follow these steps. (App Controller Setup cannot check Windows Server Update Services (WSUS) for updates.)

Note These steps apply only if you cannot install App Controller.
  1. Run the SC2012_SP1_SCAC.exe self-extractor to copy the App Controller 2012 Service Pack 1 Setup files into a file path.
  2. Download KB2823452_AppControllerSetup_amd64.exe from the Windows Update catalog.
  3. From an elevated command prompt, run the following command:

    KB2823452_AppControllerSetup_amd64.exe /C /T:"path of the extracted files in Step 1\setup\amd64”

    Click Yes to all when you are prompted to overwrite files.

  4. To determine whether the installation was successful, verify the versions of the following files:
    • Microsoft.SystemCenter.SetupFramework.dll
    • SetupConsole.exe


    These files should have a version number 1.0.1603.0 and are located in the following folder after installation starts:

    %ProgramData%\Microsoft\System Center\App Controller Setup

  5. Run Setup.exe from the path of the files that you extracted in step, 1 and then install as usual.


Data Protection Manager installation instructions
To install the update for Data Protection Manager, follow these steps:
  1. Before you install this update, make a backup of the Data Protection Manager database.
  2. Install the rollup package on the server that is running System Center 2012 Data Protection Manager SP1. To do this, run Microsoft Update on the server.

    Note Before you install this update through Microsoft Update, the Data Protection Manager Console should be closed. You may have to restart the Data Protection Manager server after you install this rollup package.

  3. In the Data Protection Manager Administrator Console, update the protection agents. To do this, use one of the following methods.

    Method 1: Update the protection agents from the Data Protection Manager Administrator Console
    1. Open the Data Protection Manager Administrator Console.
    2. Click the Management tab, and then click the Agents tab.
    3. In the Protected Computer list, select a computer, and then click Update on the Action pane.
    4. Click Yes, and then click Update Agents.

      Note A restart may be required for agent upgrades.


    Method 2: Update the protection agents on the protected computers
    1. Obtain the update protection agent package from the following directory on the System Center 2012 Data Protection Manager SP1 server:
      Data Protection Manager installation location\DPM\DPM\Agents\RA\4.1.3415.0

      The packages are as follows:
      • For x86-based updates: i386\1033\DPMAgentInstaller_KB2877075.exe
      • For x64-based updates: amd64\1033\DPMAgentInstaller_KB2877075_AMD64.exe
    2. Run the appropriate DPMAgentInstaller.exe package on each protected computer, based on the architecture of the agent.
    3. Open the Data Protection Manager Administrator Console on the System Center 2012 Data Protection Manager SP1 server.
    4. Click the Management tab, and then click the Agents tab.
    5. Select the protected computers, update the information, and then verify that the agent version number is 4.1.3415.0.

Operations Manager installation instructions
Known issues for this update
  • After you install the update rollup package on all roles on the server that is running System Center Operations Manager 2012 Service Pack 1 (except on the Agent and Gateway roles), the updates do not appear in the Add or Remove Programs item in Control Panel.
  • After you apply Update Rollup 3, the Operations Manager console has to be reopened in order to apply the Alert Attachment Management Pack fix.
  • After you install the update rollup package, the version number of the console is not changed.
  • If the Audit Collection Service Update package is installed, uninstalled, and then reinstalled, the database upgrade script that is included in this update will not run. This issue occurs because the database version is changed during the first installation of the Audit Collection Service Update package. This could cause the server to crash if a partition is reused while the partition is still in place.

    To close the partition manually by using Microsoft SQL Server Management Studio, locate the Audit Collection Service Update database, and run the following script in a Query Editor window:

    begin tran

    -- mark all active partitions for closing
    if (select count(*) from dtPartition where Status = 0) > 0
    update dtPartition set Status = 1 where Status = 0
    commit tran

    To create a new partition, follow these steps:
    1. Stop the Audit Collection Server (AdtServer) service.
    2. Run the script.
    3. Restart the AdtServer service.

  • After you install the update rollup package on a web console, you receive the following error message in Internet Explorer:

    Server Error in '/OperationsManager' Application.

    To resolve this issue, close and then restart Internet Explorer.

Installation notes
  • This update rollup package is available from Microsoft Update in the following languages:
    • Chinese Simplified (CHS)
    • Japanese (JPN)
    • French (FRA)
    • German (DEU)
    • Russian (RUS)
    • Italian (ITA)
    • Spanish (ESN)
    • Portuguese (Brazil) (PTB)
    • Chinese Traditional (CHT)
    • Korean (KOR)
    • Czech (CSY)
    • Dutch (NLD)
    • Polish (POL)
    • Portuguese (Portugal) (PTG)
    • Swedish (SWE)
    • Turkish (TUR)
    • Hungarian (HUN)
    • English (ENU)
    • Chinese Hong Kong (HK)

  • Some components are multilanguage, and the updates for these components are not localized.
  • You must run the update rollup as an administrator.
  • If you do not want to restart the computer after you apply the console update, close the console before you apply the update for the console role.
  • To start a new instance of Microsoft Silverlight, clear the browser cache in Silverlight, and then restart Silverlight.
  • Do not install the update rollup package immediately after you install the System Center 2012 SP1 server. Otherwise, the Health Service state may not be initialized.
  • If User Account Control is enabled, run the .msp update files from an elevated command prompt.
  • You must have System Administrator rights on the database instances for the Operational Database and Data warehouse to apply updates to these databases.
  • Microsoft.SystemCenter.IntelliTraceProfiling.mpb is included in Update Rollup 1 but does not contain new fixes. Do not import this file.
  • To enable the web console fixes, add the following line to the %windir%\Microsoft.NET\Framework64\v2.0.50727\CONFIG\web.config file:

    <machineKey validationKey="AutoGenerate,IsolateApps" decryptionKey="AutoGenerate,IsolateApps" validation="3DES" decryption="3DES"/>

    Note Add the line under the <system.web> section as described in You may receive an error message when you access ASP.NET Web pages that have ViewState enabled after you upgrade from ASP.NET 1.1 to ASP.NET 2.0 .

  • The Advisor connector .mpb files that are updated in Update Rollup 3 (UR3) require that Operations Manager 2012 SP1 UR3 updates be installed. The installation of UR3 .mpb files on an installation of Operations Manager 2012 SP1 Update Rollup 2 (UR2) is not supported.

Supported installation order

We recommend that you install the update rollup package in the following order:
  1. Install the update rollup package on the following server infrastructure:
    • Management server or servers
    • Gateway servers
    • Reporting servers
    • Web console server role computers
    • Operations console role computers

  2. Manually import the management packs.
  3. Apply the agent update to manually installed agents. Or, push the installation from the Pending view in the Operations console.

Notes
  • Install the update rollup package on agents either before or after you install the update rollup package on the server infrastructure.
  • If the Connected MG/Tiering feature is enabled, first update the top tier of the Connected MG/Tiering feature.
  • Update Rollup 3 files have version number 9538.1068, except for the files in the Audit Collection Service Update. These files have version number 9538.1069.

Installation information

To download the update rollup package and extract the files that are contained in the update rollup package, follow these steps:
  1. Download the update packages that Microsoft Update provides for each computer. Microsoft Update provides the appropriate updates according to the components that are installed on each computer.
  2. Apply the appropriate .msp files on each computer.
  3. Run the following SQL script on the Datawarehouse server against the OperationsManagerDW database:
    • UR_Datawarehouse.sql


    Note The path of the script is as follows:

    %SystemDrive%\Program Files\System Center 2012 SP1\Operations Manager\Server\SQL Script for Update Rollups

  4. Import the following management packs:
    • Microsoft.SystemCenter.AlertAttachment.mpb
    • Microsoft.SystemCenter.IntelliTraceProfiling.mpb

      This pack has the following dependencies:
      • Microsoft.SystemCenter.IntelliTraceCollectorInstallation.mpb should be installed from System Center Operations Manager 2012 Service Pack 1.
      • Microsoft.Windows.InternetInformationServices.Common.mpb should be installed from the online catalog.
    • Microsoft.SystemCenter.Visualization.Library.mpb
    • Microsoft.SystemCenter.Image.Library.mpb

See How to Import an Operations Manager Management Pack for information about how to import a management pack from a disk.

Note Management packs are included in the Server component updates in the following path:

%SystemDrive%\Program Files\System Center 2012 SP1\Operations Manager\Server\Management Packs for Update Rollups


Removalinformation

To uninstall an update, run the following command:

msiexec /uninstall PatchCodeGuid /package RTMProductCodeGuid


Note In this command, the placeholder RTMProductCodeGuid represents one of the following GUIDs.

ComponentRTMProductCodeGuid
Server{8070C91C-7D7C-4DAD-88B1-0966EEA9A8FE}
Console (AMD64){5142AB0B-73E3-4AD3-9D0F-65B3D9026769}
Console (x86){358C8AF0-25BB-425A-A4E6-7ADE54ED4736}
Reporting{A2D27C0E-181D-4955-B95D-D3FB651E6AF7}
WebConsole (AMD64){5ED945BA-2BDD-4567-804E-8D3D2DB5CC9B}
ACS{3E7464F7-A468-44E1-9A95-58349E022EAE}
Agent (AMD64){8B21425D-02F3-4B80-88CE-8F79B320D330}
Agent (x86){387306D9-78CE-4E0E-B952-28A50CC8B3EE}
Agent (IA-64){F3DDB021-89BC-464F-9107-69E2547D08FD}
Gateway{80C2A57A-4193-4800-AA27-CD79553FE9DF}
SCX-ACS (AMD64){B30F4F71-2AF3-4542-855B-E1C7A31AC9A5}
SCX-ACS (x86){B30F4F71-2AF3-4542-855B-E1C7A31AC9A5}

Additionally, the placeholder PatchCodeGuid represents one of the following GUIDs.

PatchCodeComponentCPULocal
{D154E2E1-9A65-4229-9D80-E0E3024BC810}AgentAMD64EN
{6C7440B8-7121-4A86-B110-13EF5496483A}ServerAMD64EN
{7D7FCCF6-498A-4C52-84E4-4A6CF7BF142D}GatewayAMD64EN
{EDE39D87-2031-4BB9-85CF-DA4D5CC60E62}WebConsoleAMD64EN
{51573384-18AF-4F02-A234-159F87189BE2}ConsoleAMD64EN
ACSAMD64EN
{84120BBF-60A6-4D36-8715-A30439C44303}AgentIA-64EN
{D5F05640-DBE7-4C4C-B26B-45F718851972}Agentx86EN
{2E46DFE1-C2AD-457E-9D29-E6995B816288}Consolex86EN
{407BA30F-44B3-48FB-B387-13C3E7B43EF3}ConsoleAMD64CN
{53F0F0ED-1BD2-4C8F-A97C-2C5883058AAE}WebConsoleAMD64CN
{016C9C4D-F0AD-4294-95B7-B362328D792B}ACS AMD64CN
{08DFFED6-FBDC-45FA-8C2E-E69C366EDD1B}WebConsoleAMD64CS
{142A41C0-31F1-48F6-9DF5-F820FCBD9650}ConsoleAMD64CS
{107745AB-A35C-4E04-831E-DC740E935EB8}ACS AMD64CS
{88A877D1-5636-4ABD-80ED-CFB86DCF7206}ConsoleAMD64DE
{9EE433ED-AFD1-4A74-9D49-7D71CAEE4414}WebConsoleAMD64DE
{295A0AEA-3F7A-4DEC-8F4F-9D18F138C2FC}ACS AMD64DE
{6156ACB9-3C6D-4B2C-A79A-D65B372B12F0}ConsoleAMD64ES
{02DBC1C1-1F76-4A85-A6D2-05B04BD23312}WebConsoleAMD64ES
{B999DF65-47FE-49C5-9039-A6B1198932C9}ACS AMD64ES
{47C23519-937F-43F8-BE2F-9A38D2E73B95}ConsoleAMD64FR
{ECC3634F-3C79-465B-BFBF-ACB529289103}WebConsoleAMD64FR
{1DBE7810-D1BD-4D7F-B742-1D46FE5D44C9}ACSAMD64FR
{279895BC-1249-4067-A09C-01C37D6A330E}ConsoleAMD64HU
{3472F246-4781-4CA2-A6F9-D3ACC7F450D5}WebConsoleAMD64HU
{EF7271B1-B341-4706-B382-15312EF3D343}ACS AMD64HU
{BCA9454A-A2C0-44A3-A457-EFD603F085EA}ConsoleAMD64IT
{F9AF9CE4-C3DE-4A71-8EF2-25CB0D9B22BE}WebConsoleAMD64IT
{6EA78074-7F0B-454B-BA34-3F865ED0E289}ACS AMD64IT
{66350179-CF0D-4788-AB86-847CEA2EEAA7}ConsoleAMD64JA
{14DDC92B-169A-4DB9-8BD2-1407247AEEF8}WebConsoleAMD64JA
{5A536E8F-3485-4047-ACDF-D0F2F50E8367}ACS AMD64JA
{944B0604-3FDF-4274-AEC5-4E440C7C471D}ConsoleAMD64KO
{39FFBB7B-DF63-4318-AC78-B2E48FD534CC}WebConsoleAMD64KO
{6DAA05FE-8459-48E0-902C-29A88BC40516}ACS AMD64KO
{F3DEC4D8-BE92-4E63-8B2B-E517B488D8D1}ConsoleAMD64NL
{7D4C18E4-6933-4674-ABCF-73FDF6E86D13}WebConsoleAMD64NL
{448B3C24-F86F-493E-845F-76143D86EBC6}ACS AMD64NL
{14D8B89B-4BB8-4957-B63F-3093A389D7E0}ConsoleAMD64PL
{D307FAC7-411B-44DE-9C0E-D7ED5C7B84B5}WebConsoleAMD64PL
{BB68B59B-0661-4F4B-8C0E-37ECC92FC19B}ACS AMD64PL
{88E06D9A-4AA6-4A32-A799-24AA4D5AA41E}ConsoleAMD64PT-BR
{3503B91F-A46B-4823-BCBC-29B18DFB66EF}WebConsoleAMD64PT-BR
{0053BF4F-F8FC-487A-B4C2-5C5AA3E44333}ACS AMD64PT-BR
{6E07D642-276B-435E-A553-9C67FCC341AE}ConsoleAMD64PT-PT
{AF4508F0-3F7C-4409-81FE-EEF0F8FC38E0}WebConsoleAMD64PT-PT
{AEC6D4A0-1DFE-46EC-949F-96B288E32C7F}ACS AMD64PT-PT
{EA7EDD78-8250-46E2-A9F4-5A786C3676A0}ACS AMD64RU
{4B812C92-753A-42A4-8545-798ED84102CC}ConsoleAMD64RU
{3B44791F-8E1D-4716-A2B7-FD6A1E7BA9AD}WebConsoleAMD64RU
{DD3FFEF9-5BD8-490A-B995-27425F5DDAF6}ACS AMD64SV
{6688CE64-867E-4B71-8FDC-4CE4EC2F50B7}ConsoleAMD64SV
{96DE2DFF-257F-4719-8169-A77B09EE4201}WebConsoleAMD64SV
{7DE2DB39-2650-4E2F-B6A3-4DFD3A15E6F7}ConsoleAMD64TR
{6C602A22-5768-4238-B8EB-D7D72E966891}WebConsoleAMD64TR
{9178BBF5-181A-497E-96A0-7D1A9A61378A}ACS AMD64TR
{F0CEC17E-A121-4811-8E46-C1A9012989AE}ConsoleAMD64TW
{6EA1B46A-069B-49EA-861C-64A0DFC0EAAA}WebConsoleAMD64TW
{6CD3D625-376F-4166-9F25-4431EFBCE492}ACSAMD64TW
{619C10BA-50D3-4A37-A650-E1FD6A3EF2BD}ConsoleAMD64ZH-ZK
{E7076F38-2E82-4CF6-ADFD-A83C0B79F472}WebConsoleAMD64ZH-ZK
{707D5170-2B9D-489B-8D5C-6ECAD1F5D10F}ACSAMD64ZH-ZK
{EF070153-1AA9-4EA3-A0AE-3ACE90A3DEC8}Consolex86CN
{E4E3CC15-C757-4352-88EC-936A1D83A4D1}Consolex86CS
{6AFDC390-6B4C-444B-85E5-15BDAD3D4A87}Consolex86DE
{BD82B95F-3207-40D2-8354-8235D2C6D265}Consolex86ES
{49A20079-6FD2-4476-890A-D428480B99DA}Consolex86FR
{601C5873-A4BC-46E3-8E78-7F00F220C631}Consolex86HU
{3D5D5947-7358-408E-8002-3621DD0C4304}Consolex86IT
{F3ABED6F-85EE-4085-8B45-C9DB0BA1866F}Consolex86JA
{E5A8B3F4-AB8F-410D-A2D2-25DD03B4ACD6}Consolex86KO
{EBDA3EE9-7247-4ADD-BBF9-4F133BD4E325}Consolex86NL
{D2C44532-A546-41AA-A4A8-D632DB4875F6}Consolex86PL
{29FDA7C0-E7C8-45A6-82C5-246E3961E448}Consolex86PT-BR
{079FCA89-AB6B-4923-94F3-427A036BC897}Consolex86PT-PT
{C605041A-13B3-4859-BDEE-D8778029C6A5}Consolex86RU
{BF166F81-F9C3-4DBA-B792-7872BF4CB40E}Consolex86SV
{DA5C926C-E1FA-4D16-B7EE-9144238453C9}Consolex86TR
{9954A0F1-9267-408E-BF23-A7951B0CA4AC}Consolex86TW
{859B0691-3127-49C3-9777-7B3682D0D697}Consolex86ZH-ZK



Operations Manager UNIX and Linux monitoring packs and agents installation instructions
To install the updated monitoring packs and agents for UNIX and Linux operating systems, follow these steps:
  1. Download the updated management packs from the following Microsoft website:


  2. Install the management pack update package to extract the management pack files.
  3. Import the following:
    • The updated Microsoft.Unix.Library management pack (from the \2012 SP1\ folder)
    • The updated Microsoft.ShellCommand.Library management pack bundle
    • The updated Process.Library management pack bundle
    • Updated platform library management packs that are relevant to the Linux or UNIX platforms that you are monitoring in your environment

    Note The Microsoft.Linux.Universal management packs are also located in the \2012 SP1\ folder.

  4. Import the updated management pack for each version of Linux or UNIX that you are monitoring in your environment.
  5. Upgrade each agent to the latest version by using either the Update-SCXAgent Windows PowerShell cmdlet or the UNIX/Linux Agent Upgrade Wizard in the Administration pane of the Operations Console.

Virtual Machine Manager installation instructions
Known issues for this update

You cannot apply this cumulative update to a computer that is running Update Rollup 1 for System Center 2012 Service Pack 1. In order to install Update Rollup 3 for System Center 2012 Service Pack 1 Virtual Machine Manager, you have to uninstall Update Rollup 1 for System Center 2012 Service Pack 1 Virtual Machine Manager from your system. For more information, see the System Center blog at the following Microsoft website:


Note There are no known issues when you apply Update Rollup 3 to a system that is running Update Rollup 2 for System Center 2012 Service Pack 1.

Installation information

To manually install the update packages, run the following command from an elevated command prompt:

msiexec.exe /update packagename

For example, to install the Virtual Machine Manager update (KB2858510), run the following command:

msiexec.exe /update KB2858510-AMD64-Server.msp

↑ Back to the top


Files that are updated in Update Rollup 3 packages

App Controller (KB2853227)
Files that are changedFile sizeVersion
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\api\bin\Microsoft.SystemCenter.CloudManager.Providers.Vmm.exe499,4481.0.1604.0
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\api\bin\ Microsoft.SystemCenter.CloudManager.Providers.Azure.exe751,8641.0.1604.0
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\api\bin\ Microsoft.SystemCenter.CloudManager.Providers.Spfvmm.exe685,8161.0.1604.0
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\api\bin\ Microsoft.SystemCenter.CloudManager.Providers.System.exe185,5921.0.1604.0
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\api\bin\ Microsoft.SystemCenter.CloudManager.Providers.System.Common.dll170,7441.0.1604.0
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\Default.htm3,098Not applicable
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\Configuration\ModulesCatalog.xaml14,456Not applicable
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\SelfServiceUser.xap761,228Not applicable
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI.Administrator.xap242,279Not applicable
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI.Jobs.xap216,628Not applicable
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\Management.Core.xap220,759Not applicable
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI.ProductOverview.xap322,790Not applicable
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI.Rbac.xap230,688Not applicable
%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI.Shell.xap2,874,673Not applicable

App Controller Setup (KB2823452)
Files that are changedFile sizeVersion
%ProgramData%\Microsoft\System Center\App Controller Setup\SetupConsole.exe709,8801.0.1603.0
%ProgramData%\Microsoft\System Center\App Controller Setup\SetupFramework.dll624,8881.0.1603.0

Data Protection Manager Update (KB2877075)
File nameVersionFile size
acreg.dll4.1.3415.0310,984
AgentProxy.dll4.1.3415.0215,752
AutoHeal.dll4.1.3415.072,392
CloudEngineProxyWrapper.dll4.1.3415.051,912
CPWrapper.dll4.1.3415.01,145,544
DataProtectionManager.psd14.1.3415.019,544
DataProtectionManager.psm14.1.3415.025,250
dpmac.exe4.1.3415.02,122,952
DPMClientService.exe4.1.3415.0608,968
DPMLA.exe4.1.3415.02,932,424
DPMRA.exe4.1.3415.06,424,264
EngineServiceProxyWrapper.dll4.1.3415.0174,792
FilterWrapper.dll4.1.3415.0156,872
GenericDatasourceWriterHelperPlugin.dll4.1.3415.0836,808
INTENTTRANSLATOR.dll4.1.3415.0572,104
Microsoft.EnterpriseStorage.Dls.Prm.MbcParser.dll4.1.3415.0495,816
msdpmdll.dll4.1.3415.0559,304
msdpmPS.dll4.1.3415.037,064
pruneshadowcopiesDpm2010.ps14.1.3415.027,750
ServiceProxy.dll4.1.3415.0356,552
SetDpmServer.exe4.1.3415.0124,104
SQLWriterHelperPlugin.dll4.1.3415.01,117,384
UICommon.dll4.1.3415.0109,256
VmmHelperService.dll4.1.3415.025,288
VmmHelperServiceClient.dll4.1.3415.035,528
VssRequestorWin8.dll4.1.3415.0391,368
WSS4Cmdlets.dll4.1.3415.0129,736
WSSCmdlets.dll4.1.3415.0150,216
WSSWriterHelperPlugin.dll4.1.3415.0878,280
1033\AlertHealthProvider.dll4.1.3415.0146,120
1033\AMTE.dll4.1.3415.0289,480
1033\CBEngineServiceProxy.dll4.1.3415.0113,352
1033\CloudBackupActivationWizard.dll4.1.3415.0142,024
1033\CloudUtils.dll4.1.3415.0461,512
1033\ConfigurationPage.dll4.1.3415.0690,888
1033\DataProtectionWizard.dll4.1.3415.01,854,152
1033\Inspect.dll4.1.3415.0170,696
1033\InstallAgentsWizard.dll4.1.3415.0658,120
1033\ManagedContainer.dll4.1.3415.01,583,816
1033\Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.ClientDatasource.dll4.1.3415.060,104
1033\Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.SQL.dll4.1.3415.064,200
1033\ObjectModel.dll4.1.3415.01,223,368
1033\ObjectModelCmdlet.dll4.1.3415.0400,072
1033\ProtectionView.dll4.1.3415.0903,880
1033\Utils.dll4.1.3415.01,227,464
1028\zh-TW\CloudBackupActivationWizard.resources.dll4.1.3415.0101,064
1028\zh-TW\ConfigurationPage.resources.dll4.1.3415.0375,496
1028\zh-TW\DataProtectionWizard.resources.dll4.1.3415.01,145,544
1028\zh-TW\ManagedContainer.resources.dll4.1.3415.0236,232
1028\zh-TW\ProtectionView.resources.dll4.1.3415.0617,160
1028\zh-TW\Utils.resources.dll4.1.3415.0584,392
1028\zh-TW\ViewAdhocJobs.resources.dll4.1.3415.047,816
1029\cs-CZ\CloudBackupActivationWizard.resources.dll4.1.3415.0105,160
1029\cs-CZ\ConfigurationPage.resources.dll4.1.3415.0379,592
1029\cs-CZ\DataProtectionWizard.resources.dll4.1.3415.01,153,736
1029\cs-CZ\ManagedContainer.resources.dll4.1.3415.0236,232
1029\cs-CZ\ProtectionView.resources.dll4.1.3415.0621,256
1029\cs-CZ\Utils.resources.dll4.1.3415.0686,792
1029\cs-CZ\ViewAdhocJobs.resources.dll4.1.3415.047,816
1031\de-DE\CloudBackupActivationWizard.resources.dll4.1.3415.0105,160
1031\de-DE\ConfigurationPage.resources.dll4.1.3415.0383,688
1031\de-DE\DataProtectionWizard.resources.dll4.1.3415.01,157,832
1031\de-DE\ManagedContainer.resources.dll4.1.3415.0236,232
1031\de-DE\ProtectionView.resources.dll4.1.3415.0621,256
1031\de-DE\Utils.resources.dll4.1.3415.0735,944
1031\de-DE\ViewAdhocJobs.resources.dll4.1.3415.047,816
1036\fr-FR\CloudBackupActivationWizard.resources.dll4.1.3415.0105,160
1036\fr-FR\ConfigurationPage.resources.dll4.1.3415.0383,688
1036\fr-FR\DataProtectionWizard.resources.dll4.1.3415.01,157,832
1036\fr-FR\ManagedContainer.resources.dll4.1.3415.0236,232
1036\fr-FR\ProtectionView.resources.dll4.1.3415.0621,256
1036\fr-FR\Utils.resources.dll4.1.3415.0727,752
1036\fr-FR\ViewAdhocJobs.resources.dll4.1.3415.047,816
1038\hu-HU\CloudBackupActivationWizard.resources.dll4.1.3415.0105,160
1038\hu-HU\ConfigurationPage.resources.dll4.1.3415.0383,688
1038\hu-HU\DataProtectionWizard.resources.dll4.1.3415.01,161,928
1038\hu-HU\ManagedContainer.resources.dll4.1.3415.0236,232
1038\hu-HU\ProtectionView.resources.dll4.1.3415.0621,256
1038\hu-HU\Utils.resources.dll4.1.3415.0752,328
1038\hu-HU\ViewAdhocJobs.resources.dll4.1.3415.047,816
1040\it-IT\CloudBackupActivationWizard.resources.dll4.1.3415.0105,160
1040\it-IT\ConfigurationPage.resources.dll4.1.3415.0383,688
1040\it-IT\DataProtectionWizard.resources.dll4.1.3415.01,153,736
1040\it-IT\ManagedContainer.resources.dll4.1.3415.0236,232
1040\it-IT\ProtectionView.resources.dll4.1.3415.0621,256
1040\it-IT\Utils.resources.dll4.1.3415.0694,984
1040\it-IT\ViewAdhocJobs.resources.dll4.1.3415.047,816
1041\ja-JP\CloudBackupActivationWizard.resources.dll4.1.3415.0105,160
1041\ja-JP\ConfigurationPage.resources.dll4.1.3415.0387,784
1041\ja-JP\DataProtectionWizard.resources.dll4.1.3415.01,166,024
1041\ja-JP\ManagedContainer.resources.dll4.1.3415.0228,040
1041\ja-JP\ProtectionView.resources.dll4.1.3415.0625,352
1041\ja-JP\Utils.resources.dll4.1.3415.0830,152
1041\ja-JP\ViewAdhocJobs.resources.dll4.1.3415.047,816
1042\ko-KR\CloudBackupActivationWizard.resources.dll4.1.3415.0101,064
1042\ko-KR\ConfigurationPage.resources.dll4.1.3415.0383,688
1042\ko-KR\DataProtectionWizard.resources.dll4.1.3415.01,153,736
1042\ko-KR\ManagedContainer.resources.dll4.1.3415.0236,232
1042\ko-KR\ProtectionView.resources.dll4.1.3415.0621,256
1042\ko-KR\Utils.resources.dll4.1.3415.0727,752
1042\ko-KR\ViewAdhocJobs.resources.dll4.1.3415.047,816
1043\nl-NL\CloudBackupActivationWizard.resources.dll4.1.3415.0105,160
1043\nl-NL\ConfigurationPage.resources.dll4.1.3415.0379,592
1043\nl-NL\DataProtectionWizard.resources.dll4.1.3415.01,153,736
1043\nl-NL\ManagedContainer.resources.dll4.1.3415.0236,232
1043\nl-NL\ProtectionView.resources.dll4.1.3415.0621,256
1043\nl-NL\Utils.resources.dll4.1.3415.0662,216
1043\nl-NL\ViewAdhocJobs.resources.dll4.1.3415.047,816
1045\pl-PL\CloudBackupActivationWizard.resources.dll4.1.3415.0105,160
1045\pl-PL\ConfigurationPage.resources.dll4.1.3415.0379,592
1045\pl-PL\DataProtectionWizard.resources.dll4.1.3415.01,157,832
1045\pl-PL\ManagedContainer.resources.dll4.1.3415.0236,232
1045\pl-PL\ProtectionView.resources.dll4.1.3415.0621,256
1045\pl-PL\Utils.resources.dll4.1.3415.0723,656
1045\pl-PL\ViewAdhocJobs.resources.dll4.1.3415.047,816
1046\pt-BR\CloudBackupActivationWizard.resources.dll4.1.3415.0105,160
1046\pt-BR\ConfigurationPage.resources.dll4.1.3415.0379,592
1046\pt-BR\DataProtectionWizard.resources.dll4.1.3415.01,157,832
1046\pt-BR\ManagedContainer.resources.dll4.1.3415.0236,232
1046\pt-BR\ProtectionView.resources.dll4.1.3415.0621,256
1046\pt-BR\Utils.resources.dll4.1.3415.0686,792
1046\pt-BR\ViewAdhocJobs.resources.dll4.1.3415.047,816
1049\ru-RU\CloudBackupActivationWizard.resources.dll4.1.3415.0105,160
1049\ru-RU\ConfigurationPage.resources.dll4.1.3415.0391,880
1049\ru-RU\DataProtectionWizard.resources.dll4.1.3415.01,182,408
1049\ru-RU\ManagedContainer.resources.dll4.1.3415.0236,232
1049\ru-RU\ProtectionView.resources.dll4.1.3415.0633,544
1049\ru-RU\Utils.resources.dll4.1.3415.01,034,952
1049\ru-RU\ViewAdhocJobs.resources.dll4.1.3415.047,816
1053\sv-SE\CloudBackupActivationWizard.resources.dll4.1.3415.0105,160
1053\sv-SE\ConfigurationPage.resources.dll4.1.3415.0379,592
1053\sv-SE\DataProtectionWizard.resources.dll4.1.3415.01,153,736
1053\sv-SE\ManagedContainer.resources.dll4.1.3415.0236,232
1053\sv-SE\ProtectionView.resources.dll4.1.3415.0621,256
1053\sv-SE\Utils.resources.dll4.1.3415.0658,120
1053\sv-SE\ViewAdhocJobs.resources.dll4.1.3415.047,816
1055\tr-TR\CloudBackupActivationWizard.resources.dll4.1.3415.0101,064
1055\tr-TR\ConfigurationPage.resources.dll4.1.3415.0379,592
1055\tr-TR\DataProtectionWizard.resources.dll4.1.3415.01,153,736
1055\tr-TR\ManagedContainer.resources.dll4.1.3415.0236,232
1055\tr-TR\ProtectionView.resources.dll4.1.3415.0621,256
1055\tr-TR\Utils.resources.dll4.1.3415.0678,600
1055\tr-TR\ViewAdhocJobs.resources.dll4.1.3415.047,816
2052\zh-CN\CloudBackupActivationWizard.resources.dll4.1.3415.0101,064
2052\zh-CN\ConfigurationPage.resources.dll4.1.3415.0379,592
2052\zh-CN\DataProtectionWizard.resources.dll4.1.3415.01,145,544
2052\zh-CN\ManagedContainer.resources.dll4.1.3415.0236,232
2052\zh-CN\ProtectionView.resources.dll4.1.3415.0613,064
2052\zh-CN\Utils.resources.dll4.1.3415.0572,104
2052\zh-CN\ViewAdhocJobs.resources.dll4.1.3415.047,816
2070\pt-PT\CloudBackupActivationWizard.resources.dll4.1.3415.0105,160
2070\pt-PT\ConfigurationPage.resources.dll4.1.3415.0379,592
2070\pt-PT\DataProtectionWizard.resources.dll4.1.3415.01,157,832
2070\pt-PT\ManagedContainer.resources.dll4.1.3415.0236,232
2070\pt-PT\ProtectionView.resources.dll4.1.3415.0621,256
2070\pt-PT\Utils.resources.dll4.1.3415.0703,176
2070\pt-PT\ViewAdhocJobs.resources.dll4.1.3415.047,816
3076\zh-HK\CloudBackupActivationWizard.resources.dll4.1.3415.0101,064
3076\zh-HK\ConfigurationPage.resources.dll4.1.3415.0375,496
3076\zh-HK\DataProtectionWizard.resources.dll4.1.3415.01,145,544
3076\zh-HK\ManagedContainer.resources.dll4.1.3415.0236,232
3076\zh-HK\ProtectionView.resources.dll4.1.3415.0617,160
3076\zh-HK\Utils.resources.dll4.1.3415.0584,392
3076\zh-HK\ViewAdhocJobs.resources.dll4.1.3415.047,816
3082\es-ES\CloudBackupActivationWizard.resources.dll4.1.3415.0105,160
3082\es-ES\ConfigurationPage.resources.dll4.1.3415.0379,592
3082\es-ES\DataProtectionWizard.resources.dll4.1.3415.01,157,832
3082\es-ES\InstallAgentsWizard.resources.dll4.1.3415.0264,904
3082\es-ES\ManagedContainer.resources.dll4.1.3415.0236,232
3082\es-ES\ProtectionView.resources.dll4.1.3415.0621,256
3082\es-ES\Utils.resources.dll4.1.3415.0719,560
3082\es-ES\ViewAdhocJobs.resources.dll4.1.3415.047,816
1028\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1029\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1031\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1033\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1036\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1038\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1040\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1041\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1042\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1043\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1045\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1046\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1049\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1053\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
1055\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
2052\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
2070\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
3076\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388
3082\ObjectModelCmdlet.dll-Help.xml4.1.3415.01,222,388

Operations Manager (KB2852565)
Files that are changedFile SizeVersion
AdtPerf.dll78,552 bytes7.0.9538.1069
AdtServer.exe101,080 bytes7.0.9538.1069
AdtSrvDll.dll480,472 bytes7.0.9538.1069
AdvisorConnector.dll315,608 bytes7.0.9538.1068
ClientShared.dll192,728 bytes7.0.9538.1068
ConnectorBridge_x64.dll78,552 bytes7.0.9538.1068
/amd64/HealthServiceRuntime.dll319,192 bytes7.0.9538.1068
/ia64/HealthServiceRuntime.dll753,880 bytes7.0.9538.1068
/x86/HealthServiceRuntime.dll254,680 bytes7.0.9538.1068
Microsoft.EnterpriseManagement.Management.DataProviders.dll589,016 bytes7.0.9538.1068
Microsoft.EnterpriseManagement.Modules.PowerShell.dll88,792 bytes7.0.9538.1068
Microsoft.EnterpriseManagement.Monitoring.Components.dll 1,135,832 bytes7.0.9538.1068
/Silverlight/Microsoft.EnterpriseManagement.Monitoring.Components.dll 829,656 bytes)7.0.9538.1068
Microsoft.EnterpriseManagement.Monitoring.Console.exe 4,666,584 bytes7.0.9538.1068
Microsoft.EnterpriseManagement.Monitoring.DataProviders.dll415,960 bytes7.0.9538.1068
Microsoft.EnterpriseManagement.OperationsManager.MonitoringViews.dll1,810,136 bytes7.0.9538.1068
Microsoft.EnterpriseManagement.Presentation.Controls.dll 1,772,760 bytes7.0.9538.1068
/Silverlight/Microsoft.EnterpriseManagement.Presentation.Controls.dll 1,639,640 bytes7.0.9538.1068
Microsoft.EnterpriseManagement.Presentation.Core.dll496,856 bytes7.0.9538.1068
/Silverlight/Microsoft.EnterpriseManagement.Presentation.Core.dll303,320 bytes7.0.9538.1068
Microsoft.EnterpriseManagement.Presentation.DataProviders.Library.dll108,248 bytes7.0.9538.1068
Microsoft.EnterpriseManagement.Presentation.WebConsole.dll98,520 bytes7.0.9538.1068
Microsoft.EnterpriseManagement.RuntimeService.dll395,992 bytes7.0.9538.1068
Microsoft.EnterpriseManagement.UI.Administration.dll 4,467,416 bytes7.0.9538.1068
Microsoft.EnterpriseManagement.UI.Authoring.dll9,906,904 bytes7.0.9538.1068
Microsoft.EnterpriseManagement.UI.ConsoleFramework.dll 2,809,560 bytes7.0.9538.1068
Microsoft.ManagementServices.AppDiagnostics.IntelliTraceConvertor.dll70,360 bytes7.0.9538.1068
Microsoft.Mom.Modules.ClientMonitoring.dll457,432 bytes7.0.9538.1068
/amd64/Microsoft.Mom.ServiceCommon.dll27,864 bytes7.0.9538.1068
/x86/Microsoft.Mom.ServiceCommon.dll24,792 bytes7.0.9538.1068
/ia64/Microsoft.Mom.ServiceCommon.dll52,440 bytes7.0.9538.1068
Microsoft.MOM.UI.Components.dll6,142,680 bytes7.0.9538.1068
Microsoft.SystemCenter.OperationsManagerV10.Commands.dll647,384 bytes7.0.9538.1068
MOMAdvisorMsgs.dll31,448 bytes7.0.9538.1068
/amd64/MOMAgentInstaller.exe365,272 bytes7.0.9538.1068
/x86/MOMAgentInstaller.exe337,112 bytes7.0.9538.1068
/ia64/MOMAgentInstaller.exe634,584 bytes7.0.9538.1068
/amd64/MOMAgentInstallerPS.dll52,952 bytes7.0.9538.1068
/x86/MOMAgentInstallerPS.dll46,296 bytes7.0.9538.1068
/ia64/MOMAgentInstallerPS.dll101,592 bytes7.0.9538.1068
/amd64/MOMModules.dll2,609,368 bytes7.0.9538.1068
/x86/MOMModules.dll2,006,232 bytes7.0.9538.1068
/ia64/MOMModules.dll5,704,408 bytes7.0.9538.1068
/amd64/MOMPerfSnapshotHelper.exe50,392 bytes7.0.9538.1068
/x86/MOMPerfSnapshotHelper.exe41,176 bytes7.0.9538.1068
/ia64/MOMPerfSnapshotHelper.exe100,568 bytes7.0.9538.1068
/amd64/MOMPerfSnapshotHelperProxy.dll18,648 bytes7.0.9538.1068
/x86/MOMPerfSnapshotHelperProxy.dll16,600 bytes7.0.9538.1068
/ia64/MOMPerfSnapshotHelperProxy.dll24,792 bytes7.0.9538.1068
OMTraceTMFVer.Dll 7.0.9538.1068
OMVersion.dll8,920 bytes7.0.9538.1068
OpsMgrTraceTMFVer.Dll7.0.9538.1068
/amd64/silverlightclientconfiguration.exe3,598,552 bytes7.0.9538.1068
/x86/silverlightclientconfiguration.exe3,577,560 bytes7.0.9538.1068
/ia64/silverlightclientconfiguration.exe3,577,560 bytes7.0.9538.1068
/amd64/TraceFmtSM.exe447,192 bytes7.0.9538.1068
/x86/TraceFmtSM.exe372,952 bytes7.0.9538.1068
/ia64/TraceFmtSM.exe665,304 bytes7.0.9538.1068
/amd64/TraceLogSM.exe107,224 bytes7.0.9538.1068
/x86/TraceLogSM.exe95,448 bytes7.0.9538.1068
/ia64/TraceLogSM.exe223,960 bytes7.0.9538.1068
AdtAgent.exe408,264 bytes7.0.9538.1047
ConnectorBridge_x86.dll106,496 bytes7.0.9538.1047
DashboardViewer.xap413,2864 bytesNot applicable
Microsoft.Deployment.Compression.Cab.dll49,152 bytes3.5.2519.0
Microsoft.Deployment.Compression.dll36,864 bytes3.5.2519.0
Microsoft.EnterpriseManagement.Core.dll404,6848 bytes7.5.2905.103
Microsoft.SystemCenter.IntelliTraceProfiling.mpb131,072 bytesNot applicable
MomAdvisorMsg.dll28,672 bytes7.0.9538.1047
MonitoringPortal.xap419,8400 bytesNot applicable

Virtual Machine Manager Administrator Console (KB2858509)
32-bit version

Files that are changedFile sizeVersionLanguage ID
AxVMwareRemoteConsoleTypeLib.dll314885.1.0.0
Engine.Common.dll2040723.1.6027.0
Engine.Deployment.dll5486483.1.6027.0
Errors.dll38490003.1.6027.0
Errors.resources.dll13274003.1.6027.02052
Errors.resources.dll16468883.1.6027.01036
Errors.resources.dll16745363.1.6027.01031
Errors.resources.dll15542163.1.6027.01040
Errors.resources.dll18414483.1.6027.01041
Errors.resources.dll15613843.1.6027.01046
Errors.resources.dll22024083.1.6027.01049
Errors.resources.dll16033683.1.6027.03082
Errors.resources.dll13458403.1.6027.01028
Errors.resources.dll16346003.1.6027.01042
Errors.resources.dll13458403.1.6027.03076
Errors.resources.dll15562643.1.6027.01029
Errors.resources.dll15265683.1.6027.01043
Errors.resources.dll16858003.1.6027.01038
Errors.resources.dll16105363.1.6027.01045
Errors.resources.dll15787923.1.6027.02070
Errors.resources.dll14943123.1.6027.01053
Errors.resources.dll15132643.1.6027.01055
ImgLibEngine.dll31460243.1.6027.0
Microsoft.SystemCenter.VirtualMachineManager.dll17963923.1.6027.0
Microsoft.SystemCenter.VirtualMachineManger.PowerShell.CmdletWrappers.dll14946963.1.6018.0
Microsoft.VirtualManager.UI.AddIns.Management.dll964243.1.6018.0
Microsoft.VirtualManager.UI.Dialogs.dll29443043.1.6027.0
Microsoft.VirtualManager.UI.Dialogs.resources.dll9638883.1.6027.02052
Microsoft.VirtualManager.UI.Dialogs.resources.dll9956243.1.6027.01036
Microsoft.VirtualManager.UI.Dialogs.resources.dll9894883.1.6027.01031
Microsoft.VirtualManager.UI.Dialogs.resources.dll9858963.1.6027.01040
Microsoft.VirtualManager.UI.Dialogs.resources.dll10063843.1.6027.01041
Microsoft.VirtualManager.UI.Dialogs.resources.dll9869283.1.6027.01046
Microsoft.VirtualManager.UI.Dialogs.resources.dll10534803.1.6027.01049
Microsoft.VirtualManager.UI.Dialogs.resources.dll9899923.1.6027.03082
Microsoft.VirtualManager.UI.Dialogs.resources.dll9654163.1.6027.01028
Microsoft.VirtualManager.UI.Dialogs.resources.dll9874323.1.6027.01042
Microsoft.VirtualManager.UI.Dialogs.resources.dll9654163.1.6027.03076
Microsoft.VirtualManager.UI.Dialogs.resources.dll9884563.1.6027.01029
Microsoft.VirtualManager.UI.Dialogs.resources.dll9833363.1.6027.01043
Microsoft.VirtualManager.UI.Dialogs.resources.dll9951123.1.6027.01038
Microsoft.VirtualManager.UI.Dialogs.resources.dll9869283.1.6027.01045
Microsoft.VirtualManager.UI.Dialogs.resources.dll9884643.1.6027.02070
Microsoft.VirtualManager.UI.Dialogs.resources.dll9792403.1.6027.01053
Microsoft.VirtualManager.UI.Dialogs.resources.dll9823123.1.6027.01055
Microsoft.VirtualManager.UI.HardwareProperties.dll7073683.1.6027.0
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4529043.1.6027.02052
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4564883.1.6027.01036
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4595603.1.6027.01031
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4570083.1.6027.01040
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4570003.1.6027.01041
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4605843.1.6027.01046
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4677603.1.6027.01049
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4570083.1.6027.03082
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4534163.1.6027.01028
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4549523.1.6027.01042
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4534163.1.6027.03076
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4554643.1.6027.01029
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4595603.1.6027.01043
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4559763.1.6027.01038
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4549523.1.6027.01045
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4554643.1.6027.02070
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4590483.1.6027.01053
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4595603.1.6027.01055
Microsoft.VirtualManager.UI.NewVmWizard.dll8179603.1.6027.0
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5512163.1.6027.02052
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5599203.1.6027.01036
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5614483.1.6027.01031
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5594083.1.6027.01040
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5599123.1.6027.01041
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5629843.1.6027.01046
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5732323.1.6027.01049
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5594003.1.6027.03082
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5527523.1.6027.01028
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5553043.1.6027.01042
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5527443.1.6027.03076
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5558163.1.6027.01029
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5629843.1.6027.01043
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5563363.1.6027.01038
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5553043.1.6027.01045
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5553043.1.6027.02070
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5619603.1.6027.01053
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5619683.1.6027.01055
Microsoft.VirtualManager.UI.Pages.Datacenter.dll29299603.1.6027.0
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10760163.1.6027.02052
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll11046803.1.6027.01036
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10980323.1.6027.01031
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10949603.1.6027.01040
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll11128723.1.6027.01041
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10954643.1.6027.01046
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll11548643.1.6027.01049
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10985443.1.6027.03082
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10785763.1.6027.01028
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10954643.1.6027.01042
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10785683.1.6027.03076
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10980243.1.6027.01029
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10923923.1.6027.01043
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll11021203.1.6027.01038
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10959843.1.6027.01045
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10980243.1.6027.02070
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10903443.1.6027.01053
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10934163.1.6027.01055
Microsoft.VirtualManager.UI.Pages.Settings.dll1682403.1.6027.0
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll847843.1.6027.02052
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll868243.1.6027.01036
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.01031
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.01040
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll868243.1.6027.01041
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.01046
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll888723.1.6027.01049
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.03082
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll847763.1.6027.01028
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll858003.1.6027.01042
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll847763.1.6027.03076
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.01029
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.01043
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.01038
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll858003.1.6027.01045
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll858083.1.6027.02070
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll858003.1.6027.01053
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll858083.1.6027.01055
Microsoft.VirtualManager.UI.VMWizards.dll2131603.1.6018.0
Microsoft.VirtualManager.UI.VMWizards.resources.dll657283.1.6018.02052
Microsoft.VirtualManager.UI.VMWizards.resources.dll677523.1.6018.01036
Microsoft.VirtualManager.UI.VMWizards.resources.dll672643.1.6018.01031
Microsoft.VirtualManager.UI.VMWizards.resources.dll677763.1.6018.01040
Microsoft.VirtualManager.UI.VMWizards.resources.dll682883.1.6018.01041
Microsoft.VirtualManager.UI.VMWizards.resources.dll672643.1.6018.01046
Microsoft.VirtualManager.UI.VMWizards.resources.dll713523.1.6018.01049
Microsoft.VirtualManager.UI.VMWizards.resources.dll672403.1.6018.03082
Microsoft.VirtualManager.UI.VMWizards.resources.dll657043.1.6018.01028
Microsoft.VirtualManager.UI.VMWizards.resources.dll672403.1.6018.01042
Microsoft.VirtualManager.UI.VMWizards.resources.dll657043.1.6018.03076
Microsoft.VirtualManager.UI.VMWizards.resources.dll677763.1.6018.01029
Microsoft.VirtualManager.UI.VMWizards.resources.dll672403.1.6018.01043
Microsoft.VirtualManager.UI.VMWizards.resources.dll677763.1.6018.01038
Microsoft.VirtualManager.UI.VMWizards.resources.dll672403.1.6018.01045
Microsoft.VirtualManager.UI.VMWizards.resources.dll672403.1.6018.02070
Microsoft.VirtualManager.UI.VMWizards.resources.dll667283.1.6018.01053
Microsoft.VirtualManager.UI.VMWizards.resources.dll667523.1.6018.01055
Remoting.dll8322963.1.6027.0
Supplemental Notices for SC 2012 SP1 - Virtual Machine Manager Update Rollup 3.docx26067
TraceWrapper.dll678803.1.6027.0
Utils.dll7519123.1.6027.0
Utils.resources.dll883603.1.6027.02052
Utils.resources.dll914323.1.6027.01036
Utils.resources.dll909203.1.6027.01031
Utils.resources.dll919443.1.6027.01040
Utils.resources.dll955283.1.6027.01041
Utils.resources.dll924563.1.6027.01046
Utils.resources.dll1067923.1.6027.01049
Utils.resources.dll929683.1.6027.03082
Utils.resources.dll883603.1.6027.01028
Utils.resources.dll914323.1.6027.01042
Utils.resources.dll883683.1.6027.03076
Utils.resources.dll929683.1.6027.01029
Utils.resources.dll904083.1.6027.01043
Utils.resources.dll924563.1.6027.01038
Utils.resources.dll924563.1.6027.01045
Utils.resources.dll924563.1.6027.02070
Utils.resources.dll899043.1.6027.01053
Utils.resources.dll914403.1.6027.01055
VirtualizationInterfaces.dll866963.1.6018.0
VMConsoleLib.dll586243.1.6020.0
VMWareImplementation.dll20523923.1.6027.0
VMwareRemoteConsoleTypeLib.dll488965.1.0.0
VMwareViewer.exe268803.1.6020.0
VSImplementation.dll994963.1.6018.0
WSManAutomation.dll351123.1.6027.0
WsManWrappers.dll32090003.1.6027.0

64-bit version

Files that are changedFile sizeVersionLanguage ID
AxVMwareRemoteConsoleTypeLib.dll314885.1.0.0
Engine.Common.dll2040723.1.6027.0
Engine.Deployment.dll5486483.1.6027.0
Errors.dll38490003.1.6027.0
Errors.resources.dll13274083.1.6027.02052
Errors.resources.dll16468883.1.6027.01036
Errors.resources.dll16745363.1.6027.01031
Errors.resources.dll15542243.1.6027.01040
Errors.resources.dll18414563.1.6027.01041
Errors.resources.dll15613843.1.6027.01046
Errors.resources.dll22024163.1.6027.01049
Errors.resources.dll16033763.1.6027.03082
Errors.resources.dll13458323.1.6027.01028
Errors.resources.dll16346003.1.6027.01042
Errors.resources.dll13458323.1.6027.03076
Errors.resources.dll15562643.1.6027.01029
Errors.resources.dll15265683.1.6027.01043
Errors.resources.dll16858003.1.6027.01038
Errors.resources.dll16105363.1.6027.01045
Errors.resources.dll15787923.1.6027.02070
Errors.resources.dll14943203.1.6027.01053
Errors.resources.dll15132643.1.6027.01055
ImgLibEngine.dll31460243.1.6027.0
Microsoft.SystemCenter.VirtualMachineManager.dll17964003.1.6027.0
Microsoft.SystemCenter.VirtualMachineManger.PowerShell.CmdletWrappers.dll14947203.1.6018.0
Microsoft.VirtualManager.UI.AddIns.Management.dll964243.1.6018.0
Microsoft.VirtualManager.UI.Dialogs.dll29442963.1.6027.0
Microsoft.VirtualManager.UI.Dialogs.resources.dll9638803.1.6027.02052
Microsoft.VirtualManager.UI.Dialogs.resources.dll9956243.1.6027.01036
Microsoft.VirtualManager.UI.Dialogs.resources.dll9894803.1.6027.01031
Microsoft.VirtualManager.UI.Dialogs.resources.dll9858963.1.6027.01040
Microsoft.VirtualManager.UI.Dialogs.resources.dll10063763.1.6027.01041
Microsoft.VirtualManager.UI.Dialogs.resources.dll9869203.1.6027.01046
Microsoft.VirtualManager.UI.Dialogs.resources.dll10534803.1.6027.01049
Microsoft.VirtualManager.UI.Dialogs.resources.dll9899923.1.6027.03082
Microsoft.VirtualManager.UI.Dialogs.resources.dll9654163.1.6027.01028
Microsoft.VirtualManager.UI.Dialogs.resources.dll9874323.1.6027.01042
Microsoft.VirtualManager.UI.Dialogs.resources.dll9654163.1.6027.03076
Microsoft.VirtualManager.UI.Dialogs.resources.dll9884563.1.6027.01029
Microsoft.VirtualManager.UI.Dialogs.resources.dll9833363.1.6027.01043
Microsoft.VirtualManager.UI.Dialogs.resources.dll9951123.1.6027.01038
Microsoft.VirtualManager.UI.Dialogs.resources.dll9869203.1.6027.01045
Microsoft.VirtualManager.UI.Dialogs.resources.dll9884563.1.6027.02070
Microsoft.VirtualManager.UI.Dialogs.resources.dll9792403.1.6027.01053
Microsoft.VirtualManager.UI.Dialogs.resources.dll9823123.1.6027.01055
Microsoft.VirtualManager.UI.HardwareProperties.dll7073683.1.6027.0
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4529043.1.6027.02052
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4564883.1.6027.01036
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4595603.1.6027.01031
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4570003.1.6027.01040
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4570003.1.6027.01041
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4605843.1.6027.01046
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4677523.1.6027.01049
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4570003.1.6027.03082
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4534163.1.6027.01028
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4549523.1.6027.01042
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4534163.1.6027.03076
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4554643.1.6027.01029
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4595603.1.6027.01043
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4559763.1.6027.01038
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4549523.1.6027.01045
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4554643.1.6027.02070
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4590483.1.6027.01053
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll4595603.1.6027.01055
Microsoft.VirtualManager.UI.NewVmWizard.dll8179603.1.6027.0
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5512083.1.6027.02052
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5599123.1.6027.01036
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5614563.1.6027.01031
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5594003.1.6027.01040
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5599123.1.6027.01041
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5629843.1.6027.01046
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5732243.1.6027.01049
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5594003.1.6027.03082
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5527443.1.6027.01028
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5553043.1.6027.01042
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5527443.1.6027.03076
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5558163.1.6027.01029
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5629843.1.6027.01043
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5563283.1.6027.01038
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5553043.1.6027.01045
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5553123.1.6027.02070
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5619603.1.6027.01053
Microsoft.VirtualManager.UI.NewVmWizard.resources.dll5619603.1.6027.01055
Microsoft.VirtualManager.UI.Pages.Datacenter.dll29299603.1.6027.0
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10760083.1.6027.02052
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll11046803.1.6027.01036
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10980323.1.6027.01031
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10949523.1.6027.01040
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll11128723.1.6027.01041
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10954643.1.6027.01046
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll11548563.1.6027.01049
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10985363.1.6027.03082
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10785683.1.6027.01028
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10954643.1.6027.01042
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10785683.1.6027.03076
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10980243.1.6027.01029
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10923923.1.6027.01043
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll11021203.1.6027.01038
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10959763.1.6027.01045
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10980243.1.6027.02070
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10903443.1.6027.01053
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll10934163.1.6027.01055
Microsoft.VirtualManager.UI.Pages.Settings.dll1682323.1.6027.0
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll847763.1.6027.02052
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll868243.1.6027.01036
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.01031
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.01040
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll868243.1.6027.01041
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.01046
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll888723.1.6027.01049
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.03082
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll847763.1.6027.01028
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll858003.1.6027.01042
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll847763.1.6027.03076
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.01029
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.01043
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll863123.1.6027.01038
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll858003.1.6027.01045
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll858003.1.6027.02070
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll858003.1.6027.01053
Microsoft.VirtualManager.UI.Pages.Settings.resources.dll858003.1.6027.01055
Microsoft.VirtualManager.UI.VMWizards.dll2131603.1.6018.0
Microsoft.VirtualManager.UI.VMWizards.resources.dll657203.1.6018.02052
Microsoft.VirtualManager.UI.VMWizards.resources.dll677763.1.6018.01036
Microsoft.VirtualManager.UI.VMWizards.resources.dll672643.1.6018.01031
Microsoft.VirtualManager.UI.VMWizards.resources.dll677763.1.6018.01040
Microsoft.VirtualManager.UI.VMWizards.resources.dll682643.1.6018.01041
Microsoft.VirtualManager.UI.VMWizards.resources.dll672643.1.6018.01046
Microsoft.VirtualManager.UI.VMWizards.resources.dll713363.1.6018.01049
Microsoft.VirtualManager.UI.VMWizards.resources.dll672403.1.6018.03082
Microsoft.VirtualManager.UI.VMWizards.resources.dll657043.1.6018.01028
Microsoft.VirtualManager.UI.VMWizards.resources.dll672403.1.6018.01042
Microsoft.VirtualManager.UI.VMWizards.resources.dll657043.1.6018.03076
Microsoft.VirtualManager.UI.VMWizards.resources.dll677523.1.6018.01029
Microsoft.VirtualManager.UI.VMWizards.resources.dll672403.1.6018.01043
Microsoft.VirtualManager.UI.VMWizards.resources.dll677523.1.6018.01038
Microsoft.VirtualManager.UI.VMWizards.resources.dll672643.1.6018.01045
Microsoft.VirtualManager.UI.VMWizards.resources.dll672403.1.6018.02070
Microsoft.VirtualManager.UI.VMWizards.resources.dll667283.1.6018.01053
Microsoft.VirtualManager.UI.VMWizards.resources.dll667283.1.6018.01055
Remoting.dll8322963.1.6027.0
Supplemental Notices for SC 2012 SP1 - Virtual Machine Manager Update Rollup 3.docx26067
TraceWrapper.dll678803.1.6027.0
Utils.dll7519123.1.6027.0
Utils.resources.dll883603.1.6027.02052
Utils.resources.dll914323.1.6027.01036
Utils.resources.dll909283.1.6027.01031
Utils.resources.dll919443.1.6027.01040
Utils.resources.dll955363.1.6027.01041
Utils.resources.dll924563.1.6027.01046
Utils.resources.dll1068003.1.6027.01049
Utils.resources.dll929683.1.6027.03082
Utils.resources.dll883603.1.6027.01028
Utils.resources.dll914403.1.6027.01042
Utils.resources.dll883683.1.6027.03076
Utils.resources.dll929683.1.6027.01029
Utils.resources.dll904083.1.6027.01043
Utils.resources.dll924563.1.6027.01038
Utils.resources.dll924643.1.6027.01045
Utils.resources.dll924563.1.6027.02070
Utils.resources.dll899043.1.6027.01053
Utils.resources.dll914323.1.6027.01055
VirtualizationInterfaces.dll866963.1.6018.0
VMConsoleLib.dll586403.1.6020.0
VMWareImplementation.dll20524003.1.6027.0
VMwareRemoteConsoleTypeLib.dll488965.1.0.0
VMwareViewer.exe268803.1.6020.0
VSImplementation.dll995203.1.6018.0
WSManAutomation.dll351123.1.6027.0
WsManWrappers.dll32090003.1.6027.0

Virtual Machine Manager Server (KB2858510)
Files that are changedFile sizeVersionLanguage ID
Engine.Adhc.Operations.dll10657683.1.6027.0
Engine.BitBos.dll2358163.1.6027.0
Engine.Common.dll2040723.1.6027.0
Engine.Deployment.dll5486483.1.6027.0
Engine.IndigoAccessLayer.dll3837603.1.6020.0
Engine.Placement.dll2609043.1.6027.0
Engine.Placement.ResourceModel.dll3074963.1.6027.0
Engine.VmOperations.dll11354003.1.6027.0
Errors.dll38490003.1.6027.0
Errors.resources.dll13274003.1.6027.02052
Errors.resources.dll16468883.1.6027.01036
Errors.resources.dll16745363.1.6027.01031
Errors.resources.dll15542163.1.6027.01040
Errors.resources.dll18414483.1.6027.01041
Errors.resources.dll15613843.1.6027.01046
Errors.resources.dll22024083.1.6027.01049
Errors.resources.dll16033683.1.6027.03082
Errors.resources.dll13458323.1.6027.01028
Errors.resources.dll16346003.1.6027.01042
Errors.resources.dll13458323.1.6027.03076
Errors.resources.dll15562643.1.6027.01029
Errors.resources.dll15265683.1.6027.01043
Errors.resources.dll16858003.1.6027.01038
Errors.resources.dll16105363.1.6027.01045
Errors.resources.dll15787923.1.6027.02070
Errors.resources.dll14943123.1.6027.01053
Errors.resources.dll15132563.1.6027.01055
GoalState.dll586643.1.6027.0
ImgLibEngine.dll31460243.1.6027.0
msiInstaller.dat12
msiInstaller.exe2751123.1.6011.0
msiInstaller.exe3278563.1.6011.0
Remoting.dll8322963.1.6027.0
Supplemental Notices for SC 2012 SP1 - Virtual Machine Manager Update Rollup 3.docx26067
TraceWrapper.dll678803.1.6027.0
Utils.dll7519123.1.6027.0
Utils.resources.dll883603.1.6027.02052
Utils.resources.dll914323.1.6027.01036
Utils.resources.dll909203.1.6027.01031
Utils.resources.dll919443.1.6027.01040
Utils.resources.dll955283.1.6027.01041
Utils.resources.dll924563.1.6027.01046
Utils.resources.dll1067923.1.6027.01049
Utils.resources.dll929683.1.6027.03082
Utils.resources.dll883603.1.6027.01028
Utils.resources.dll914323.1.6027.01042
Utils.resources.dll883603.1.6027.03076
Utils.resources.dll929683.1.6027.01029
Utils.resources.dll904083.1.6027.01043
Utils.resources.dll924563.1.6027.01038
Utils.resources.dll924563.1.6027.01045
Utils.resources.dll924563.1.6027.02070
Utils.resources.dll898963.1.6027.01053
Utils.resources.dll914323.1.6027.01055
ViridianImplementation.dll2189203.1.6027.0
ViridianImplementationV2.dll3602323.1.6027.0
VirtualizationInterfaces.dll866963.1.6018.0
VMGuestAgent.iso126812160
vmmAgent.exe61130643.1.6027.0
vmmAgent.msi6983680
vmmAgent.msi7950336
vmmGuestAgent.msi2674688
vmmGuestAgent.msi2760704
vmmservice.exe463763.1.6027.0
VMWareImplementation.dll20523923.1.6027.0
VSImplementation.dll995203.1.6018.0
WSManAutomation.dll351123.1.6027.0
WsManMIWrappers.dll1338243.1.6018.0
WsManWrappers.dll32090003.1.6027.0
XenImplementation.dll1732483.1.6018.0

Virtual Machine Manager Guest Agent (KB2858511)
32-bit version
Files that are changedFile sizeVersion
Errors.dll38490003.1.6027.0
gceManagement.dll1718163.1.6027.0
GoalState.dll586643.1.6027.0
GuestAgent.AIFactory.dll315283.1.6027.0
GuestAgent.AppDownloader.dll443283.1.6027.0
GuestAgent.Common.dll642963.1.6027.0
GuestAgent.Fetcher.dll412563.1.6027.0
GuestAgent.GCEProcessor.dll315283.1.6027.0
GuestAgent.GSC.dll740243.1.6027.0
GuestAgent.GSM.dll346003.1.6027.0
GuestAgent.QueueManager.dll392083.1.6027.0
GuestAgent.SqlProfileProcessor.dll315283.1.6027.0
GuestAgent.StateManager.dll233363.1.6027.0
GuestAgent.Upgrade.dll448403.1.6027.0
ScvmmGuestService.exe264083.1.6027.0
Supplemental Notices for SC 2012 SP1 - Virtual Machine Manager Update Rollup 3.docx26067
TraceWrapper.dll678803.1.6027.0
vmmApplicationManager.Common.dll310163.1.6027.0
vmmApplicationManager.dll591763.1.6027.0
WebDeployV2.dll299923.1.6027.0
WebDeployV3.dll299923.1.6027.0
64-bit version
Files that are changedFile sizeVersion
Errors.dll38490003.1.6027.0
gceManagement.dll2148243.1.6027.0
GoalState.dll586643.1.6027.0
GuestAgent.AIFactory.dll484243.1.6027.0
GuestAgent.AppDownloader.dll443363.1.6027.0
GuestAgent.Common.dll643043.1.6027.0
GuestAgent.Fetcher.dll412563.1.6027.0
GuestAgent.GCEProcessor.dll315283.1.6027.0
GuestAgent.GSC.dll740243.1.6027.0
GuestAgent.GSM.dll346003.1.6027.0
GuestAgent.QueueManager.dll392163.1.6027.0
GuestAgent.SqlProfileProcessor.dll315283.1.6027.0
GuestAgent.StateManager.dll233443.1.6027.0
GuestAgent.Upgrade.dll448403.1.6027.0
ScvmmGuestService.exe264083.1.6027.0
Supplemental Notices for SC 2012 SP1 - Virtual Machine Manager Update Rollup 3.docx26067
TraceWrapper.dll678803.1.6027.0
vmmApplicationManager.Common.dll310163.1.6027.0
vmmApplicationManager.dll591763.1.6027.0
WebDeployV2.dll299923.1.6027.0
WebDeployV3.dll300003.1.6027.0


↑ Back to the top


Keywords: kb, atdownload, kbsurveynew, kbexpertiseinter, kbqfe, kbfix, kbnotautohotfix

↑ Back to the top

Article Info
Article ID : 2836751
Revision : 2
Created on : 4/10/2020
Published on : 4/10/2020
Exists online : False
Views : 331