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

Description of Update Rollup 2 for System Center 2012 R2 Virtual Machine Manager


View products that this article applies to.

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.

↑ Back to the top


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.

↑ Back to the top


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:
Download Download the server update package now.
Download Download 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 */

↑ Back to the top


Files that are updated in Update Rollup 2 packages

Virtual Machine Manager Administrator Console (KB2932942)

Files that are changedFile sizeVersionLanguage ID
DB.DelegatedAdmin.dll930243.2.7620.0Not applicable
Engine.Common.dll2282003.2.7634.0Not applicable
Engine.Deployment.dll6383123.2.7634.0Not applicable
Errors.dll45668883.2.7634.0Not applicable
Errors.resources.dll15547843.2.7634.02052
Errors.resources.dll19377603.2.7634.01036
Errors.resources.dll19725763.2.7634.01031
Errors.resources.dll18266643.2.7634.01040
Errors.resources.dll21676563.2.7634.01041
Errors.resources.dll18353603.2.7634.01046
Errors.resources.dll26048963.2.7634.01049
Errors.resources.dll18850323.2.7634.03082
Errors.resources.dll15778323.2.7634.01028
Errors.resources.dll19229203.2.7634.01042
Errors.resources.dll15778243.2.7634.03076
Errors.resources.dll18353603.2.7634.01029
Errors.resources.dll17984963.2.7634.01043
Errors.resources.dll19833363.2.7634.01038
Errors.resources.dll18932163.2.7634.01045
Errors.resources.dll18573843.2.7634.02070
Errors.resources.dll17575443.2.7634.01053
Errors.resources.dll17754643.2.7634.01055
ImgLibEngine.dll41122243.2.7634.0Not applicable
Microsoft.SystemCenter.VirtualMachineManager.dll20191763.2.7634.0Not applicable
Microsoft.VirtualManager.UI.Dialogs.dll31926803.2.7634.0Not applicable
Microsoft.VirtualManager.UI.Dialogs.resources.dll10217923.2.7620.02052
Microsoft.VirtualManager.UI.Dialogs.resources.dll10566083.2.7620.01036
Microsoft.VirtualManager.UI.Dialogs.resources.dll10504643.2.7620.01031
Microsoft.VirtualManager.UI.Dialogs.resources.dll10463683.2.7620.01040
Microsoft.VirtualManager.UI.Dialogs.resources.dll10688963.2.7620.01041
Microsoft.VirtualManager.UI.Dialogs.resources.dll10468803.2.7620.01046
Microsoft.VirtualManager.UI.Dialogs.resources.dll11190723.2.7620.01049
Microsoft.VirtualManager.UI.Dialogs.resources.dll10504643.2.7620.03082
Microsoft.VirtualManager.UI.Dialogs.resources.dll10238403.2.7620.01028
Microsoft.VirtualManager.UI.Dialogs.resources.dll10473923.2.7620.01042
Microsoft.VirtualManager.UI.Dialogs.resources.dll10238403.2.7620.03076
Microsoft.VirtualManager.UI.Dialogs.resources.dll10489283.2.7620.01029
Microsoft.VirtualManager.UI.Dialogs.resources.dll10432963.2.7620.01043
Microsoft.VirtualManager.UI.Dialogs.resources.dll10555843.2.7620.01038
Microsoft.VirtualManager.UI.Dialogs.resources.dll10473923.2.7620.01045
Microsoft.VirtualManager.UI.Dialogs.resources.dll10494403.2.7620.02070
Microsoft.VirtualManager.UI.Dialogs.resources.dll10386883.2.7620.01053
Microsoft.VirtualManager.UI.Dialogs.resources.dll10427843.2.7620.01055
Microsoft.VirtualManager.UI.HardwareProperties.dll6122003.2.7634.0Not applicable
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2809283.2.7620.02052
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2850243.2.7620.01036
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2850243.2.7620.01031
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2840003.2.7620.01040
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2860483.2.7620.01041
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2840003.2.7620.01046
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2932163.2.7620.01049
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2845123.2.7620.03082
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2809283.2.7620.01028
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2834883.2.7620.01042
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2809283.2.7620.03076
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2840003.2.7620.01029
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2845123.2.7620.01043
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2840003.2.7620.01038
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2834883.2.7620.01045
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2834883.2.7620.02070
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2834883.2.7620.01053
Microsoft.VirtualManager.UI.HardwareProperties.resources.dll2840003.2.7620.01055
Microsoft.VirtualManager.UI.Pages.Datacenter.dll33795523.2.7620.0Not applicable
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12532163.2.7620.02052
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12885443.2.7620.01036
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12813763.2.7620.01031
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12762563.2.7620.01040
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll13008323.2.7620.01041
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12772803.2.7620.01046
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll13499843.2.7620.01049
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12813763.2.7620.03082
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12562883.2.7620.01028
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12783043.2.7620.01042
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12562883.2.7620.03076
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12813763.2.7620.01029
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12736963.2.7620.01043
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12859843.2.7620.01038
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12788163.2.7620.01045
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12803523.2.7620.02070
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12706243.2.7620.01053
Microsoft.VirtualManager.UI.Pages.Datacenter.resources.dll12742083.2.7620.01055
Microsoft.VirtualManager.UI.Specialization.dll3710403.2.7620.0Not applicable
Microsoft.VirtualManager.UI.Specialization.resources.dll1176003.2.7620.02052
Microsoft.VirtualManager.UI.Specialization.resources.dll1196483.2.7620.01036
Microsoft.VirtualManager.UI.Specialization.resources.dll1186243.2.7620.01031
Microsoft.VirtualManager.UI.Specialization.resources.dll1191363.2.7620.01040
Microsoft.VirtualManager.UI.Specialization.resources.dll1196483.2.7620.01041
Microsoft.VirtualManager.UI.Specialization.resources.dll1186243.2.7620.01046
Microsoft.VirtualManager.UI.Specialization.resources.dll1222083.2.7620.01049
Microsoft.VirtualManager.UI.Specialization.resources.dll1191363.2.7620.03082
Microsoft.VirtualManager.UI.Specialization.resources.dll1176003.2.7620.01028
Microsoft.VirtualManager.UI.Specialization.resources.dll1186243.2.7620.01042
Microsoft.VirtualManager.UI.Specialization.resources.dll1176003.2.7620.03076
Microsoft.VirtualManager.UI.Specialization.resources.dll1186243.2.7620.01029
Microsoft.VirtualManager.UI.Specialization.resources.dll1186243.2.7620.01043
Microsoft.VirtualManager.UI.Specialization.resources.dll1191363.2.7620.01038
Microsoft.VirtualManager.UI.Specialization.resources.dll1186243.2.7620.01045
Microsoft.VirtualManager.UI.Specialization.resources.dll1191363.2.7620.02070
Microsoft.VirtualManager.UI.Specialization.resources.dll1186243.2.7620.01053
Microsoft.VirtualManager.UI.Specialization.resources.dll1181123.2.7620.01055
Microsoft.VirtualManager.UI.VmmControls.dll8943043.2.7620.0Not applicable
Microsoft.VirtualManager.UI.VmmControls.resources.dll2819523.2.7620.02052
Microsoft.VirtualManager.UI.VmmControls.resources.dll2891203.2.7620.01036
Microsoft.VirtualManager.UI.VmmControls.resources.dll2865603.2.7620.01031
Microsoft.VirtualManager.UI.VmmControls.resources.dll2865603.2.7620.01040
Microsoft.VirtualManager.UI.VmmControls.resources.dll2906563.2.7620.01041
Microsoft.VirtualManager.UI.VmmControls.resources.dll2870723.2.7620.01046
Microsoft.VirtualManager.UI.VmmControls.resources.dll3029443.2.7620.01049
Microsoft.VirtualManager.UI.VmmControls.resources.dll2875843.2.7620.03082
Microsoft.VirtualManager.UI.VmmControls.resources.dll2824643.2.7620.01028
Microsoft.VirtualManager.UI.VmmControls.resources.dll2860483.2.7620.01042
Microsoft.VirtualManager.UI.VmmControls.resources.dll2824643.2.7620.03076
Microsoft.VirtualManager.UI.VmmControls.resources.dll2870723.2.7620.01029
Microsoft.VirtualManager.UI.VmmControls.resources.dll2860483.2.7620.01043
Microsoft.VirtualManager.UI.VmmControls.resources.dll2880963.2.7620.01038
Microsoft.VirtualManager.UI.VmmControls.resources.dll2865603.2.7620.01045
Microsoft.VirtualManager.UI.VmmControls.resources.dll2865603.2.7620.02070
Microsoft.VirtualManager.UI.VmmControls.resources.dll2850243.2.7620.01053
Microsoft.VirtualManager.UI.VmmControls.resources.dll2860483.2.7620.01055
Microsoft.VirtualManager.UI.VMWizards.dll3997123.2.7620.0Not applicable
Remoting.dll10243523.2.7620.0Not applicable
Supplemental Notices for SC 2012 R2 Virtual Machine Manager Update Rollup 2.docx22840Not applicableNot applicable
TraceWrapper.dll756163.2.7634.0Not applicable
Utils.dll8886803.2.7634.0Not applicable
VMWareImplementation.dll20652563.2.7634.0Not applicable
WSManAutomation.dll351763.2.7634.0Not applicable
WsManWrappers.dll38255123.2.7634.0Not applicable

Virtual Machine Manager Server (KB2932926)

Files that are changedFile sizeVersionLanguage IDPlatform
DB.DelegatedAdmin.dll930243.2.7620.0Not applicableNot applicable
Engine.Adhc.Operations.dll13376963.2.7634.0Not applicableNot applicable
Engine.AuthorizationManager.dll1042883.2.7620.0Not applicableNot applicable
Engine.AuthorizationManagerTasks.dll510403.2.7620.0Not applicableNot applicable
Engine.Backup.dll689603.2.7620.0Not applicableNot applicable
Engine.BitBos.dll2701843.2.7634.0Not applicableNot applicable
Engine.Common.dll2282003.2.7634.0Not applicableNot applicable
Engine.Deployment.dll6383123.2.7634.0Not applicableNot applicable
Engine.ImgLibOperation.dll5476803.2.7620.0Not applicableNot applicable
Engine.IndigoAccessLayer.dll5159363.2.7620.0Not applicableNot applicable
Engine.MomDal.dll6480323.2.7634.0Not applicableNot applicable
Engine.PhysicalMachine.dll3608003.2.7515.0Not applicableNot applicable
Engine.Placement.dll2855363.2.7634.0Not applicableNot applicable
Engine.ServiceOperations.dll2937283.2.7634.0Not applicableNot applicable
Engine.VmOperations.dll12644883.2.7634.0Not applicableNot applicable
Errors.dll45668883.2.7634.0Not applicableNot applicable
Errors.resources.dll15547843.2.7634.02052Not applicable
Errors.resources.dll19377603.2.7634.01036Not applicable
Errors.resources.dll19725763.2.7634.01031Not applicable
Errors.resources.dll18266643.2.7634.01040Not applicable
Errors.resources.dll21676563.2.7634.01041Not applicable
Errors.resources.dll18353603.2.7634.01046Not applicable
Errors.resources.dll26048963.2.7634.01049Not applicable
Errors.resources.dll18850323.2.7634.03082Not applicable
Errors.resources.dll15778323.2.7634.01028Not applicable
Errors.resources.dll19229203.2.7634.01042Not applicable
Errors.resources.dll15778243.2.7634.03076Not applicable
Errors.resources.dll18353603.2.7634.01029Not applicable
Errors.resources.dll17984963.2.7634.01043Not applicable
Errors.resources.dll19833363.2.7634.01038Not applicable
Errors.resources.dll18932163.2.7634.01045Not applicable
Errors.resources.dll18573843.2.7634.02070Not applicable
Errors.resources.dll17575443.2.7634.01053Not applicable
Errors.resources.dll17754643.2.7634.01055Not applicable
GoalState.dll618003.2.7634.0Not applicableNot applicable
GuestAgent.Common.dll694723.2.7634.0Not applicableX86
GuestAgent.Common.dll694803.2.7634.0Not applicableX64
ImgLibEngine.dll41122243.2.7634.0Not applicableNot applicable
msiInstaller.dat12Not applicableNot applicableNot applicable
msiInstaller.exe2757283.2.7510.0Not applicableX86
msiInstaller.exe3279523.2.7510.0Not applicableX64
Remoting.dll10243523.2.7620.0Not applicableNot applicable
SCXStorageWrapper.dll1007043.2.7634.0Not applicableNot applicable
Supplemental Notices for SC 2012 R2 Virtual Machine Manager Update Rollup 2.docx22840Not applicableNot applicableNot applicable
TraceWrapper.dll756163.2.7634.0Not applicableNot applicable
Utils.dll8886803.2.7634.0Not applicableNot applicable
ValHyperVImplementation.dll4273603.2.7634.0Not applicableNot applicable
ViridianImplementationV2.dll4120003.2.7634.0Not applicableNot applicable
VMGuestAgent.iso136839168Not applicableNot applicableNot applicable
vmmAgent.exe63235523.2.7634.0Not applicableNot applicable
vmmAgent.msi7147520Not applicableNot applicableX86
vmmAgent.msi8142848Not applicableNot applicableX64
vmmGuestAgent.msi2863104Not applicableNot applicableX86
vmmGuestAgent.msi2936832Not applicableNot applicableX64
VMWareImplementation.dll20652563.2.7634.0Not applicableNot applicable
WindowsRemoteServerPlugin.dll2947603.2.7634.0Not applicableNot applicable
WSManAutomation.dll351763.2.7634.0Not applicableNot applicable
WsManWrappers.dll38255123.2.7634.0Not applicableNot applicable



Third-party information disclaimer
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.


↑ Back to the top


Keywords: kbfix, kbbug, kbexpertiseadvanced, atdownload, kbsurveynew, kb

↑ Back to the top

Article Info
Article ID : 2932926
Revision : 1
Created on : 1/7/2017
Published on : 4/23/2014
Exists online : False
Views : 382