Hirdetés
- mefistofeles: Az elhízás nem akaratgyengeség!
- gban: Ingyen kellene, de tegnapra
- Geri Bátyó: Agglegénykonyha 14 – Kések, késélezés
- GoodSpeed: Daikin FTXF35E / RXF35F Sensira 3,3 kW Inverteres klíma - a Sztori
- Luck Dragon: Asszociációs játék. :)
- total90: SSD és HDD árak 2026-ban – most kell vásárolni, vagy várni 2028-ig?
- sziku69: Fűzzük össze a szavakat :)
- sziku69: Szólánc.
- Intelligencs: Karrierváltás - Első rész
- f(x)=exp(x): A laposföld elmebaj: Vissza a jövőbe!
-
LOGOUT
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
- Kormányok / autós szimulátorok topikja
- Kertészet, mezőgazdaság topik
- Hozd azt a cementet, báttya! Készül a Keychron billentyűzet!
- Gyúrósok ide!
- Debrecen és környéke adok-veszek-beszélgetek
- Samsung Galaxy Felhasználók OFF topicja
- Windows 11
- Audi, Cupra, Seat, Skoda, Volkswagen topik
- Steam topic
- Nintendo Switch 2
- További aktív témák...
- Vállalom Xianomi Okos kamerák, szoftveres javíttását
- Keresünk iPhone 16/16e/16 Plus/16 Pro/16 Pro Max
- Dobozos Új HP OmniBook 5 Flip 2-in-1 érintőkijelzős laptop i5-1334U 16gb ram 512ssd Garancia
- 165 - Lenovo Legion Pro 7 (16IRX9H) - Intel Core i9-14900HX, RTX 4080 (ELKELT)
- Apple iPhone 14 Pro Max 256GB, Kártyafüggetlen, 1 Év Garanciával
Állásajánlatok
Cég: Laptopműhely Bt.
Város: Budapest


