Posted On November 8, 2021

How To Create a Virtual Machine Administrator Role in SCVMM

kimconnect 0 comments
blog.KimConnect.com >> Windows >> How To Create a Virtual Machine Administrator Role in SCVMM

Update: A new write-up has been posted with screenshots here.

Virtual Machine Manager (VMM) 2019 includes a new role, ‘VM administrator.’ This RBAC provides just enough permissions for read-only visibility into the fabric of the data center, but prevents escalation of privilege to fabric administration. (Source: Microsoft)

To create an RBAC role for VM administrator, go to Settings > User Roles > Create User Role > type in the name as ‘Virtual Machine Administrator’ > Next > select ‘Virtual Machine Administrator’ > Next > click Add > select Active Directory Users or Groups > OK > Next > narrow down the scope (e.g. ‘All Hosts’) > Next > put a check mark to each desired permissions (as listed below) > Next > Add Library Servers > Next > Add ‘Run As Accounts’ > Next > Finish

Virtual Machine Administrator Permissions:
- Migrate virtual machine (recommended)
- Migrate VM Storage (recommended)
- Pause and resume (recommended)
- Receive
- Remote connection
- Remove
- Save
- Share
- Shutdown (recommended)
- Start (recommended)
- Stop (recommended)
- Store and re-deploy
- Update VM functional level (recommended)

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Chronos Time Clock Administration

How to Add Notes Configuration Manager Terminals Timekeeper Terminals right click - basic configuration Type…

ADFS Configurations

View existing ADFS global configs PS C:\Users\administrator.CAP> get-AdfsGlobalWebContentSignOutPageDescriptionText :UpdatePasswordPageDescriptionText :Locale :CompanyName :CertificatePageDescriptionText :ErrorPageDescriptionText :ErrorPageGenericErrorMessage :ErrorPageAuthorizationErrorMessage…

PowerShell Legacy Versions: How to Check Connection of Servers on Certain Ports?

A more updated version is available here. function Check-NetConnection($server, $port) { $session = New-Object System.Net.Sockets.TcpClient;…