<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: vCenter permissions when using the plugin in Application Integration</title>
    <link>https://community.hpe.com/t5/application-integration/vcenter-permissions-when-using-the-plugin/m-p/7039993#M1132</link>
    <description>&lt;P&gt;Edit: Add additional privileges for VASA provider (StorageViews)&lt;/P&gt;&lt;P&gt;I can't attach the script file, so we'll see how the copy/paste does.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#&lt;BR /&gt;# PowerCLI script to create Custom Role which includes required permissions&lt;BR /&gt;# and assign Custom Service Account to Role&lt;BR /&gt;# Usage Create_Custom_Role.ps1 -vCenter vCenterFQDNorIP -Username ServiceAccountName -Domain AuthenticationDomain -RoleName CustomRoleName&lt;BR /&gt;# The user account must already exist, this script will not create the user account.&lt;BR /&gt;# Original Script Author vHersey&lt;BR /&gt;# Link to original script: &lt;A href="http://www.vhersey.com/2015/06/17/powercli-create-vcenter-role-and-assign-user-permissions/" target="_blank" rel="noopener"&gt;http://www.vhersey.com/2015/06/17/powercli-create-vcenter-role-and-assign-user-permissions/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;# Get Commandline Parameters - All are required&lt;BR /&gt;param(&lt;BR /&gt;[string]$vCenter,&lt;BR /&gt;[string]$Username,&lt;BR /&gt;[string]$Domain,&lt;BR /&gt;[string]$RoleName&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;clear-host&lt;BR /&gt;&lt;BR /&gt;$usage = "Create_Custom_Role.ps1 -vCenter vCenterFQDNorIP -Username CustomServiceAccountName -Domain AuthenticationDomain -RoleName CustomRoleName"&lt;BR /&gt;$example = 'Create_Custom_Role.ps1 -vCenter "vcenter.acme.local" -Username svtuser -Domain acme -RoleName CustomRoleName'&lt;BR /&gt;&lt;BR /&gt;Write-Host "PowerCLI script to create Custom Role which includes required privileges and assigns the Custom Service Account to Role" -ForeGroundColor Cyan&lt;BR /&gt;&lt;BR /&gt;if ( !$vCenter -or !$Username -or !$Domain -or !$RoleName ) {&lt;BR /&gt;write-host `n `n"Missing Required Parameter - vCenter, Username, Domain, and RoleName are required." `n -ForeGroundColor Red&lt;BR /&gt;write-host "Usage: $usage" `n&lt;BR /&gt;write-host "Example: $example" `n&lt;BR /&gt;exit&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;write-host "vCenter: $vCenter"&lt;BR /&gt;write-host "User: $Username"&lt;BR /&gt;write-host "Domain: $Domain"&lt;BR /&gt;write-host "RoleName: $RoleName"&lt;BR /&gt;&lt;BR /&gt;$vCenterFQDN = $vCenter&lt;BR /&gt;&lt;BR /&gt;# Custom Service Account User&lt;BR /&gt;#The Custom User account is a non-login, privileged, vCenter Server account that you specify during deployment. OmniCube uses this account to execute privileged tasks.&lt;BR /&gt;$Custom_User = "$Domain\$Username"&lt;BR /&gt;&lt;BR /&gt;# Custom Role Name&lt;BR /&gt;#Edit - No a paramater&lt;BR /&gt;#$Custom_Role = "Custom"&lt;BR /&gt;&lt;BR /&gt;# Privileges to assign to role&lt;BR /&gt;# See the product Administrators Guide for Required Permissions&lt;BR /&gt;# Nimble vCenter Privileges&lt;BR /&gt;$Custom_Privileges = @(&lt;BR /&gt;'Datastore.AllocateSpace',&lt;BR /&gt;'Datastore.Config',&lt;BR /&gt;'Datastore.Delete',&lt;BR /&gt;'Datastore.Move',&lt;BR /&gt;'Datastore.Rename',&lt;BR /&gt;'Extension.Register',&lt;BR /&gt;'Extension.Unregister',&lt;BR /&gt;'Extension.Update',&lt;BR /&gt;'Global.CancelTask',&lt;BR /&gt;'Host.Config.AdvancedConfig',&lt;BR /&gt;'Host.Config.NetService',&lt;BR /&gt;'Host.Config.Settings',&lt;BR /&gt;'Host.Config.Storage',&lt;BR /&gt;'StoragePod.Config',&lt;BR /&gt;'StorageViews.ConfigureService',&lt;BR /&gt;'StorageViews.View',&lt;BR /&gt;'System.Anonymous',&lt;BR /&gt;'System.Read',&lt;BR /&gt;'System.View',&lt;BR /&gt;'Task.Create',&lt;BR /&gt;'Task.Update')&lt;BR /&gt;# Original Script Simplivity Privileges&lt;BR /&gt;# 'Alarm.Create',&lt;BR /&gt;# 'Alarm.DisableActions',&lt;BR /&gt;# 'Alarm.Edit',&lt;BR /&gt;# 'Alarm.SetStatus',&lt;BR /&gt;# 'Alarm.Delete',&lt;BR /&gt;# 'Extension.Register',&lt;BR /&gt;# 'Extension.Update',&lt;BR /&gt;# 'Extension.Unregister',&lt;BR /&gt;# 'Global.Health',&lt;BR /&gt;# 'Global.LogEvent',&lt;BR /&gt;# 'Global.ManageCustomFields',&lt;BR /&gt;# 'Global.SetCustomField',&lt;BR /&gt;# 'Global.Diagnostics',&lt;BR /&gt;# 'Host.Cim.CimInteraction',&lt;BR /&gt;# 'Task.Create',&lt;BR /&gt;# 'Task.Update',&lt;BR /&gt;# 'VApp.AssignVApp',&lt;BR /&gt;# 'VApp.Unregister',&lt;BR /&gt;# 'VApp.ApplicationConfig',&lt;BR /&gt;# 'VirtualMachine.Config.ManagedBy',&lt;BR /&gt;# 'VirtualMachine.Config.Settings',&lt;BR /&gt;# 'VirtualMachine.State.RemoveSnapshot',&lt;BR /&gt;# 'VirtualMachine.State.CreateSnapshot'&lt;BR /&gt;&lt;BR /&gt;Write-Host "Connecting to vCenter at $vCenterFQDN"`n -ForeGroundColor Cyan&lt;BR /&gt;Connect-VIServer $vCenterFQDN | Out-Null&lt;BR /&gt;&lt;BR /&gt;Write-Host "Create New $RoleName Role"`n -ForeGroundColor Cyan&lt;BR /&gt;New-VIRole -Name $RoleName -Privilege (Get-VIPrivilege -id $Custom_Privileges) | Out-Null&lt;BR /&gt;&lt;BR /&gt;Write-Host "Set Permissions for $Custom_User using the new $RoleName Role"`n -ForeGroundColor Cyan&lt;BR /&gt;#Get the Root Folder&lt;BR /&gt;$rootFolder = Get-Folder -NoRecursion&lt;BR /&gt;#Create the Permission&lt;BR /&gt;New-VIPermission -Entity $rootFolder -Principal $Custom_User -Role $RoleName -Propagate:$true | Out-Null&lt;BR /&gt;&lt;BR /&gt;#Disconnect from the vCenter Server&lt;BR /&gt;Write-Host "Disconnecting from vCenter at $vCenterFQDN"`n -ForeGroundColor Cyan&lt;BR /&gt;Disconnect-VIServer $vCenterFQDN -Confirm:$false&lt;BR /&gt;&lt;BR /&gt;#End&lt;/P&gt;</description>
    <pubDate>Thu, 28 Mar 2019 03:10:57 GMT</pubDate>
    <dc:creator>elkhornps</dc:creator>
    <dc:date>2019-03-28T03:10:57Z</dc:date>
    <item>
      <title>vCenter permissions when using the plugin</title>
      <link>https://community.hpe.com/t5/application-integration/vcenter-permissions-when-using-the-plugin/m-p/6984838#M634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In our company we have lots of Engineers that are responsible for customer VM's and this involves creating and growing datastores in which the Nimble plugin comes in great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We did have an issue when limiting permissions in vCenter, after setting the correct permissions in vCenter I was able to manually create and expand datastores but when trying this with the Nimble plugin it just returned an error saying "No Permission()" without any kind of error code.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="2961" alt="image.png" class="jive-image image-1" src="https://community.hpe.com/legacyfs/online/2961_image.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The lack of a proper error code was a bit frustrating as it gives you no lead into a direction into which to search.&lt;/P&gt;&lt;P&gt;As a user with Administrative permissions there was no problem and as said before I could manually to all the steps needed to grow or create datastores. So it seemed that the Nimble plugin does something extra.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After talking to Support about this we came to the conclusion that the best way to troubleshoot was to give all permissions an remove them until it breaks, which would be very time consuming but if it would solve the problem it's the best option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I eventually found the "holy checkbox", the Tasks permission, it appears that when a datastore operation is initiated from the Nimble plugin this is done via a task, as I started my initial role within vCenter as a copy of the power user role this permission was not set. After setting the "create tasks permission it all came to life:&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="2963" alt="Screen Shot 2017-01-02 at 12.57.35.png" class="jive-image image-3" src="https://community.hpe.com/legacyfs/online/2963_Screen Shot 2017-01-02 at 12.57.35.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;P&gt;After setting only this permission and trying to grow a datastore I was getting some nice error messages from vCenter which helps to set the rest of the permissions needed for engineers.&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="2962" alt="image (1).png" class="jive-image image-2" src="https://community.hpe.com/legacyfs/online/2962_image (1).png" style="height: 199px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As the need for the "Tasks" permissions is not really documented in the Nimble Documentation I can imaging others out there are searching for this, and I would post it here hoping it will help someone along the way.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jan 2017 12:00:46 GMT</pubDate>
      <guid>https://community.hpe.com/t5/application-integration/vcenter-permissions-when-using-the-plugin/m-p/6984838#M634</guid>
      <dc:creator>rvvliet78110</dc:creator>
      <dc:date>2017-01-02T12:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: vCenter permissions when using the plugin</title>
      <link>https://community.hpe.com/t5/application-integration/vcenter-permissions-when-using-the-plugin/m-p/6984839#M635</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rick, thank you very much for outlining this requirement, I'm sure it will help for any future considerations and plugin usage.&lt;/P&gt;&lt;P&gt;As a side note, when reviewing the VMware integration guide the plugin page, first not outline the permissions needed: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://infosight.nimblestorage.com/InfoSight/media/cms/active/pubs_VMware_Integration_Guide_aik1472500839218.ditamap.whz/eci1458666895795.html" title="https://infosight.nimblestorage.com/InfoSight/media/cms/active/pubs_VMware_Integration_Guide_aik1472500839218.ditamap.whz/eci1458666895795.html"&gt;Nimble Storage InfoSight&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="p"&gt;The following privileges are required for using the vCenter plugin. &lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Datastore.AllocateSpace&lt;/LI&gt;&lt;LI&gt;Datastore.Config&lt;/LI&gt;&lt;LI&gt;Datastore.Delete&lt;/LI&gt;&lt;LI&gt;Datastore.Move&lt;/LI&gt;&lt;LI&gt;Datastore.Rename&lt;/LI&gt;&lt;LI&gt;Extension.Register&lt;/LI&gt;&lt;LI&gt;Extension.Unregister&lt;/LI&gt;&lt;LI&gt;Extension.Update&lt;/LI&gt;&lt;LI&gt;Global.CancelTask&lt;/LI&gt;&lt;LI&gt;Host.Config.AdvancedConfig&lt;/LI&gt;&lt;LI&gt;Host.Config.NetService&lt;/LI&gt;&lt;LI&gt;Host.Config.Settings&lt;/LI&gt;&lt;LI&gt;Host.Config.Storage&lt;/LI&gt;&lt;LI&gt;StoragePod.Config&lt;/LI&gt;&lt;LI&gt;System.Anonymous&lt;/LI&gt;&lt;LI&gt;System.Read&lt;/LI&gt;&lt;LI&gt;System.View&lt;/LI&gt;&lt;LI&gt;Task.Create&lt;/LI&gt;&lt;LI&gt;Task.Update&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As for the error code, I've created a bug to detail the permission failure in the error code. &lt;/P&gt;&lt;P&gt;Thanks, &lt;/P&gt;&lt;P&gt;Moshe.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2017 09:48:16 GMT</pubDate>
      <guid>https://community.hpe.com/t5/application-integration/vcenter-permissions-when-using-the-plugin/m-p/6984839#M635</guid>
      <dc:creator>mblumberg16</dc:creator>
      <dc:date>2017-01-03T09:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: vCenter permissions when using the plugin</title>
      <link>https://community.hpe.com/t5/application-integration/vcenter-permissions-when-using-the-plugin/m-p/6984840#M636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Moshe,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for you reply, this was actually the information I was looking for when opening the support ticket (which actually stated "&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;Is there a guide for setting &lt;/SPAN&gt;&lt;SPAN class="il" style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;permissions&lt;/SPAN&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt; within vCenter to give some users &lt;/SPAN&gt;&lt;SPAN class="il" style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt;permission&lt;/SPAN&gt;&lt;SPAN style="color: #222222; font-family: arial, sans-serif; font-size: 12.8px;"&gt; to grow volumes/datastores?"&lt;/SPAN&gt;, but I didn't get a reference back to this document after which I started my journey of finding the correct permissions myself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2017 10:05:19 GMT</pubDate>
      <guid>https://community.hpe.com/t5/application-integration/vcenter-permissions-when-using-the-plugin/m-p/6984840#M636</guid>
      <dc:creator>rvvliet78110</dc:creator>
      <dc:date>2017-01-03T10:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: vCenter permissions when using the plugin</title>
      <link>https://community.hpe.com/t5/application-integration/vcenter-permissions-when-using-the-plugin/m-p/7039992#M1131</link>
      <description>&lt;P&gt;Edit: I was able to create the custom role using powerCLI based on a script from vHersey (see other reply) that I tweaked using the permissions listed here and in the linked documentation. If you wish to register the VASA Provider, you must add the following to the list above.&lt;/P&gt;&lt;P&gt;- StorageViews.ConfigureService&lt;BR /&gt;- StorageViews.View&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;If you need to create the role through the GUI, here is the list of permissions that are configured as the wording does not match.&amp;nbsp; This is for vCenter 6.7U1.&amp;nbsp;The Storage views section is needed for VASA Provider.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Datastore&lt;BR /&gt;- Allocate space&lt;BR /&gt;- Configure datastore&lt;BR /&gt;- Move datastore&lt;BR /&gt;- Remove datastore&lt;BR /&gt;- Rename datastore&lt;/P&gt;&lt;P&gt;Extension&lt;BR /&gt;- Register extension&lt;BR /&gt;- Unregister extension&lt;BR /&gt;- Update extension&lt;/P&gt;&lt;P&gt;Global&lt;BR /&gt;- Cancel task&lt;/P&gt;&lt;P&gt;Host&lt;BR /&gt;- Configuration&lt;BR /&gt;- - Advanced settings&lt;BR /&gt;- - Change settings&lt;BR /&gt;- - Security profile and firewall&lt;BR /&gt;- - Storage partition configuration&lt;/P&gt;&lt;P&gt;Datastore cluster&lt;BR /&gt;- Configure a datastore cluster&lt;/P&gt;&lt;P&gt;Storage views&lt;BR /&gt;- Configure service&lt;BR /&gt;- View service&lt;/P&gt;&lt;P&gt;Tasks&lt;BR /&gt;- Create task&lt;BR /&gt;- Update task&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 03:09:01 GMT</pubDate>
      <guid>https://community.hpe.com/t5/application-integration/vcenter-permissions-when-using-the-plugin/m-p/7039992#M1131</guid>
      <dc:creator>elkhornps</dc:creator>
      <dc:date>2019-03-28T03:09:01Z</dc:date>
    </item>
    <item>
      <title>Re: vCenter permissions when using the plugin</title>
      <link>https://community.hpe.com/t5/application-integration/vcenter-permissions-when-using-the-plugin/m-p/7039993#M1132</link>
      <description>&lt;P&gt;Edit: Add additional privileges for VASA provider (StorageViews)&lt;/P&gt;&lt;P&gt;I can't attach the script file, so we'll see how the copy/paste does.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;#&lt;BR /&gt;# PowerCLI script to create Custom Role which includes required permissions&lt;BR /&gt;# and assign Custom Service Account to Role&lt;BR /&gt;# Usage Create_Custom_Role.ps1 -vCenter vCenterFQDNorIP -Username ServiceAccountName -Domain AuthenticationDomain -RoleName CustomRoleName&lt;BR /&gt;# The user account must already exist, this script will not create the user account.&lt;BR /&gt;# Original Script Author vHersey&lt;BR /&gt;# Link to original script: &lt;A href="http://www.vhersey.com/2015/06/17/powercli-create-vcenter-role-and-assign-user-permissions/" target="_blank" rel="noopener"&gt;http://www.vhersey.com/2015/06/17/powercli-create-vcenter-role-and-assign-user-permissions/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;# Get Commandline Parameters - All are required&lt;BR /&gt;param(&lt;BR /&gt;[string]$vCenter,&lt;BR /&gt;[string]$Username,&lt;BR /&gt;[string]$Domain,&lt;BR /&gt;[string]$RoleName&lt;BR /&gt;)&lt;BR /&gt;&lt;BR /&gt;clear-host&lt;BR /&gt;&lt;BR /&gt;$usage = "Create_Custom_Role.ps1 -vCenter vCenterFQDNorIP -Username CustomServiceAccountName -Domain AuthenticationDomain -RoleName CustomRoleName"&lt;BR /&gt;$example = 'Create_Custom_Role.ps1 -vCenter "vcenter.acme.local" -Username svtuser -Domain acme -RoleName CustomRoleName'&lt;BR /&gt;&lt;BR /&gt;Write-Host "PowerCLI script to create Custom Role which includes required privileges and assigns the Custom Service Account to Role" -ForeGroundColor Cyan&lt;BR /&gt;&lt;BR /&gt;if ( !$vCenter -or !$Username -or !$Domain -or !$RoleName ) {&lt;BR /&gt;write-host `n `n"Missing Required Parameter - vCenter, Username, Domain, and RoleName are required." `n -ForeGroundColor Red&lt;BR /&gt;write-host "Usage: $usage" `n&lt;BR /&gt;write-host "Example: $example" `n&lt;BR /&gt;exit&lt;BR /&gt;}&lt;/P&gt;&lt;P&gt;write-host "vCenter: $vCenter"&lt;BR /&gt;write-host "User: $Username"&lt;BR /&gt;write-host "Domain: $Domain"&lt;BR /&gt;write-host "RoleName: $RoleName"&lt;BR /&gt;&lt;BR /&gt;$vCenterFQDN = $vCenter&lt;BR /&gt;&lt;BR /&gt;# Custom Service Account User&lt;BR /&gt;#The Custom User account is a non-login, privileged, vCenter Server account that you specify during deployment. OmniCube uses this account to execute privileged tasks.&lt;BR /&gt;$Custom_User = "$Domain\$Username"&lt;BR /&gt;&lt;BR /&gt;# Custom Role Name&lt;BR /&gt;#Edit - No a paramater&lt;BR /&gt;#$Custom_Role = "Custom"&lt;BR /&gt;&lt;BR /&gt;# Privileges to assign to role&lt;BR /&gt;# See the product Administrators Guide for Required Permissions&lt;BR /&gt;# Nimble vCenter Privileges&lt;BR /&gt;$Custom_Privileges = @(&lt;BR /&gt;'Datastore.AllocateSpace',&lt;BR /&gt;'Datastore.Config',&lt;BR /&gt;'Datastore.Delete',&lt;BR /&gt;'Datastore.Move',&lt;BR /&gt;'Datastore.Rename',&lt;BR /&gt;'Extension.Register',&lt;BR /&gt;'Extension.Unregister',&lt;BR /&gt;'Extension.Update',&lt;BR /&gt;'Global.CancelTask',&lt;BR /&gt;'Host.Config.AdvancedConfig',&lt;BR /&gt;'Host.Config.NetService',&lt;BR /&gt;'Host.Config.Settings',&lt;BR /&gt;'Host.Config.Storage',&lt;BR /&gt;'StoragePod.Config',&lt;BR /&gt;'StorageViews.ConfigureService',&lt;BR /&gt;'StorageViews.View',&lt;BR /&gt;'System.Anonymous',&lt;BR /&gt;'System.Read',&lt;BR /&gt;'System.View',&lt;BR /&gt;'Task.Create',&lt;BR /&gt;'Task.Update')&lt;BR /&gt;# Original Script Simplivity Privileges&lt;BR /&gt;# 'Alarm.Create',&lt;BR /&gt;# 'Alarm.DisableActions',&lt;BR /&gt;# 'Alarm.Edit',&lt;BR /&gt;# 'Alarm.SetStatus',&lt;BR /&gt;# 'Alarm.Delete',&lt;BR /&gt;# 'Extension.Register',&lt;BR /&gt;# 'Extension.Update',&lt;BR /&gt;# 'Extension.Unregister',&lt;BR /&gt;# 'Global.Health',&lt;BR /&gt;# 'Global.LogEvent',&lt;BR /&gt;# 'Global.ManageCustomFields',&lt;BR /&gt;# 'Global.SetCustomField',&lt;BR /&gt;# 'Global.Diagnostics',&lt;BR /&gt;# 'Host.Cim.CimInteraction',&lt;BR /&gt;# 'Task.Create',&lt;BR /&gt;# 'Task.Update',&lt;BR /&gt;# 'VApp.AssignVApp',&lt;BR /&gt;# 'VApp.Unregister',&lt;BR /&gt;# 'VApp.ApplicationConfig',&lt;BR /&gt;# 'VirtualMachine.Config.ManagedBy',&lt;BR /&gt;# 'VirtualMachine.Config.Settings',&lt;BR /&gt;# 'VirtualMachine.State.RemoveSnapshot',&lt;BR /&gt;# 'VirtualMachine.State.CreateSnapshot'&lt;BR /&gt;&lt;BR /&gt;Write-Host "Connecting to vCenter at $vCenterFQDN"`n -ForeGroundColor Cyan&lt;BR /&gt;Connect-VIServer $vCenterFQDN | Out-Null&lt;BR /&gt;&lt;BR /&gt;Write-Host "Create New $RoleName Role"`n -ForeGroundColor Cyan&lt;BR /&gt;New-VIRole -Name $RoleName -Privilege (Get-VIPrivilege -id $Custom_Privileges) | Out-Null&lt;BR /&gt;&lt;BR /&gt;Write-Host "Set Permissions for $Custom_User using the new $RoleName Role"`n -ForeGroundColor Cyan&lt;BR /&gt;#Get the Root Folder&lt;BR /&gt;$rootFolder = Get-Folder -NoRecursion&lt;BR /&gt;#Create the Permission&lt;BR /&gt;New-VIPermission -Entity $rootFolder -Principal $Custom_User -Role $RoleName -Propagate:$true | Out-Null&lt;BR /&gt;&lt;BR /&gt;#Disconnect from the vCenter Server&lt;BR /&gt;Write-Host "Disconnecting from vCenter at $vCenterFQDN"`n -ForeGroundColor Cyan&lt;BR /&gt;Disconnect-VIServer $vCenterFQDN -Confirm:$false&lt;BR /&gt;&lt;BR /&gt;#End&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 03:10:57 GMT</pubDate>
      <guid>https://community.hpe.com/t5/application-integration/vcenter-permissions-when-using-the-plugin/m-p/7039993#M1132</guid>
      <dc:creator>elkhornps</dc:creator>
      <dc:date>2019-03-28T03:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: vCenter permissions when using the plugin</title>
      <link>https://community.hpe.com/t5/application-integration/vcenter-permissions-when-using-the-plugin/m-p/7040114#M1133</link>
      <description>&lt;P&gt;Thank you for letting us know, and for the neat script!&lt;/P&gt;
&lt;P&gt;Our docs will be updated with the upcoming version of our vcplugin :)&lt;/P&gt;
&lt;P&gt;--m&lt;/P&gt;</description>
      <pubDate>Thu, 28 Mar 2019 15:22:04 GMT</pubDate>
      <guid>https://community.hpe.com/t5/application-integration/vcenter-permissions-when-using-the-plugin/m-p/7040114#M1133</guid>
      <dc:creator>mamatadesaiNim</dc:creator>
      <dc:date>2019-03-28T15:22:04Z</dc:date>
    </item>
  </channel>
</rss>

