Hirdetés
- Elektromos rásegítésű kerékpárok
- Luck Dragon: Asszociációs játék. :)
- eBay-es kütyük kis pénzért
- Hieronymus: Hogyan parkolj hátramenetben profi módon
- vrob: Próbálkozás 386 alaplap újraélesztésre
- Real Racing 3 - Freemium csoda
- D1Rect: Nagy "hülyétkapokazapróktól" topik
- sziku69: Fűzzük össze a szavakat :)
- sziku69: Szólánc.
- NvidiaRTX: Xiaomi Electric Scooter 6 Max: Az első rollerem
-
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
- Milyen asztali (teljes vagy fél-) gépet vegyek?
- Path of Exile (ARPG)
- Milyen okostelefont vegyek?
- AMD Ryzen 9 / 7 / 5 9***(X) "Zen 5" (AM5)
- Vigneau interaktív lokálblogja
- PlayStation 5
- Motoros topic
- Telekom otthoni szolgáltatások (TV, internet, telefon)
- Új csodafegyverrel gyorsítaná CPU-it az Intel
- Óra topik
- További aktív témák...
- M5! KÉSZLETKISÖPRÉSI ULTRAAKCIÓ!!! SPACE BLACK MacBook Pro 14" M5!!! 10C/10G 16GB 512GB Gar!
- ASUS Vivobook Pro 3K OLED 120Hz Notebook! Intel Ultra 7 155H / RTX 4050 / 16GB DDR5! BeszámítOK
- Telefon felváráslás!! Xiaomi 13T, Xiaomi 13T Pro, Xiaomi 14T, Xiaomi 14T Pro
- Cooler Master MasterFrame 700 ház / test bench
- 274 - Lenovo Legion Pro 5 (16IAX10H) - Intel Core U9 275HX, RTX 5070Ti
Állásajánlatok
Cég: Laptopműhely Bt.
Város: Budapest


