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.

Summary

This article describes the issues that are fixed in Update Rollup 2 for Microsoft System Center 2012 R2 Virtual Machine Manager (VMM). There are two updates available for System Center 2012 R2 VMM. One update applies to the VMM management server, and the other applies to the VMM console. Additionally, this article contains installation instructions for Update Rollup 2 for System Center 2012 R2 Virtual Machine Manager.

Issues that this update fixes

Update Rollup 2 for System Center 2012 R2 Virtual Machine Manager resolves the following issues:

  • Files cannot be found on a network-attached storage device that uses NetApp storage and Server Message Block version 3 (SMBv3) protocol.

  • After an account's password is changed, the Scale-Out File Server provider goes into a "not responding" state.

  • VMM wipes the System Access Control List (SACL) configurations on ports.

  • When an uplink profile's name contains the "or" string, VMM console cannot show its details when it adds the uplink profile to a logical switch.

  • Dynamic disks cannot be used as pass-through disks.

  • When you create a standard virtual switch on a host without selecting the Allow management operating system to share this network adapter check box, the virtual switch is created. However, the virtual switch still binds to the host unexpectedly.

  • Network address translation (NAT) uses port number 49152 or a larger number, which Windows prohibits from being used by NAT.

  • When a virtual machine IP address type is static Out-of-Band and there is no IP address pool that is associated with the virtual machine network or the logical network, migration is complete with multiple errors.

  • If a highly available virtual machine is migrated from one node to another node by using Failover Cluster Manager, you receive an error message that indicates the absence of VHD files.

  • Some performance issues in VMM.

  • Connection with Operations Manager fails in a non-English environment.

  • After you upgrade VMM from System Center 2012 Service Pack 1 (SP1) to System Center 2012 R2, VLAN settings disappear and cannot be saved in the virtual machine.

  • Virtualization gateway could not be discovered by management packs.

  • The New-SCPhysicalComputerProfile Windows PowerShell cmdlet fails with a NullReferenceException exception.

  • Assume that you put a host into maintenance mode. When any highly available virtual machines cannot evacuate successfully, they are put into a saved state instead of into task failures.

  • Assume that you have a computer that is running VMware ESX Server to host virtual machines. Additionally, assume that cumulative progress for many applications, scripts or actions (that is reported by guest agent) becomes large. In this situation, all deployments time out, as the guest agent cannot communicate to the server successfully.

  • You cannot deploy a service template to VMware ESX 5.1 hosts. Additionally, you receive an error 22042 and a TimeoutWhileWaitingForVmToBootException (609) exception.

  • When you migrate a virtual machine together with Out-of-Band checkpoints, database corruption occurs.

  • Pass-through disks are not updated correctly in the database after they are refreshed from an Out-of-Band migration.

  • Assume that hosts establish a Common Information Model (CIM) session that can send policies to the host after the Hyper-V Network Virtualization initialization. Additionally, assume that a policy-sending activity is initiated before the CIM session creation is completed. In this situation, policies are stuck in the sending queue, and the host does not receive any Hyper-V Network Virtualization policies.

  • Communication is broken in Hyper-V Network Virtualization.

  • When you use a same user name for Run As Accounts in guest customization, a conflict occurs.

  • You cannot use a parameter together with .sql scripts for a Run As Account during a service installation.

  • You deploy a template that uses empty classification to a cloud. However, the template does not respect storage classifications that are set on the cloud.

  • When Windows Server fast file copy cannot deploy files successfully, the Background Intelligent Transfer Service (BITS) fallback task continues using the fast file copy credentials.


Resolution

Update packages are available from Microsoft Update or by manual download.

Microsoft Update

To obtain and install an update package from Microsoft Update, follow these steps on a computer that has an applicable System Center 2012 R2 component installed:

  1. Click Start, and then click Control Panel.

  2. In Control Panel, double-click Windows Update.

  3. In the Windows Update window, click Check Online for updates from Microsoft Update.

  4. Click Important updates are available.

  5. Select the update rollup packages that you want to install, and then click OK.

  6. Click Install updates to install the selected update packages.

Manual download of the update packages

Go to the following website to manually download the update packages from the Microsoft Update Catalog:
DownloadDownload the server update package now.
DownloadDownload the admin console update package now.

Installation instructions

To manually install the update packages, run the following command from an elevated command prompt:msiexec.exe /update <packagename> For example, to install the Update Rollup 2 package for a System Center 2012 R2 Virtual Machine Manager server (KB2932926), run the following command:msiexec.exe /update kb2932926_vmmserver_amd64.msp Important After you install the update package, you must apply the following SQL script on your Virtual Machine Manager Microsoft SQL Server database for Update Rollup 2 to function correctly.

/* script starts here */
ALTER Procedure [dbo].[prc_RBS_UserRoleSharedObjectRelation_Insert]
(
@ID uniqueidentifier,
@ObjectID uniqueidentifier,
@ObjectType int,
@RoleID uniqueidentifier,
@UserOrGroup varbinary (85),
@ForeignAccount nvarchar (256),
@IsADGroup bit,
@ExistingID uniqueidentifier = NULL OUTPUT
)
AS
SET NOCOUNT ON
SELECT @ExistingID = [ID] FROM [dbo].[tbl_RBS_UserRoleSharedObjectRelation]
WHERE [ObjectID] = @ObjectID AND [RoleID] = @RoleID
AND
-- Select owner OR Select all which matches ForeignAccount or UserOrGroup OR
-- both ForeignAccount and UserOrGroup is NULL
(([UserOrGroup] = @UserOrGroup OR [ForeignAccount] = @ForeignAccount) OR
([UserOrGroup] IS NULL AND @UserOrGroup IS NULL AND [ForeignAccount] IS NULL AND @ForeignAccount IS NULL))
/* Ignore duplicate entries */
IF (@ExistingID IS NULL)
BEGIN
INSERT [dbo].[tbl_RBS_UserRoleSharedObjectRelation]
([ID]
,[ObjectID]
,[ObjectType]
,[RoleID]
,[UserOrGroup]
,[ForeignAccount]
,[IsADGroup]
,[IsOwner]
)
VALUES
(
@ID,
@ObjectID,
@ObjectType,
@RoleID,
@UserOrGroup,
@ForeignAccount,
@IsADGroup,
0
)
END
SET NOCOUNT OFF
RETURN @@ERROR
GO


ALTER PROCEDURE [dbo].[prc_WLC_IsVHDSharedByAnotherVmOnHost]
@HostId [uniqueidentifier],
@VHDId [uniqueidentifier],
@VMId [uniqueidentifier]
AS
BEGIN
DECLARE @error int
SET @error = 0

SET NOCOUNT ON;

SELECT TOP 1 1 FROM dbo.[fn_WLC_GetParentChildRelationForVHD](@VHDId) vcr
JOIN dbo.tbl_WLC_VDrive vd ON
vcr.VHDId = vd.VHDId
JOIN dbo.tbl_WLC_VObject vo ON
vo.ObjectId = vd.ParentId
JOIN dbo.tbl_WLC_VMInstance vi ON
vo.ObjectId = vi.VMInstanceId
WHERE
vo.HostId = @HostId
AND
vo.ObjectId <> @VMId
AND
vi.RootVMInstanceId <> @VMId

SET @error = @@ERROR
SET NOCOUNT OFF
RETURN @error
END
GO


IF EXISTS (SELECT * FROM dbo.sysobjects
WHERE id = OBJECT_ID(N'prc_ADHC_HostDisk_GetByClusterDiskIdAndHostId')
AND OBJECTPROPERTY(id, N'IsProcedure') = 1)
DROP PROCEDURE dbo.prc_ADHC_HostDisk_GetByClusterDiskIdAndHostId
GO

CREATE PROCEDURE dbo.prc_ADHC_HostDisk_GetByClusterDiskIdAndHostId
(
@ClusterDiskID guid,
@HostID guid
)
AS

DECLARE @error int
SET @error = 0

SET NOCOUNT ON

SELECT
[DiskID],
[Signature],
[UniqueID],
[HostID],
[LibraryServerID],
[StArrayID],
[LastUpdatedDateTime],
[DeviceID],
[Index],
[Capacity],
[IsPassThroughCapable],
[IsSanAttached],
[ClusterDiskID],
[Location],
[StorageLUNID],
[SMLunId],
[SMLunIdFormat],
[SMLunIdNamespace],
[SANType],
[Bus],
[Lun],
[Target],
[Port],
[IsVHD],
[StClassificationId]
FROM dbo.tbl_ADHC_HostDisk
WHERE
[HostID] = @HostID
AND
[ClusterDiskID] = @ClusterDiskID

SELECT @error = @@ERROR

SET NOCOUNT OFF

RETURN @error
GO
/* script ends here */


Virtual Machine Manager Administrator Console (KB2932942)

Files that are changed

File size

Version

Language ID

DB.DelegatedAdmin.dll

93024

3.2.7620.0

Not applicable

Engine.Common.dll

228200

3.2.7634.0

Not applicable

Engine.Deployment.dll

638312

3.2.7634.0

Not applicable

Errors.dll

4566888

3.2.7634.0

Not applicable

Errors.resources.dll

1554784

3.2.7634.0

2052

Errors.resources.dll

1937760

3.2.7634.0

1036

Errors.resources.dll

1972576

3.2.7634.0

1031

Errors.resources.dll

1826664

3.2.7634.0

1040

Errors.resources.dll

2167656

3.2.7634.0

1041

Errors.resources.dll

1835360

3.2.7634.0

1046

Errors.resources.dll

2604896

3.2.7634.0

1049

Errors.resources.dll

1885032

3.2.7634.0

3082

Errors.resources.dll

1577832

3.2.7634.0

1028

Errors.resources.dll

1922920

3.2.7634.0

1042

Errors.resources.dll

1577824

3.2.7634.0

3076

Errors.resources.dll

1835360

3.2.7634.0

1029

Errors.resources.dll

1798496

3.2.7634.0

1043

Errors.resources.dll

1983336

3.2.7634.0

1038

Errors.resources.dll

1893216

3.2.7634.0

1045

Errors.resources.dll

1857384

3.2.7634.0

2070

Errors.resources.dll

1757544

3.2.7634.0

1053

Errors.resources.dll

1775464

3.2.7634.0

1055

ImgLibEngine.dll

4112224

3.2.7634.0

Not applicable

Microsoft.SystemCenter.VirtualMachineManager.dll

2019176

3.2.7634.0

Not applicable

Microsoft.VirtualManager.UI.Dialogs.dll

3192680

3.2.7634.0

Not applicable

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1021792

3.2.7620.0

2052

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1056608

3.2.7620.0

1036

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1050464

3.2.7620.0

1031

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1046368

3.2.7620.0

1040

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1068896

3.2.7620.0

1041

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1046880

3.2.7620.0

1046

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1119072

3.2.7620.0

1049

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1050464

3.2.7620.0

3082

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1023840

3.2.7620.0

1028

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1047392

3.2.7620.0

1042

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1023840

3.2.7620.0

3076

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1048928

3.2.7620.0

1029

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1043296

3.2.7620.0

1043

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1055584

3.2.7620.0

1038

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1047392

3.2.7620.0

1045

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1049440

3.2.7620.0

2070

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1038688

3.2.7620.0

1053

Microsoft.VirtualManager.UI.Dialogs.resources.dll

1042784

3.2.7620.0

1055

Microsoft.VirtualManager.UI.HardwareProperties.dll

612200

3.2.7634.0

Not applicable

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

280928

3.2.7620.0

2052

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

285024

3.2.7620.0

1036

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

285024

3.2.7620.0

1031

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

284000

3.2.7620.0

1040

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

286048

3.2.7620.0

1041

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

284000

3.2.7620.0

1046

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

293216

3.2.7620.0

1049

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

284512

3.2.7620.0

3082

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

280928

3.2.7620.0

1028

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

283488

3.2.7620.0

1042

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

280928

3.2.7620.0

3076

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

284000

3.2.7620.0

1029

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

284512

3.2.7620.0

1043

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

284000

3.2.7620.0

1038

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

283488

3.2.7620.0

1045

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

283488

3.2.7620.0

2070

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

283488

3.2.7620.0

1053

Microsoft.VirtualManager.UI.HardwareProperties.resources.dll

284000

3.2.7620.0

1055

Microsoft.VirtualManager.UI.Pages.Datacenter.dll

3379552

3.2.7620.0

Not applicable

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

1253216

3.2.7620.0

2052

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

1288544

3.2.7620.0

1036

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

1281376

3.2.7620.0

1031

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

1276256

3.2.7620.0

1040

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

1300832

3.2.7620.0

1041

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

1277280

3.2.7620.0

1046

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

1349984

3.2.7620.0

1049

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

1281376

3.2.7620.0

3082

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

1256288

3.2.7620.0

1028

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

1278304

3.2.7620.0

1042

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

1256288

3.2.7620.0

3076

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

1281376

3.2.7620.0

1029

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

1273696

3.2.7620.0

1043

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

1285984

3.2.7620.0

1038

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

1278816

3.2.7620.0

1045

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

1280352

3.2.7620.0

2070

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

1270624

3.2.7620.0

1053

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

1274208

3.2.7620.0

1055

Microsoft.VirtualManager.UI.Specialization.dll

371040

3.2.7620.0

Not applicable

Microsoft.VirtualManager.UI.Specialization.resources.dll

117600

3.2.7620.0

2052

Microsoft.VirtualManager.UI.Specialization.resources.dll

119648

3.2.7620.0

1036

Microsoft.VirtualManager.UI.Specialization.resources.dll

118624

3.2.7620.0

1031

Microsoft.VirtualManager.UI.Specialization.resources.dll

119136

3.2.7620.0

1040

Microsoft.VirtualManager.UI.Specialization.resources.dll

119648

3.2.7620.0

1041

Microsoft.VirtualManager.UI.Specialization.resources.dll

118624

3.2.7620.0

1046

Microsoft.VirtualManager.UI.Specialization.resources.dll

122208

3.2.7620.0

1049

Microsoft.VirtualManager.UI.Specialization.resources.dll

119136

3.2.7620.0

3082

Microsoft.VirtualManager.UI.Specialization.resources.dll

117600

3.2.7620.0

1028

Microsoft.VirtualManager.UI.Specialization.resources.dll

118624

3.2.7620.0

1042

Microsoft.VirtualManager.UI.Specialization.resources.dll

117600

3.2.7620.0

3076

Microsoft.VirtualManager.UI.Specialization.resources.dll

118624

3.2.7620.0

1029

Microsoft.VirtualManager.UI.Specialization.resources.dll

118624

3.2.7620.0

1043

Microsoft.VirtualManager.UI.Specialization.resources.dll

119136

3.2.7620.0

1038

Microsoft.VirtualManager.UI.Specialization.resources.dll

118624

3.2.7620.0

1045

Microsoft.VirtualManager.UI.Specialization.resources.dll

119136

3.2.7620.0

2070

Microsoft.VirtualManager.UI.Specialization.resources.dll

118624

3.2.7620.0

1053

Microsoft.VirtualManager.UI.Specialization.resources.dll

118112

3.2.7620.0

1055

Microsoft.VirtualManager.UI.VmmControls.dll

894304

3.2.7620.0

Not applicable

Microsoft.VirtualManager.UI.VmmControls.resources.dll

281952

3.2.7620.0

2052

Microsoft.VirtualManager.UI.VmmControls.resources.dll

289120

3.2.7620.0

1036

Microsoft.VirtualManager.UI.VmmControls.resources.dll

286560

3.2.7620.0

1031

Microsoft.VirtualManager.UI.VmmControls.resources.dll

286560

3.2.7620.0

1040

Microsoft.VirtualManager.UI.VmmControls.resources.dll

290656

3.2.7620.0

1041

Microsoft.VirtualManager.UI.VmmControls.resources.dll

287072

3.2.7620.0

1046

Microsoft.VirtualManager.UI.VmmControls.resources.dll

302944

3.2.7620.0

1049

Microsoft.VirtualManager.UI.VmmControls.resources.dll

287584

3.2.7620.0

3082

Microsoft.VirtualManager.UI.VmmControls.resources.dll

282464

3.2.7620.0

1028

Microsoft.VirtualManager.UI.VmmControls.resources.dll

286048

3.2.7620.0

1042

Microsoft.VirtualManager.UI.VmmControls.resources.dll

282464

3.2.7620.0

3076

Microsoft.VirtualManager.UI.VmmControls.resources.dll

287072

3.2.7620.0

1029

Microsoft.VirtualManager.UI.VmmControls.resources.dll

286048

3.2.7620.0

1043

Microsoft.VirtualManager.UI.VmmControls.resources.dll

288096

3.2.7620.0

1038

Microsoft.VirtualManager.UI.VmmControls.resources.dll

286560

3.2.7620.0

1045

Microsoft.VirtualManager.UI.VmmControls.resources.dll

286560

3.2.7620.0

2070

Microsoft.VirtualManager.UI.VmmControls.resources.dll

285024

3.2.7620.0

1053

Microsoft.VirtualManager.UI.VmmControls.resources.dll

286048

3.2.7620.0

1055

Microsoft.VirtualManager.UI.VMWizards.dll

399712

3.2.7620.0

Not applicable

Remoting.dll

1024352

3.2.7620.0

Not applicable

Supplemental Notices for SC 2012 R2 Virtual Machine Manager Update Rollup 2.docx

22840

Not applicable

Not applicable

TraceWrapper.dll

75616

3.2.7634.0

Not applicable

Utils.dll

888680

3.2.7634.0

Not applicable

VMWareImplementation.dll

2065256

3.2.7634.0

Not applicable

WSManAutomation.dll

35176

3.2.7634.0

Not applicable

WsManWrappers.dll

3825512

3.2.7634.0

Not applicable


Virtual Machine Manager Server (KB2932926)

Files that are changed

File size

Version

Language ID

Platform

DB.DelegatedAdmin.dll

93024

3.2.7620.0

Not applicable

Not applicable

Engine.Adhc.Operations.dll

1337696

3.2.7634.0

Not applicable

Not applicable

Engine.AuthorizationManager.dll

104288

3.2.7620.0

Not applicable

Not applicable

Engine.AuthorizationManagerTasks.dll

51040

3.2.7620.0

Not applicable

Not applicable

Engine.Backup.dll

68960

3.2.7620.0

Not applicable

Not applicable

Engine.BitBos.dll

270184

3.2.7634.0

Not applicable

Not applicable

Engine.Common.dll

228200

3.2.7634.0

Not applicable

Not applicable

Engine.Deployment.dll

638312

3.2.7634.0

Not applicable

Not applicable

Engine.ImgLibOperation.dll

547680

3.2.7620.0

Not applicable

Not applicable

Engine.IndigoAccessLayer.dll

515936

3.2.7620.0

Not applicable

Not applicable

Engine.MomDal.dll

648032

3.2.7634.0

Not applicable

Not applicable

Engine.PhysicalMachine.dll

360800

3.2.7515.0

Not applicable

Not applicable

Engine.Placement.dll

285536

3.2.7634.0

Not applicable

Not applicable

Engine.ServiceOperations.dll

293728

3.2.7634.0

Not applicable

Not applicable

Engine.VmOperations.dll

1264488

3.2.7634.0

Not applicable

Not applicable

Errors.dll

4566888

3.2.7634.0

Not applicable

Not applicable

Errors.resources.dll

1554784

3.2.7634.0

2052

Not applicable

Errors.resources.dll

1937760

3.2.7634.0

1036

Not applicable

Errors.resources.dll

1972576

3.2.7634.0

1031

Not applicable

Errors.resources.dll

1826664

3.2.7634.0

1040

Not applicable

Errors.resources.dll

2167656

3.2.7634.0

1041

Not applicable

Errors.resources.dll

1835360

3.2.7634.0

1046

Not applicable

Errors.resources.dll

2604896

3.2.7634.0

1049

Not applicable

Errors.resources.dll

1885032

3.2.7634.0

3082

Not applicable

Errors.resources.dll

1577832

3.2.7634.0

1028

Not applicable

Errors.resources.dll

1922920

3.2.7634.0

1042

Not applicable

Errors.resources.dll

1577824

3.2.7634.0

3076

Not applicable

Errors.resources.dll

1835360

3.2.7634.0

1029

Not applicable

Errors.resources.dll

1798496

3.2.7634.0

1043

Not applicable

Errors.resources.dll

1983336

3.2.7634.0

1038

Not applicable

Errors.resources.dll

1893216

3.2.7634.0

1045

Not applicable

Errors.resources.dll

1857384

3.2.7634.0

2070

Not applicable

Errors.resources.dll

1757544

3.2.7634.0

1053

Not applicable

Errors.resources.dll

1775464

3.2.7634.0

1055

Not applicable

GoalState.dll

61800

3.2.7634.0

Not applicable

Not applicable

GuestAgent.Common.dll

69472

3.2.7634.0

Not applicable

X86

GuestAgent.Common.dll

69480

3.2.7634.0

Not applicable

X64

ImgLibEngine.dll

4112224

3.2.7634.0

Not applicable

Not applicable

msiInstaller.dat

12

Not applicable

Not applicable

Not applicable

msiInstaller.exe

275728

3.2.7510.0

Not applicable

X86

msiInstaller.exe

327952

3.2.7510.0

Not applicable

X64

Remoting.dll

1024352

3.2.7620.0

Not applicable

Not applicable

SCXStorageWrapper.dll

100704

3.2.7634.0

Not applicable

Not applicable

Supplemental Notices for SC 2012 R2 Virtual Machine Manager Update Rollup 2.docx

22840

Not applicable

Not applicable

Not applicable

TraceWrapper.dll

75616

3.2.7634.0

Not applicable

Not applicable

Utils.dll

888680

3.2.7634.0

Not applicable

Not applicable

ValHyperVImplementation.dll

427360

3.2.7634.0

Not applicable

Not applicable

ViridianImplementationV2.dll

412000

3.2.7634.0

Not applicable

Not applicable

VMGuestAgent.iso

136839168

Not applicable

Not applicable

Not applicable

vmmAgent.exe

6323552

3.2.7634.0

Not applicable

Not applicable

vmmAgent.msi

7147520

Not applicable

Not applicable

X86

vmmAgent.msi

8142848

Not applicable

Not applicable

X64

vmmGuestAgent.msi

2863104

Not applicable

Not applicable

X86

vmmGuestAgent.msi

2936832

Not applicable

Not applicable

X64

VMWareImplementation.dll

2065256

3.2.7634.0

Not applicable

Not applicable

WindowsRemoteServerPlugin.dll

294760

3.2.7634.0

Not applicable

Not applicable

WSManAutomation.dll

35176

3.2.7634.0

Not applicable

Not applicable

WsManWrappers.dll

3825512

3.2.7634.0

Not applicable

Not applicable




The third-party products that this article discusses are manufactured by companies that are independent of Microsoft. Microsoft makes no warranty, implied or otherwise, about the performance or reliability of these products.


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!

×