Hirdetés
- iPhone topik
- Itt a Galaxy S26 széria: az Ultra fejlődött, a másik kettő alig
- OnePlus 15 - van plusz energia
- Yettel topik
- Samsung Galaxy S24 Ultra - ha működik, ne változtass!
- Poco X3 Pro - hardverfrissítés
- Samsung Galaxy Watch8 és Watch8 Classic – lelkes hiperaktivitás
- MIUI / HyperOS topik
- Alumíniumba öltözött a Nothing Phone (4a) Pro
- Xiaomi 17 Ultra - jó az optikája
-
Mobilarena
Sziasztok, udvozlunk mindenkit Magyarorszag legnagyobb VMware forumjaban!

Új hozzászólás Aktív témák
-
bugizozi
őstag
Sziasztok!
Ha valaki két vCenter között szeretne a jövőben role-okat migrálni akkor eme iromány hasznos lehet neki [link]
Clone roles between two virtual center servers
So i wanted to make a copy of a role that is in vc1. I wanted to have it in vc2.
Basically you can just open two vSphere clients, one to vc1 and other to vc2, and just select each privilege that is in this role and select it on second window. (click,click,click…) Yeah, if you have 1 role to copy, with very small amount of privileges then it is not such issue. But what if you have more?
Ok, let’s start from the beginning.Sitauation:
VC1 ---|
. |
. RoleA
VC2 ---|
. |
. RoleAWe want to copy roleA from VC1 to VC2.
First check if your powercli runs in multi VC mode.PowerCLI C:\Get-PowerCLIConfiguration
Proxy Policy Default Server
Mode
------------ ---------------
UseSystemProxy MultipleIf not, set the default server mode to multi.
Set-PowerCLIConfiguration -DefaultVIServerMode multiple -Confirm:$false
Once this is set you can now connect to multiple VC servers. Since -server handles array we can do:
Connect-viserver -server "VC1","VC2" -credential (get-credential)
Role that will be cloned has name RoleA within VC1, let’s view it:
Get-VIrole -Name "RoleA" -Server VC1 | fl *
We can see it’s description,Name,ID and what will be most important for us PrivilegeList
Let’s store the privilege list for this roleA from VC1. We will store those privileges ids as a string in string array.[string[]]$privsforRoleAfromVC1=Get-VIPrivilege -Role (Get-VIRole -Name "RoleA" -server VC1) |%{$_.id}
Once we have the privileges ids, we can now create blank role in VC2.
New-VIRole -name "RoleA" -Server VC2
We will now populate privileges in our empty RoleA within VC2:
Set-VIRole -role (get-virole -Name "RoleA" -Server VC2) -AddPrivilege (get-viprivilege -id $privsforRoleAfromVC1 -server VC2)
If everything went fine we should have now 1:1 copy of our RoleA. Let’s check it:
(Get-VIRole -Name RoleA -Server VC1).PrivilegeList.Count
(Get-VIRole -Name RoleA -Server VC2).PrivilegeList.CountIf you don’t want to use this additional variable that holds privileges you can put it directly in one line
Set-VIRole -role (get-virole -Name "RoleA" -Server VC2) -AddPrivilege (get-viprivilege -id (Get-VIPrivilege -Role (Get-VIRole -Name "RoleA" -server VC1) |%{$_.id}) -server VC2)
That’s it

Új hozzászólás Aktív témák
- Windows 10/11 Home/Pro , Office 2024 kulcsok
- Windows 10 11 Pro Office 19 21 Pro Plus Retail kulcs 1 PC Mac AKCIÓ! Automatikus 0-24
- Game Pass Ultimate előfizetések 1 - 36 hónapig azonnali kézbesítéssel a LEGOLCSÓBBAN! AKCIÓ!
- Fallout 4 Pip-Boy Edition eladó
- Eredeti Microsoft termékek - MEGA Akciók! Windows, Office Pro Plus, Project Pro, Visio Pro stb.
- Apple iPhone 15 Pro 1TB,Újszerű,Adatkabel,12 hónap garanciával
- HIBÁTLAN iPhone 13 128GB Starlight -1 ÉV GARANCIA - Kártyafüggetlen, MS4638
- Lenovo ThinkPad X13 Gen 2 i5-1145G7 16GB 512GB FHD+ HunVillBill- 1 év garancia
- LENOVO ThinkPad T14 Gen 2i - i7-1165G7, 16GB RAM, 512GB SSD, jó akku, számla, 6 hó gar
- ÁRGARANCIA! Épített KomPhone Ultra 7 265KF 32/64GB RAM RTX 5070 Ti 16GB GAMER PC termékbeszámítással
Állásajánlatok
Cég: Laptopműhely Bt.
Város: Budapest



