- AMD vs. INTEL vs. NVIDIA
- TCL LCD és LED TV-k
- Házi barkács, gányolás, tákolás, megdöbbentő gépek!
- MacBook Neo vs MacBook Air – Megéri a félár?
- AMD Ryzen 9 / 7 / 5 9***(X) "Zen 5" (AM5)
- Bluetooth hangszórók
- HiFi műszaki szemmel - sztereó hangrendszerek
- Nvidia GPU-k jövője - amit tudni vélünk
- Amlogic S905, S912 processzoros készülékek
- OLED TV topic
-
PROHARDVER!
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
- AMD vs. INTEL vs. NVIDIA
- TCL LCD és LED TV-k
- Házi barkács, gányolás, tákolás, megdöbbentő gépek!
- Forza sorozat (Horizon/Motorsport)
- Google Pixel topik
- 18. helyet ért a Samsung Galaxy S26 Ultra kamerarendszere a DxOMarknál
- Itt a Galaxy S26 széria: az Ultra fejlődött, a másik kettő alig
- Motoros topic
- Chieftec-Prohardver nyereményjáték
- Steam topic
- További aktív témák...
- Samsung Galaxy S10e 128GB, Kártyafüggetlen, 1 Év Garanciával
- BESZÁMÍTÁS! MSI Cyborg 15 A12VF FHD GAMER notebook - i5 12450H 16GB DDR5 512GB SSD RTX 4060 8GB
- HIBÁTLAN iPhone 13 256GB Pink -1 ÉV GARANCIA - Kártyafüggetlen, MS3732
- AKCIÓ! Sony PlayStation 5 825GB digital extra fejhallgatóval garanciával hibátlan működéssel
- AKCIÓ! Apple iPad Pro 13 M5 1TB Wifi tablet garanciával hibátlan működéssel
Állásajánlatok
Cég: Laptopműhely Bt.
Város: Budapest




