Today Microsoft will release the update rollup 1 for scvmm 2012 r2 hope this fixes some of the issues I have been seeing !!
Be aware of this situation while installing UR1
Installation Instructions for Update Rollup 1 for System Center 2012 R2 Virtual Machine Manager
This has the potential to impact VMM.
Installation instructions
There are two update packages for Update Rollup 1 for System Center Virtual Machine Manager 2012 R2. They can be manually downloaded from the following links.
Virtual Machine Manager Server (KB2904712)
Virtual Machine Manager Console (KB2919248)
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 1 package for a System Center 2012 R2 Virtual Machine Manager server (KB2904712), run the following command:
1:
msiexec.exe /update kb2904712_vmmserver_amd64.msp
2:
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 1 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
/* script ends here */
3:
Note After Update Rollup 1 for Virtual Machine Manager is installed, you may experience one of the following issues:
- When you try to import an add-in into the Virtual Machine Manager console, the import may be unsuccessful. Additionally, you receive the following error message:
An error occurred while trying to create an add-in folder for your account:
Access to the path: "C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\bin\AddInPipeline\AddIns" is denied.
- When you open the VMM console, you receive the following error message:
Could not update managed code add-in pipeline due to the following error:
The required folder "C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\bin\AddInPipeline\HostSideAdapters" does not exist.
To resolve these issues, follow these steps:
- Locate the following folder:
C:\Program Files\Microsoft System Center 2012 R2\Virtual Machine Manager\bin - Right-click the AddInPipeline folder, and then clickProperties.
- On theSecurity tab, click Advanced, and then click Continue.
- Select the BUILTIN group, and then clickEdit.
- Click theSelect a principal link, type Authenticated Users, and then clickOK.
- ClickOK to close each dialog box that is associated with the properties.