Sign in with Microsoft
Sign in or create an account.
Hello,
Select a different account.
You have multiple accounts
Choose the account you want to sign in with.

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.

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.
 

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.

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.

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.
     

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.

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.
     

  • 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.
 

Component

RTMProductCodeGuid

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.
 

PatchCode

Component

CPU

Local

{D154E2E1-9A65-4229-9D80-E0E3024BC810}

Agent

AMD64

EN

{6C7440B8-7121-4A86-B110-13EF5496483A}

Server

AMD64

EN

{7D7FCCF6-498A-4C52-84E4-4A6CF7BF142D}

Gateway

AMD64

EN

{EDE39D87-2031-4BB9-85CF-DA4D5CC60E62}

WebConsole

AMD64

EN

{51573384-18AF-4F02-A234-159F87189BE2}

Console

AMD64

EN

ACS

AMD64

EN

{84120BBF-60A6-4D36-8715-A30439C44303}

Agent

IA-64

EN

{D5F05640-DBE7-4C4C-B26B-45F718851972}

Agent

x86

EN

{2E46DFE1-C2AD-457E-9D29-E6995B816288}

Console

x86

EN

{407BA30F-44B3-48FB-B387-13C3E7B43EF3}

Console

AMD64

CN

{53F0F0ED-1BD2-4C8F-A97C-2C5883058AAE}

WebConsole

AMD64

CN

{016C9C4D-F0AD-4294-95B7-B362328D792B}

ACS

AMD64

CN

{08DFFED6-FBDC-45FA-8C2E-E69C366EDD1B}

WebConsole

AMD64

CS

{142A41C0-31F1-48F6-9DF5-F820FCBD9650}

Console

AMD64

CS

{107745AB-A35C-4E04-831E-DC740E935EB8}

ACS

AMD64

CS

{88A877D1-5636-4ABD-80ED-CFB86DCF7206}

Console

AMD64

DE

{9EE433ED-AFD1-4A74-9D49-7D71CAEE4414}

WebConsole

AMD64

DE

{295A0AEA-3F7A-4DEC-8F4F-9D18F138C2FC}

ACS

AMD64

DE

{6156ACB9-3C6D-4B2C-A79A-D65B372B12F0}

Console

AMD64

ES

{02DBC1C1-1F76-4A85-A6D2-05B04BD23312}

WebConsole

AMD64

ES

{B999DF65-47FE-49C5-9039-A6B1198932C9}

ACS

AMD64

ES

{47C23519-937F-43F8-BE2F-9A38D2E73B95}

Console

AMD64

FR

{ECC3634F-3C79-465B-BFBF-ACB529289103}

WebConsole

AMD64

FR

{1DBE7810-D1BD-4D7F-B742-1D46FE5D44C9}

ACS

AMD64

FR

{279895BC-1249-4067-A09C-01C37D6A330E}

Console

AMD64

HU

{3472F246-4781-4CA2-A6F9-D3ACC7F450D5}

WebConsole

AMD64

HU

{EF7271B1-B341-4706-B382-15312EF3D343}

ACS

AMD64

HU

{BCA9454A-A2C0-44A3-A457-EFD603F085EA}

Console

AMD64

IT

{F9AF9CE4-C3DE-4A71-8EF2-25CB0D9B22BE}

WebConsole

AMD64

IT

{6EA78074-7F0B-454B-BA34-3F865ED0E289}

ACS

AMD64

IT

{66350179-CF0D-4788-AB86-847CEA2EEAA7}

Console

AMD64

JA

{14DDC92B-169A-4DB9-8BD2-1407247AEEF8}

WebConsole

AMD64

JA

{5A536E8F-3485-4047-ACDF-D0F2F50E8367}

ACS

AMD64

JA

{944B0604-3FDF-4274-AEC5-4E440C7C471D}

Console

AMD64

KO

{39FFBB7B-DF63-4318-AC78-B2E48FD534CC}

WebConsole

AMD64

KO

{6DAA05FE-8459-48E0-902C-29A88BC40516}

ACS

AMD64

KO

{F3DEC4D8-BE92-4E63-8B2B-E517B488D8D1}

Console

AMD64

NL

{7D4C18E4-6933-4674-ABCF-73FDF6E86D13}

WebConsole

AMD64

NL

{448B3C24-F86F-493E-845F-76143D86EBC6}

ACS

AMD64

NL

{14D8B89B-4BB8-4957-B63F-3093A389D7E0}

Console

AMD64

PL

{D307FAC7-411B-44DE-9C0E-D7ED5C7B84B5}

WebConsole

AMD64

PL

{BB68B59B-0661-4F4B-8C0E-37ECC92FC19B}

ACS

AMD64

PL

{88E06D9A-4AA6-4A32-A799-24AA4D5AA41E}

Console

AMD64

PT-BR

{3503B91F-A46B-4823-BCBC-29B18DFB66EF}

WebConsole

AMD64

PT-BR

{0053BF4F-F8FC-487A-B4C2-5C5AA3E44333}

ACS

AMD64

PT-BR

{6E07D642-276B-435E-A553-9C67FCC341AE}

Console

AMD64

PT-PT

{AF4508F0-3F7C-4409-81FE-EEF0F8FC38E0}

WebConsole

AMD64

PT-PT

{AEC6D4A0-1DFE-46EC-949F-96B288E32C7F}

ACS

AMD64

PT-PT

{EA7EDD78-8250-46E2-A9F4-5A786C3676A0}

ACS

AMD64

RU

{4B812C92-753A-42A4-8545-798ED84102CC}

Console

AMD64

RU

{3B44791F-8E1D-4716-A2B7-FD6A1E7BA9AD}

WebConsole

AMD64

RU

{DD3FFEF9-5BD8-490A-B995-27425F5DDAF6}

ACS

AMD64

SV

{6688CE64-867E-4B71-8FDC-4CE4EC2F50B7}

Console

AMD64

SV

{96DE2DFF-257F-4719-8169-A77B09EE4201}

WebConsole

AMD64

SV

{7DE2DB39-2650-4E2F-B6A3-4DFD3A15E6F7}

Console

AMD64

TR

{6C602A22-5768-4238-B8EB-D7D72E966891}

WebConsole

AMD64

TR

{9178BBF5-181A-497E-96A0-7D1A9A61378A}

ACS

AMD64

TR

{F0CEC17E-A121-4811-8E46-C1A9012989AE}

Console

AMD64

TW

{6EA1B46A-069B-49EA-861C-64A0DFC0EAAA}

WebConsole

AMD64

TW

{6CD3D625-376F-4166-9F25-4431EFBCE492}

ACS

AMD64

TW

{619C10BA-50D3-4A37-A650-E1FD6A3EF2BD}

Console

AMD64

ZH-ZK

{E7076F38-2E82-4CF6-ADFD-A83C0B79F472}

WebConsole

AMD64

ZH-ZK

{707D5170-2B9D-489B-8D5C-6ECAD1F5D10F}

ACS

AMD64

ZH-ZK

{EF070153-1AA9-4EA3-A0AE-3ACE90A3DEC8}

Console

x86

CN

{E4E3CC15-C757-4352-88EC-936A1D83A4D1}

Console

x86

CS

{6AFDC390-6B4C-444B-85E5-15BDAD3D4A87}

Console

x86

DE

{BD82B95F-3207-40D2-8354-8235D2C6D265}

Console

x86

ES

{49A20079-6FD2-4476-890A-D428480B99DA}

Console

x86

FR

{601C5873-A4BC-46E3-8E78-7F00F220C631}

Console

x86

HU

{3D5D5947-7358-408E-8002-3621DD0C4304}

Console

x86

IT

{F3ABED6F-85EE-4085-8B45-C9DB0BA1866F}

Console

x86

JA

{E5A8B3F4-AB8F-410D-A2D2-25DD03B4ACD6}

Console

x86

KO

{EBDA3EE9-7247-4ADD-BBF9-4F133BD4E325}

Console

x86

NL

{D2C44532-A546-41AA-A4A8-D632DB4875F6}

Console

x86

PL

{29FDA7C0-E7C8-45A6-82C5-246E3961E448}

Console

x86

PT-BR

{079FCA89-AB6B-4923-94F3-427A036BC897}

Console

x86

PT-PT

{C605041A-13B3-4859-BDEE-D8778029C6A5}

Console

x86

RU

{BF166F81-F9C3-4DBA-B792-7872BF4CB40E}

Console

x86

SV

{DA5C926C-E1FA-4D16-B7EE-9144238453C9}

Console

x86

TR

{9954A0F1-9267-408E-BF23-A7951B0CA4AC}

Console

x86

TW

{859B0691-3127-49C3-9777-7B3682D0D697}

Console

x86

ZH-ZK



 

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:
     

    System Center Monitoring Pack for UNIX and Linux Operating Systems

  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.

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:
 

http://blogs.technet.com/b/scvmm/archive/2013/04/23/update-on-system-center-2012-sp1-update-rollup-2-ur2-for-virtual-machine-manager.aspx
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

Files that are updated in Update Rollup 3 packages

Files that are changed

File size

Version

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\api\bin\Microsoft.SystemCenter.CloudManager.Providers.Vmm.exe

499,448

1.0.1604.0

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\api\bin\ Microsoft.SystemCenter.CloudManager.Providers.Azure.exe

751,864

1.0.1604.0

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\api\bin\ Microsoft.SystemCenter.CloudManager.Providers.Spfvmm.exe

685,816

1.0.1604.0

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\api\bin\ Microsoft.SystemCenter.CloudManager.Providers.System.exe

185,592

1.0.1604.0

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\api\bin\ Microsoft.SystemCenter.CloudManager.Providers.System.Common.dll

170,744

1.0.1604.0

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\Default.htm

3,098

Not applicable

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\Configuration\ModulesCatalog.xaml

14,456

Not applicable

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\SelfServiceUser.xap

761,228

Not applicable

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI.Administrator.xap

242,279

Not applicable

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI.Jobs.xap

216,628

Not applicable

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\Management.Core.xap

220,759

Not applicable

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI.ProductOverview.xap

322,790

Not applicable

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI.Rbac.xap

230,688

Not applicable

%PROGRAMFILES%\Microsoft System Center 2012\App Controller\wwwroot\ClientBin\1.0.1.8\UI.Shell.xap

2,874,673

Not applicable

Files that are changed

File size

Version

%ProgramData%\Microsoft\System Center\App Controller Setup\SetupConsole.exe

709,880

1.0.1603.0

%ProgramData%\Microsoft\System Center\App Controller Setup\SetupFramework.dll

624,888

1.0.1603.0

File name

Version

File size

acreg.dll

4.1.3415.0

310,984

AgentProxy.dll

4.1.3415.0

215,752

AutoHeal.dll

4.1.3415.0

72,392

CloudEngineProxyWrapper.dll

4.1.3415.0

51,912

CPWrapper.dll

4.1.3415.0

1,145,544

DataProtectionManager.psd1

4.1.3415.0

19,544

DataProtectionManager.psm1

4.1.3415.0

25,250

dpmac.exe

4.1.3415.0

2,122,952

DPMClientService.exe

4.1.3415.0

608,968

DPMLA.exe

4.1.3415.0

2,932,424

DPMRA.exe

4.1.3415.0

6,424,264

EngineServiceProxyWrapper.dll

4.1.3415.0

174,792

FilterWrapper.dll

4.1.3415.0

156,872

GenericDatasourceWriterHelperPlugin.dll

4.1.3415.0

836,808

INTENTTRANSLATOR.dll

4.1.3415.0

572,104

Microsoft.EnterpriseStorage.Dls.Prm.MbcParser.dll

4.1.3415.0

495,816

msdpmdll.dll

4.1.3415.0

559,304

msdpmPS.dll

4.1.3415.0

37,064

pruneshadowcopiesDpm2010.ps1

4.1.3415.0

27,750

ServiceProxy.dll

4.1.3415.0

356,552

SetDpmServer.exe

4.1.3415.0

124,104

SQLWriterHelperPlugin.dll

4.1.3415.0

1,117,384

UICommon.dll

4.1.3415.0

109,256

VmmHelperService.dll

4.1.3415.0

25,288

VmmHelperServiceClient.dll

4.1.3415.0

35,528

VssRequestorWin8.dll

4.1.3415.0

391,368

WSS4Cmdlets.dll

4.1.3415.0

129,736

WSSCmdlets.dll

4.1.3415.0

150,216

WSSWriterHelperPlugin.dll

4.1.3415.0

878,280

1033\AlertHealthProvider.dll

4.1.3415.0

146,120

1033\AMTE.dll

4.1.3415.0

289,480

1033\CBEngineServiceProxy.dll

4.1.3415.0

113,352

1033\CloudBackupActivationWizard.dll

4.1.3415.0

142,024

1033\CloudUtils.dll

4.1.3415.0

461,512

1033\ConfigurationPage.dll

4.1.3415.0

690,888

1033\DataProtectionWizard.dll

4.1.3415.0

1,854,152

1033\Inspect.dll

4.1.3415.0

170,696

1033\InstallAgentsWizard.dll

4.1.3415.0

658,120

1033\ManagedContainer.dll

4.1.3415.0

1,583,816

1033\Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.ClientDatasource.dll

4.1.3415.0

60,104

1033\Microsoft.Internal.EnterpriseStorage.Dls.UI.ObjectModel.SQL.dll

4.1.3415.0

64,200

1033\ObjectModel.dll

4.1.3415.0

1,223,368

1033\ObjectModelCmdlet.dll

4.1.3415.0

400,072

1033\ProtectionView.dll

4.1.3415.0

903,880

1033\Utils.dll

4.1.3415.0

1,227,464

1028\zh-TW\CloudBackupActivationWizard.resources.dll

4.1.3415.0

101,064

1028\zh-TW\ConfigurationPage.resources.dll

4.1.3415.0

375,496

1028\zh-TW\DataProtectionWizard.resources.dll

4.1.3415.0

1,145,544

1028\zh-TW\ManagedContainer.resources.dll

4.1.3415.0

236,232

1028\zh-TW\ProtectionView.resources.dll

4.1.3415.0

617,160

1028\zh-TW\Utils.resources.dll

4.1.3415.0

584,392

1028\zh-TW\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1029\cs-CZ\CloudBackupActivationWizard.resources.dll

4.1.3415.0

105,160

1029\cs-CZ\ConfigurationPage.resources.dll

4.1.3415.0

379,592

1029\cs-CZ\DataProtectionWizard.resources.dll

4.1.3415.0

1,153,736

1029\cs-CZ\ManagedContainer.resources.dll

4.1.3415.0

236,232

1029\cs-CZ\ProtectionView.resources.dll

4.1.3415.0

621,256

1029\cs-CZ\Utils.resources.dll

4.1.3415.0

686,792

1029\cs-CZ\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1031\de-DE\CloudBackupActivationWizard.resources.dll

4.1.3415.0

105,160

1031\de-DE\ConfigurationPage.resources.dll

4.1.3415.0

383,688

1031\de-DE\DataProtectionWizard.resources.dll

4.1.3415.0

1,157,832

1031\de-DE\ManagedContainer.resources.dll

4.1.3415.0

236,232

1031\de-DE\ProtectionView.resources.dll

4.1.3415.0

621,256

1031\de-DE\Utils.resources.dll

4.1.3415.0

735,944

1031\de-DE\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1036\fr-FR\CloudBackupActivationWizard.resources.dll

4.1.3415.0

105,160

1036\fr-FR\ConfigurationPage.resources.dll

4.1.3415.0

383,688

1036\fr-FR\DataProtectionWizard.resources.dll

4.1.3415.0

1,157,832

1036\fr-FR\ManagedContainer.resources.dll

4.1.3415.0

236,232

1036\fr-FR\ProtectionView.resources.dll

4.1.3415.0

621,256

1036\fr-FR\Utils.resources.dll

4.1.3415.0

727,752

1036\fr-FR\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1038\hu-HU\CloudBackupActivationWizard.resources.dll

4.1.3415.0

105,160

1038\hu-HU\ConfigurationPage.resources.dll

4.1.3415.0

383,688

1038\hu-HU\DataProtectionWizard.resources.dll

4.1.3415.0

1,161,928

1038\hu-HU\ManagedContainer.resources.dll

4.1.3415.0

236,232

1038\hu-HU\ProtectionView.resources.dll

4.1.3415.0

621,256

1038\hu-HU\Utils.resources.dll

4.1.3415.0

752,328

1038\hu-HU\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1040\it-IT\CloudBackupActivationWizard.resources.dll

4.1.3415.0

105,160

1040\it-IT\ConfigurationPage.resources.dll

4.1.3415.0

383,688

1040\it-IT\DataProtectionWizard.resources.dll

4.1.3415.0

1,153,736

1040\it-IT\ManagedContainer.resources.dll

4.1.3415.0

236,232

1040\it-IT\ProtectionView.resources.dll

4.1.3415.0

621,256

1040\it-IT\Utils.resources.dll

4.1.3415.0

694,984

1040\it-IT\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1041\ja-JP\CloudBackupActivationWizard.resources.dll

4.1.3415.0

105,160

1041\ja-JP\ConfigurationPage.resources.dll

4.1.3415.0

387,784

1041\ja-JP\DataProtectionWizard.resources.dll

4.1.3415.0

1,166,024

1041\ja-JP\ManagedContainer.resources.dll

4.1.3415.0

228,040

1041\ja-JP\ProtectionView.resources.dll

4.1.3415.0

625,352

1041\ja-JP\Utils.resources.dll

4.1.3415.0

830,152

1041\ja-JP\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1042\ko-KR\CloudBackupActivationWizard.resources.dll

4.1.3415.0

101,064

1042\ko-KR\ConfigurationPage.resources.dll

4.1.3415.0

383,688

1042\ko-KR\DataProtectionWizard.resources.dll

4.1.3415.0

1,153,736

1042\ko-KR\ManagedContainer.resources.dll

4.1.3415.0

236,232

1042\ko-KR\ProtectionView.resources.dll

4.1.3415.0

621,256

1042\ko-KR\Utils.resources.dll

4.1.3415.0

727,752

1042\ko-KR\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1043\nl-NL\CloudBackupActivationWizard.resources.dll

4.1.3415.0

105,160

1043\nl-NL\ConfigurationPage.resources.dll

4.1.3415.0

379,592

1043\nl-NL\DataProtectionWizard.resources.dll

4.1.3415.0

1,153,736

1043\nl-NL\ManagedContainer.resources.dll

4.1.3415.0

236,232

1043\nl-NL\ProtectionView.resources.dll

4.1.3415.0

621,256

1043\nl-NL\Utils.resources.dll

4.1.3415.0

662,216

1043\nl-NL\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1045\pl-PL\CloudBackupActivationWizard.resources.dll

4.1.3415.0

105,160

1045\pl-PL\ConfigurationPage.resources.dll

4.1.3415.0

379,592

1045\pl-PL\DataProtectionWizard.resources.dll

4.1.3415.0

1,157,832

1045\pl-PL\ManagedContainer.resources.dll

4.1.3415.0

236,232

1045\pl-PL\ProtectionView.resources.dll

4.1.3415.0

621,256

1045\pl-PL\Utils.resources.dll

4.1.3415.0

723,656

1045\pl-PL\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1046\pt-BR\CloudBackupActivationWizard.resources.dll

4.1.3415.0

105,160

1046\pt-BR\ConfigurationPage.resources.dll

4.1.3415.0

379,592

1046\pt-BR\DataProtectionWizard.resources.dll

4.1.3415.0

1,157,832

1046\pt-BR\ManagedContainer.resources.dll

4.1.3415.0

236,232

1046\pt-BR\ProtectionView.resources.dll

4.1.3415.0

621,256

1046\pt-BR\Utils.resources.dll

4.1.3415.0

686,792

1046\pt-BR\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1049\ru-RU\CloudBackupActivationWizard.resources.dll

4.1.3415.0

105,160

1049\ru-RU\ConfigurationPage.resources.dll

4.1.3415.0

391,880

1049\ru-RU\DataProtectionWizard.resources.dll

4.1.3415.0

1,182,408

1049\ru-RU\ManagedContainer.resources.dll

4.1.3415.0

236,232

1049\ru-RU\ProtectionView.resources.dll

4.1.3415.0

633,544

1049\ru-RU\Utils.resources.dll

4.1.3415.0

1,034,952

1049\ru-RU\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1053\sv-SE\CloudBackupActivationWizard.resources.dll

4.1.3415.0

105,160

1053\sv-SE\ConfigurationPage.resources.dll

4.1.3415.0

379,592

1053\sv-SE\DataProtectionWizard.resources.dll

4.1.3415.0

1,153,736

1053\sv-SE\ManagedContainer.resources.dll

4.1.3415.0

236,232

1053\sv-SE\ProtectionView.resources.dll

4.1.3415.0

621,256

1053\sv-SE\Utils.resources.dll

4.1.3415.0

658,120

1053\sv-SE\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1055\tr-TR\CloudBackupActivationWizard.resources.dll

4.1.3415.0

101,064

1055\tr-TR\ConfigurationPage.resources.dll

4.1.3415.0

379,592

1055\tr-TR\DataProtectionWizard.resources.dll

4.1.3415.0

1,153,736

1055\tr-TR\ManagedContainer.resources.dll

4.1.3415.0

236,232

1055\tr-TR\ProtectionView.resources.dll

4.1.3415.0

621,256

1055\tr-TR\Utils.resources.dll

4.1.3415.0

678,600

1055\tr-TR\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

2052\zh-CN\CloudBackupActivationWizard.resources.dll

4.1.3415.0

101,064

2052\zh-CN\ConfigurationPage.resources.dll

4.1.3415.0

379,592

2052\zh-CN\DataProtectionWizard.resources.dll

4.1.3415.0

1,145,544

2052\zh-CN\ManagedContainer.resources.dll

4.1.3415.0

236,232

2052\zh-CN\ProtectionView.resources.dll

4.1.3415.0

613,064

2052\zh-CN\Utils.resources.dll

4.1.3415.0

572,104

2052\zh-CN\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

2070\pt-PT\CloudBackupActivationWizard.resources.dll

4.1.3415.0

105,160

2070\pt-PT\ConfigurationPage.resources.dll

4.1.3415.0

379,592

2070\pt-PT\DataProtectionWizard.resources.dll

4.1.3415.0

1,157,832

2070\pt-PT\ManagedContainer.resources.dll

4.1.3415.0

236,232

2070\pt-PT\ProtectionView.resources.dll

4.1.3415.0

621,256

2070\pt-PT\Utils.resources.dll

4.1.3415.0

703,176

2070\pt-PT\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

3076\zh-HK\CloudBackupActivationWizard.resources.dll

4.1.3415.0

101,064

3076\zh-HK\ConfigurationPage.resources.dll

4.1.3415.0

375,496

3076\zh-HK\DataProtectionWizard.resources.dll

4.1.3415.0

1,145,544

3076\zh-HK\ManagedContainer.resources.dll

4.1.3415.0

236,232

3076\zh-HK\ProtectionView.resources.dll

4.1.3415.0

617,160

3076\zh-HK\Utils.resources.dll

4.1.3415.0

584,392

3076\zh-HK\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

3082\es-ES\CloudBackupActivationWizard.resources.dll

4.1.3415.0

105,160

3082\es-ES\ConfigurationPage.resources.dll

4.1.3415.0

379,592

3082\es-ES\DataProtectionWizard.resources.dll

4.1.3415.0

1,157,832

3082\es-ES\InstallAgentsWizard.resources.dll

4.1.3415.0

264,904

3082\es-ES\ManagedContainer.resources.dll

4.1.3415.0

236,232

3082\es-ES\ProtectionView.resources.dll

4.1.3415.0

621,256

3082\es-ES\Utils.resources.dll

4.1.3415.0

719,560

3082\es-ES\ViewAdhocJobs.resources.dll

4.1.3415.0

47,816

1028\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1029\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1031\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1033\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1036\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1038\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1040\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1041\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1042\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1043\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1045\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1046\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1049\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1053\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

1055\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

2052\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

2070\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

3076\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

3082\ObjectModelCmdlet.dll-Help.xml

4.1.3415.0

1,222,388

Files that are changed

File Size

Version

AdtPerf.dll

78,552 bytes

7.0.9538.1069

AdtServer.exe

101,080 bytes

7.0.9538.1069

AdtSrvDll.dll

480,472 bytes

7.0.9538.1069

AdvisorConnector.dll

315,608 bytes

7.0.9538.1068

ClientShared.dll

192,728 bytes

7.0.9538.1068

ConnectorBridge_x64.dll

78,552 bytes

7.0.9538.1068

/amd64/HealthServiceRuntime.dll

319,192 bytes

7.0.9538.1068

/ia64/HealthServiceRuntime.dll

753,880 bytes

7.0.9538.1068

/x86/HealthServiceRuntime.dll

254,680 bytes

7.0.9538.1068

Microsoft.EnterpriseManagement.Management.DataProviders.dll

589,016 bytes

7.0.9538.1068

Microsoft.EnterpriseManagement.Modules.PowerShell.dll

88,792 bytes

7.0.9538.1068

Microsoft.EnterpriseManagement.Monitoring.Components.dll

1,135,832 bytes

7.0.9538.1068

/Silverlight/Microsoft.EnterpriseManagement.Monitoring.Components.dll

829,656 bytes)

7.0.9538.1068

Microsoft.EnterpriseManagement.Monitoring.Console.exe

4,666,584 bytes

7.0.9538.1068

Microsoft.EnterpriseManagement.Monitoring.DataProviders.dll

415,960 bytes

7.0.9538.1068

Microsoft.EnterpriseManagement.OperationsManager.MonitoringViews.dll

1,810,136 bytes

7.0.9538.1068

Microsoft.EnterpriseManagement.Presentation.Controls.dll

1,772,760 bytes

7.0.9538.1068

/Silverlight/Microsoft.EnterpriseManagement.Presentation.Controls.dll

1,639,640 bytes

7.0.9538.1068

Microsoft.EnterpriseManagement.Presentation.Core.dll

496,856 bytes

7.0.9538.1068

/Silverlight/Microsoft.EnterpriseManagement.Presentation.Core.dll

303,320 bytes

7.0.9538.1068

Microsoft.EnterpriseManagement.Presentation.DataProviders.Library.dll

108,248 bytes

7.0.9538.1068

Microsoft.EnterpriseManagement.Presentation.WebConsole.dll

98,520 bytes

7.0.9538.1068

Microsoft.EnterpriseManagement.RuntimeService.dll

395,992 bytes

7.0.9538.1068

Microsoft.EnterpriseManagement.UI.Administration.dll

4,467,416 bytes

7.0.9538.1068

Microsoft.EnterpriseManagement.UI.Authoring.dll

9,906,904 bytes

7.0.9538.1068

Microsoft.EnterpriseManagement.UI.ConsoleFramework.dll

2,809,560 bytes

7.0.9538.1068

Microsoft.ManagementServices.AppDiagnostics.IntelliTraceConvertor.dll

70,360 bytes

7.0.9538.1068

Microsoft.Mom.Modules.ClientMonitoring.dll

457,432 bytes

7.0.9538.1068

/amd64/Microsoft.Mom.ServiceCommon.dll

27,864 bytes

7.0.9538.1068

/x86/Microsoft.Mom.ServiceCommon.dll

24,792 bytes

7.0.9538.1068

/ia64/Microsoft.Mom.ServiceCommon.dll

52,440 bytes

7.0.9538.1068

Microsoft.MOM.UI.Components.dll

6,142,680 bytes

7.0.9538.1068

Microsoft.SystemCenter.OperationsManagerV10.Commands.dll

647,384 bytes

7.0.9538.1068

MOMAdvisorMsgs.dll

31,448 bytes

7.0.9538.1068

/amd64/MOMAgentInstaller.exe

365,272 bytes

7.0.9538.1068

/x86/MOMAgentInstaller.exe

337,112 bytes

7.0.9538.1068

/ia64/MOMAgentInstaller.exe

634,584 bytes

7.0.9538.1068

/amd64/MOMAgentInstallerPS.dll

52,952 bytes

7.0.9538.1068

/x86/MOMAgentInstallerPS.dll

46,296 bytes

7.0.9538.1068

/ia64/MOMAgentInstallerPS.dll

101,592 bytes

7.0.9538.1068

/amd64/MOMModules.dll

2,609,368 bytes

7.0.9538.1068

/x86/MOMModules.dll

2,006,232 bytes

7.0.9538.1068

/ia64/MOMModules.dll

5,704,408 bytes

7.0.9538.1068

/amd64/MOMPerfSnapshotHelper.exe

50,392 bytes

7.0.9538.1068

/x86/MOMPerfSnapshotHelper.exe

41,176 bytes

7.0.9538.1068

/ia64/MOMPerfSnapshotHelper.exe

100,568 bytes

7.0.9538.1068

/amd64/MOMPerfSnapshotHelperProxy.dll

18,648 bytes

7.0.9538.1068

/x86/MOMPerfSnapshotHelperProxy.dll

16,600 bytes

7.0.9538.1068

/ia64/MOMPerfSnapshotHelperProxy.dll

24,792 bytes

7.0.9538.1068

OMTraceTMFVer.Dll

7.0.9538.1068

OMVersion.dll

8,920 bytes

7.0.9538.1068

OpsMgrTraceTMFVer.Dll

7.0.9538.1068

/amd64/silverlightclientconfiguration.exe

3,598,552 bytes

7.0.9538.1068

/x86/silverlightclientconfiguration.exe

3,577,560 bytes

7.0.9538.1068

/ia64/silverlightclientconfiguration.exe

3,577,560 bytes

7.0.9538.1068

/amd64/TraceFmtSM.exe

447,192 bytes

7.0.9538.1068

/x86/TraceFmtSM.exe

372,952 bytes

7.0.9538.1068

/ia64/TraceFmtSM.exe

665,304 bytes

7.0.9538.1068

/amd64/TraceLogSM.exe

107,224 bytes

7.0.9538.1068

/x86/TraceLogSM.exe

95,448 bytes

7.0.9538.1068

/ia64/TraceLogSM.exe

223,960 bytes

7.0.9538.1068

AdtAgent.exe

408,264 bytes

7.0.9538.1047

ConnectorBridge_x86.dll

106,496 bytes

7.0.9538.1047

DashboardViewer.xap

413,2864 bytes

Not applicable

Microsoft.Deployment.Compression.Cab.dll

49,152 bytes

3.5.2519.0

Microsoft.Deployment.Compression.dll

36,864 bytes

3.5.2519.0

Microsoft.EnterpriseManagement.Core.dll

404,6848 bytes

7.5.2905.103

Microsoft.SystemCenter.IntelliTraceProfiling.mpb

131,072 bytes

Not applicable

MomAdvisorMsg.dll

28,672 bytes

7.0.9538.1047

MonitoringPortal.xap

419,8400 bytes

Not applicable

32-bit version
 

Files that are changed

File size

Version

Language ID

AxVMwareRemoteConsoleTypeLib.dll

31488

5.1.0.0

Engine.Common.dll

204072

3.1.6027.0

Engine.Deployment.dll

548648

3.1.6027.0

Errors.dll

3849000

3.1.6027.0

Errors.resources.dll

1327400

3.1.6027.0

2052

Errors.resources.dll

1646888

3.1.6027.0

1036

Errors.resources.dll

1674536

3.1.6027.0

1031

Errors.resources.dll

1554216

3.1.6027.0

1040

Errors.resources.dll

1841448

3.1.6027.0

1041

Errors.resources.dll

1561384

3.1.6027.0

1046

Errors.resources.dll

2202408

3.1.6027.0

1049

Errors.resources.dll

1603368

3.1.6027.0

3082

Errors.resources.dll

1345840

3.1.6027.0

1028

Errors.resources.dll

1634600

3.1.6027.0

1042

Errors.resources.dll

1345840

3.1.6027.0

3076

Errors.resources.dll

1556264

3.1.6027.0

1029

Errors.resources.dll

1526568

3.1.6027.0

1043

Errors.resources.dll

1685800

3.1.6027.0

1038

Errors.resources.dll

1610536

3.1.6027.0

1045

Errors.resources.dll

1578792

3.1.6027.0

2070

Errors.resources.dll

1494312

3.1.6027.0

1053

Errors.resources.dll

1513264

3.1.6027.0

1055

ImgLibEngine.dll

3146024

3.1.6027.0

Microsoft.SystemCenter.VirtualMachineManager.dll

1796392

3.1.6027.0

Microsoft.SystemCenter.VirtualMachineManger.PowerShell.CmdletWrappers.dll

1494696

3.1.6018.0

Microsoft.VirtualManager.UI.AddIns.Management.dll

96424

3.1.6018.0

Microsoft.VirtualManager.UI.Dialogs.dll

2944304

3.1.6027.0

Microsoft.VirtualManager.UI.Dialogs.resources.dll

963888

3.1.6027.0

2052

Microsoft.VirtualManager.UI.Dialogs.resources.dll

995624

3.1.6027.0

1036

Microsoft.VirtualManager.UI.Dialogs.resources.dll

989488

3.1.6027.0

1031

Microsoft.VirtualManager.UI.Dialogs.resources.dll

985896

3.1.6027.0

1040

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1006384

3.1.6027.0

1041

Microsoft.VirtualManager.UI.Dialogs.resources.dll

986928

3.1.6027.0

1046

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1053480

3.1.6027.0

1049

Microsoft.VirtualManager.UI.Dialogs.resources.dll

989992

3.1.6027.0

3082

Microsoft.VirtualManager.UI.Dialogs.resources.dll

965416

3.1.6027.0

1028

Microsoft.VirtualManager.UI.Dialogs.resources.dll

987432

3.1.6027.0

1042

Microsoft.VirtualManager.UI.Dialogs.resources.dll

965416

3.1.6027.0

3076

Microsoft.VirtualManager.UI.Dialogs.resources.dll

988456

3.1.6027.0

1029

Microsoft.VirtualManager.UI.Dialogs.resources.dll

983336

3.1.6027.0

1043

Microsoft.VirtualManager.UI.Dialogs.resources.dll

995112

3.1.6027.0

1038

Microsoft.VirtualManager.UI.Dialogs.resources.dll

986928

3.1.6027.0

1045

Microsoft.VirtualManager.UI.Dialogs.resources.dll

988464

3.1.6027.0

2070

Microsoft.VirtualManager.UI.Dialogs.resources.dll

979240

3.1.6027.0

1053

Microsoft.VirtualManager.UI.Dialogs.resources.dll

982312

3.1.6027.0

1055

Microsoft.VirtualManager.UI.HardwareProperties.dll

707368

3.1.6027.0

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

452904

3.1.6027.0

2052

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

456488

3.1.6027.0

1036

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

459560

3.1.6027.0

1031

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

457008

3.1.6027.0

1040

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

457000

3.1.6027.0

1041

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

460584

3.1.6027.0

1046

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

467760

3.1.6027.0

1049

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

457008

3.1.6027.0

3082

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

453416

3.1.6027.0

1028

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

454952

3.1.6027.0

1042

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

453416

3.1.6027.0

3076

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

455464

3.1.6027.0

1029

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

459560

3.1.6027.0

1043

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

455976

3.1.6027.0

1038

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

454952

3.1.6027.0

1045

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

455464

3.1.6027.0

2070

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

459048

3.1.6027.0

1053

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

459560

3.1.6027.0

1055

Microsoft.VirtualManager.UI.NewVmWizard.dll

817960

3.1.6027.0

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

551216

3.1.6027.0

2052

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

559920

3.1.6027.0

1036

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

561448

3.1.6027.0

1031

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

559408

3.1.6027.0

1040

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

559912

3.1.6027.0

1041

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

562984

3.1.6027.0

1046

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

573232

3.1.6027.0

1049

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

559400

3.1.6027.0

3082

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

552752

3.1.6027.0

1028

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

555304

3.1.6027.0

1042

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

552744

3.1.6027.0

3076

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

555816

3.1.6027.0

1029

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

562984

3.1.6027.0

1043

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

556336

3.1.6027.0

1038

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

555304

3.1.6027.0

1045

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

555304

3.1.6027.0

2070

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

561960

3.1.6027.0

1053

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

561968

3.1.6027.0

1055

Microsoft.VirtualManager.UI.Pages.Datacenter.dll

2929960

3.1.6027.0

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1076016

3.1.6027.0

2052

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1104680

3.1.6027.0

1036

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1098032

3.1.6027.0

1031

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1094960

3.1.6027.0

1040

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1112872

3.1.6027.0

1041

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1095464

3.1.6027.0

1046

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1154864

3.1.6027.0

1049

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1098544

3.1.6027.0

3082

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1078576

3.1.6027.0

1028

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1095464

3.1.6027.0

1042

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1078568

3.1.6027.0

3076

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1098024

3.1.6027.0

1029

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1092392

3.1.6027.0

1043

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1102120

3.1.6027.0

1038

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1095984

3.1.6027.0

1045

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1098024

3.1.6027.0

2070

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1090344

3.1.6027.0

1053

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1093416

3.1.6027.0

1055

Microsoft.VirtualManager.UI.Pages.Settings.dll

168240

3.1.6027.0

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

84784

3.1.6027.0

2052

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86824

3.1.6027.0

1036

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

1031

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

1040

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86824

3.1.6027.0

1041

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

1046

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

88872

3.1.6027.0

1049

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

3082

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

84776

3.1.6027.0

1028

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

85800

3.1.6027.0

1042

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

84776

3.1.6027.0

3076

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

1029

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

1043

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

1038

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

85800

3.1.6027.0

1045

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

85808

3.1.6027.0

2070

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

85800

3.1.6027.0

1053

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

85808

3.1.6027.0

1055

Microsoft.VirtualManager.UI.VMWizards.dll

213160

3.1.6018.0

Microsoft.VirtualManager.UI.VMWizards.resources.dll

65728

3.1.6018.0

2052

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67752

3.1.6018.0

1036

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67264

3.1.6018.0

1031

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67776

3.1.6018.0

1040

Microsoft.VirtualManager.UI.VMWizards.resources.dll

68288

3.1.6018.0

1041

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67264

3.1.6018.0

1046

Microsoft.VirtualManager.UI.VMWizards.resources.dll

71352

3.1.6018.0

1049

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67240

3.1.6018.0

3082

Microsoft.VirtualManager.UI.VMWizards.resources.dll

65704

3.1.6018.0

1028

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67240

3.1.6018.0

1042

Microsoft.VirtualManager.UI.VMWizards.resources.dll

65704

3.1.6018.0

3076

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67776

3.1.6018.0

1029

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67240

3.1.6018.0

1043

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67776

3.1.6018.0

1038

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67240

3.1.6018.0

1045

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67240

3.1.6018.0

2070

Microsoft.VirtualManager.UI.VMWizards.resources.dll

66728

3.1.6018.0

1053

Microsoft.VirtualManager.UI.VMWizards.resources.dll

66752

3.1.6018.0

1055

Remoting.dll

832296

3.1.6027.0

Supplemental Notices for SC 2012 SP1 - Virtual Machine Manager Update Rollup 3.docx

26067

TraceWrapper.dll

67880

3.1.6027.0

Utils.dll

751912

3.1.6027.0

Utils.resources.dll

88360

3.1.6027.0

2052

Utils.resources.dll

91432

3.1.6027.0

1036

Utils.resources.dll

90920

3.1.6027.0

1031

Utils.resources.dll

91944

3.1.6027.0

1040

Utils.resources.dll

95528

3.1.6027.0

1041

Utils.resources.dll

92456

3.1.6027.0

1046

Utils.resources.dll

106792

3.1.6027.0

1049

Utils.resources.dll

92968

3.1.6027.0

3082

Utils.resources.dll

88360

3.1.6027.0

1028

Utils.resources.dll

91432

3.1.6027.0

1042

Utils.resources.dll

88368

3.1.6027.0

3076

Utils.resources.dll

92968

3.1.6027.0

1029

Utils.resources.dll

90408

3.1.6027.0

1043

Utils.resources.dll

92456

3.1.6027.0

1038

Utils.resources.dll

92456

3.1.6027.0

1045

Utils.resources.dll

92456

3.1.6027.0

2070

Utils.resources.dll

89904

3.1.6027.0

1053

Utils.resources.dll

91440

3.1.6027.0

1055

VirtualizationInterfaces.dll

86696

3.1.6018.0

VMConsoleLib.dll

58624

3.1.6020.0

VMWareImplementation.dll

2052392

3.1.6027.0

VMwareRemoteConsoleTypeLib.dll

48896

5.1.0.0

VMwareViewer.exe

26880

3.1.6020.0

VSImplementation.dll

99496

3.1.6018.0

WSManAutomation.dll

35112

3.1.6027.0

WsManWrappers.dll

3209000

3.1.6027.0


64-bit version
 

Files that are changed

File size

Version

Language ID

AxVMwareRemoteConsoleTypeLib.dll

31488

5.1.0.0

Engine.Common.dll

204072

3.1.6027.0

Engine.Deployment.dll

548648

3.1.6027.0

Errors.dll

3849000

3.1.6027.0

Errors.resources.dll

1327408

3.1.6027.0

2052

Errors.resources.dll

1646888

3.1.6027.0

1036

Errors.resources.dll

1674536

3.1.6027.0

1031

Errors.resources.dll

1554224

3.1.6027.0

1040

Errors.resources.dll

1841456

3.1.6027.0

1041

Errors.resources.dll

1561384

3.1.6027.0

1046

Errors.resources.dll

2202416

3.1.6027.0

1049

Errors.resources.dll

1603376

3.1.6027.0

3082

Errors.resources.dll

1345832

3.1.6027.0

1028

Errors.resources.dll

1634600

3.1.6027.0

1042

Errors.resources.dll

1345832

3.1.6027.0

3076

Errors.resources.dll

1556264

3.1.6027.0

1029

Errors.resources.dll

1526568

3.1.6027.0

1043

Errors.resources.dll

1685800

3.1.6027.0

1038

Errors.resources.dll

1610536

3.1.6027.0

1045

Errors.resources.dll

1578792

3.1.6027.0

2070

Errors.resources.dll

1494320

3.1.6027.0

1053

Errors.resources.dll

1513264

3.1.6027.0

1055

ImgLibEngine.dll

3146024

3.1.6027.0

Microsoft.SystemCenter.VirtualMachineManager.dll

1796400

3.1.6027.0

Microsoft.SystemCenter.VirtualMachineManger.PowerShell.CmdletWrappers.dll

1494720

3.1.6018.0

Microsoft.VirtualManager.UI.AddIns.Management.dll

96424

3.1.6018.0

Microsoft.VirtualManager.UI.Dialogs.dll

2944296

3.1.6027.0

Microsoft.VirtualManager.UI.Dialogs.resources.dll

963880

3.1.6027.0

2052

Microsoft.VirtualManager.UI.Dialogs.resources.dll

995624

3.1.6027.0

1036

Microsoft.VirtualManager.UI.Dialogs.resources.dll

989480

3.1.6027.0

1031

Microsoft.VirtualManager.UI.Dialogs.resources.dll

985896

3.1.6027.0

1040

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1006376

3.1.6027.0

1041

Microsoft.VirtualManager.UI.Dialogs.resources.dll

986920

3.1.6027.0

1046

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1053480

3.1.6027.0

1049

Microsoft.VirtualManager.UI.Dialogs.resources.dll

989992

3.1.6027.0

3082

Microsoft.VirtualManager.UI.Dialogs.resources.dll

965416

3.1.6027.0

1028

Microsoft.VirtualManager.UI.Dialogs.resources.dll

987432

3.1.6027.0

1042

Microsoft.VirtualManager.UI.Dialogs.resources.dll

965416

3.1.6027.0

3076

Microsoft.VirtualManager.UI.Dialogs.resources.dll

988456

3.1.6027.0

1029

Microsoft.VirtualManager.UI.Dialogs.resources.dll

983336

3.1.6027.0

1043

Microsoft.VirtualManager.UI.Dialogs.resources.dll

995112

3.1.6027.0

1038

Microsoft.VirtualManager.UI.Dialogs.resources.dll

986920

3.1.6027.0

1045

Microsoft.VirtualManager.UI.Dialogs.resources.dll

988456

3.1.6027.0

2070

Microsoft.VirtualManager.UI.Dialogs.resources.dll

979240

3.1.6027.0

1053

Microsoft.VirtualManager.UI.Dialogs.resources.dll

982312

3.1.6027.0

1055

Microsoft.VirtualManager.UI.HardwareProperties.dll

707368

3.1.6027.0

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

452904

3.1.6027.0

2052

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

456488

3.1.6027.0

1036

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

459560

3.1.6027.0

1031

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

457000

3.1.6027.0

1040

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

457000

3.1.6027.0

1041

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

460584

3.1.6027.0

1046

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

467752

3.1.6027.0

1049

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

457000

3.1.6027.0

3082

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

453416

3.1.6027.0

1028

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

454952

3.1.6027.0

1042

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

453416

3.1.6027.0

3076

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

455464

3.1.6027.0

1029

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

459560

3.1.6027.0

1043

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

455976

3.1.6027.0

1038

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

454952

3.1.6027.0

1045

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

455464

3.1.6027.0

2070

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

459048

3.1.6027.0

1053

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

459560

3.1.6027.0

1055

Microsoft.VirtualManager.UI.NewVmWizard.dll

817960

3.1.6027.0

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

551208

3.1.6027.0

2052

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

559912

3.1.6027.0

1036

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

561456

3.1.6027.0

1031

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

559400

3.1.6027.0

1040

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

559912

3.1.6027.0

1041

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

562984

3.1.6027.0

1046

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

573224

3.1.6027.0

1049

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

559400

3.1.6027.0

3082

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

552744

3.1.6027.0

1028

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

555304

3.1.6027.0

1042

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

552744

3.1.6027.0

3076

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

555816

3.1.6027.0

1029

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

562984

3.1.6027.0

1043

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

556328

3.1.6027.0

1038

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

555304

3.1.6027.0

1045

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

555312

3.1.6027.0

2070

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

561960

3.1.6027.0

1053

Microsoft.VirtualManager.UI.NewVmWizard.resources.dll

561960

3.1.6027.0

1055

Microsoft.VirtualManager.UI.Pages.Datacenter.dll

2929960

3.1.6027.0

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1076008

3.1.6027.0

2052

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1104680

3.1.6027.0

1036

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1098032

3.1.6027.0

1031

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1094952

3.1.6027.0

1040

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1112872

3.1.6027.0

1041

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1095464

3.1.6027.0

1046

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1154856

3.1.6027.0

1049

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1098536

3.1.6027.0

3082

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1078568

3.1.6027.0

1028

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1095464

3.1.6027.0

1042

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1078568

3.1.6027.0

3076

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1098024

3.1.6027.0

1029

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1092392

3.1.6027.0

1043

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1102120

3.1.6027.0

1038

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1095976

3.1.6027.0

1045

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1098024

3.1.6027.0

2070

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1090344

3.1.6027.0

1053

Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll

1093416

3.1.6027.0

1055

Microsoft.VirtualManager.UI.Pages.Settings.dll

168232

3.1.6027.0

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

84776

3.1.6027.0

2052

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86824

3.1.6027.0

1036

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

1031

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

1040

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86824

3.1.6027.0

1041

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

1046

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

88872

3.1.6027.0

1049

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

3082

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

84776

3.1.6027.0

1028

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

85800

3.1.6027.0

1042

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

84776

3.1.6027.0

3076

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

1029

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

1043

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

86312

3.1.6027.0

1038

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

85800

3.1.6027.0

1045

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

85800

3.1.6027.0

2070

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

85800

3.1.6027.0

1053

Microsoft.VirtualManager.UI.Pages.Settings.resources.dll

85800

3.1.6027.0

1055

Microsoft.VirtualManager.UI.VMWizards.dll

213160

3.1.6018.0

Microsoft.VirtualManager.UI.VMWizards.resources.dll

65720

3.1.6018.0

2052

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67776

3.1.6018.0

1036

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67264

3.1.6018.0

1031

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67776

3.1.6018.0

1040

Microsoft.VirtualManager.UI.VMWizards.resources.dll

68264

3.1.6018.0

1041

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67264

3.1.6018.0

1046

Microsoft.VirtualManager.UI.VMWizards.resources.dll

71336

3.1.6018.0

1049

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67240

3.1.6018.0

3082

Microsoft.VirtualManager.UI.VMWizards.resources.dll

65704

3.1.6018.0

1028

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67240

3.1.6018.0

1042

Microsoft.VirtualManager.UI.VMWizards.resources.dll

65704

3.1.6018.0

3076

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67752

3.1.6018.0

1029

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67240

3.1.6018.0

1043

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67752

3.1.6018.0

1038

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67264

3.1.6018.0

1045

Microsoft.VirtualManager.UI.VMWizards.resources.dll

67240

3.1.6018.0

2070

Microsoft.VirtualManager.UI.VMWizards.resources.dll

66728

3.1.6018.0

1053

Microsoft.VirtualManager.UI.VMWizards.resources.dll

66728

3.1.6018.0

1055

Remoting.dll

832296

3.1.6027.0

Supplemental Notices for SC 2012 SP1 - Virtual Machine Manager Update Rollup 3.docx

26067

TraceWrapper.dll

67880

3.1.6027.0

Utils.dll

751912

3.1.6027.0

Utils.resources.dll

88360

3.1.6027.0

2052

Utils.resources.dll

91432

3.1.6027.0

1036

Utils.resources.dll

90928

3.1.6027.0

1031

Utils.resources.dll

91944

3.1.6027.0

1040

Utils.resources.dll

95536

3.1.6027.0

1041

Utils.resources.dll

92456

3.1.6027.0

1046

Utils.resources.dll

106800

3.1.6027.0

1049

Utils.resources.dll

92968

3.1.6027.0

3082

Utils.resources.dll

88360

3.1.6027.0

1028

Utils.resources.dll

91440

3.1.6027.0

1042

Utils.resources.dll

88368

3.1.6027.0

3076

Utils.resources.dll

92968

3.1.6027.0

1029

Utils.resources.dll

90408

3.1.6027.0

1043

Utils.resources.dll

92456

3.1.6027.0

1038

Utils.resources.dll

92464

3.1.6027.0

1045

Utils.resources.dll

92456

3.1.6027.0

2070

Utils.resources.dll

89904

3.1.6027.0

1053

Utils.resources.dll

91432

3.1.6027.0

1055

VirtualizationInterfaces.dll

86696

3.1.6018.0

VMConsoleLib.dll

58640

3.1.6020.0

VMWareImplementation.dll

2052400

3.1.6027.0

VMwareRemoteConsoleTypeLib.dll

48896

5.1.0.0

VMwareViewer.exe

26880

3.1.6020.0

VSImplementation.dll

99520

3.1.6018.0

WSManAutomation.dll

35112

3.1.6027.0

WsManWrappers.dll

3209000

3.1.6027.0

Files that are changed

File size

Version

Language ID

Engine.Adhc.Operations.dll

1065768

3.1.6027.0

Engine.BitBos.dll

235816

3.1.6027.0

Engine.Common.dll

204072

3.1.6027.0

Engine.Deployment.dll

548648

3.1.6027.0

Engine.IndigoAccessLayer.dll

383760

3.1.6020.0

Engine.Placement.dll

260904

3.1.6027.0

Engine.Placement.ResourceModel.dll

307496

3.1.6027.0

Engine.VmOperations.dll

1135400

3.1.6027.0

Errors.dll

3849000

3.1.6027.0

Errors.resources.dll

1327400

3.1.6027.0

2052

Errors.resources.dll

1646888

3.1.6027.0

1036

Errors.resources.dll

1674536

3.1.6027.0

1031

Errors.resources.dll

1554216

3.1.6027.0

1040

Errors.resources.dll

1841448

3.1.6027.0

1041

Errors.resources.dll

1561384

3.1.6027.0

1046

Errors.resources.dll

2202408

3.1.6027.0

1049

Errors.resources.dll

1603368

3.1.6027.0

3082

Errors.resources.dll

1345832

3.1.6027.0

1028

Errors.resources.dll

1634600

3.1.6027.0

1042

Errors.resources.dll

1345832

3.1.6027.0

3076

Errors.resources.dll

1556264

3.1.6027.0

1029

Errors.resources.dll

1526568

3.1.6027.0

1043

Errors.resources.dll

1685800

3.1.6027.0

1038

Errors.resources.dll

1610536

3.1.6027.0

1045

Errors.resources.dll

1578792

3.1.6027.0

2070

Errors.resources.dll

1494312

3.1.6027.0

1053

Errors.resources.dll

1513256

3.1.6027.0

1055

GoalState.dll

58664

3.1.6027.0

ImgLibEngine.dll

3146024

3.1.6027.0

msiInstaller.dat

12

msiInstaller.exe

275112

3.1.6011.0

msiInstaller.exe

327856

3.1.6011.0

Remoting.dll

832296

3.1.6027.0

Supplemental Notices for SC 2012 SP1 - Virtual Machine Manager Update Rollup 3.docx

26067

TraceWrapper.dll

67880

3.1.6027.0

Utils.dll

751912

3.1.6027.0

Utils.resources.dll

88360

3.1.6027.0

2052

Utils.resources.dll

91432

3.1.6027.0

1036

Utils.resources.dll

90920

3.1.6027.0

1031

Utils.resources.dll

91944

3.1.6027.0

1040

Utils.resources.dll

95528

3.1.6027.0

1041

Utils.resources.dll

92456

3.1.6027.0

1046

Utils.resources.dll

106792

3.1.6027.0

1049

Utils.resources.dll

92968

3.1.6027.0

3082

Utils.resources.dll

88360

3.1.6027.0

1028

Utils.resources.dll

91432

3.1.6027.0

1042

Utils.resources.dll

88360

3.1.6027.0

3076

Utils.resources.dll

92968

3.1.6027.0

1029

Utils.resources.dll

90408

3.1.6027.0

1043

Utils.resources.dll

92456

3.1.6027.0

1038

Utils.resources.dll

92456

3.1.6027.0

1045

Utils.resources.dll

92456

3.1.6027.0

2070

Utils.resources.dll

89896

3.1.6027.0

1053

Utils.resources.dll

91432

3.1.6027.0

1055

ViridianImplementation.dll

218920

3.1.6027.0

ViridianImplementationV2.dll

360232

3.1.6027.0

VirtualizationInterfaces.dll

86696

3.1.6018.0

VMGuestAgent.iso

126812160

vmmAgent.exe

6113064

3.1.6027.0

vmmAgent.msi

6983680

vmmAgent.msi

7950336

vmmGuestAgent.msi

2674688

vmmGuestAgent.msi

2760704

vmmservice.exe

46376

3.1.6027.0

VMWareImplementation.dll

2052392

3.1.6027.0

VSImplementation.dll

99520

3.1.6018.0

WSManAutomation.dll

35112

3.1.6027.0

WsManMIWrappers.dll

133824

3.1.6018.0

WsManWrappers.dll

3209000

3.1.6027.0

XenImplementation.dll

173248

3.1.6018.0

32-bit version

Files that are changed

File size

Version

Errors.dll

3849000

3.1.6027.0

gceManagement.dll

171816

3.1.6027.0

GoalState.dll

58664

3.1.6027.0

GuestAgent.AIFactory.dll

31528

3.1.6027.0

GuestAgent.AppDownloader.dll

44328

3.1.6027.0

GuestAgent.Common.dll

64296

3.1.6027.0

GuestAgent.Fetcher.dll

41256

3.1.6027.0

GuestAgent.GCEProcessor.dll

31528

3.1.6027.0

GuestAgent.GSC.dll

74024

3.1.6027.0

GuestAgent.GSM.dll

34600

3.1.6027.0

GuestAgent.QueueManager.dll

39208

3.1.6027.0

GuestAgent.SqlProfileProcessor.dll

31528

3.1.6027.0

GuestAgent.StateManager.dll

23336

3.1.6027.0

GuestAgent.Upgrade.dll

44840

3.1.6027.0

ScvmmGuestService.exe

26408

3.1.6027.0

Supplemental Notices for SC 2012 SP1 - Virtual Machine Manager Update Rollup 3.docx

26067

TraceWrapper.dll

67880

3.1.6027.0

vmmApplicationManager.Common.dll

31016

3.1.6027.0

vmmApplicationManager.dll

59176

3.1.6027.0

WebDeployV2.dll

29992

3.1.6027.0

WebDeployV3.dll

29992

3.1.6027.0

64-bit version

Files that are changed

File size

Version

Errors.dll

3849000

3.1.6027.0

gceManagement.dll

214824

3.1.6027.0

GoalState.dll

58664

3.1.6027.0

GuestAgent.AIFactory.dll

48424

3.1.6027.0

GuestAgent.AppDownloader.dll

44336

3.1.6027.0

GuestAgent.Common.dll

64304

3.1.6027.0

GuestAgent.Fetcher.dll

41256

3.1.6027.0

GuestAgent.GCEProcessor.dll

31528

3.1.6027.0

GuestAgent.GSC.dll

74024

3.1.6027.0

GuestAgent.GSM.dll

34600

3.1.6027.0

GuestAgent.QueueManager.dll

39216

3.1.6027.0

GuestAgent.SqlProfileProcessor.dll

31528

3.1.6027.0

GuestAgent.StateManager.dll

23344

3.1.6027.0

GuestAgent.Upgrade.dll

44840

3.1.6027.0

ScvmmGuestService.exe

26408

3.1.6027.0

Supplemental Notices for SC 2012 SP1 - Virtual Machine Manager Update Rollup 3.docx

26067

TraceWrapper.dll

67880

3.1.6027.0

vmmApplicationManager.Common.dll

31016

3.1.6027.0

vmmApplicationManager.dll

59176

3.1.6027.0

WebDeployV2.dll

29992

3.1.6027.0

WebDeployV3.dll

30000

3.1.6027.0

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Was this information helpful?

What affected your experience?
By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×