Good Morning,
I am using the VMware Dynamic Folder script, but I am trying to modify it a bit to include VAMI and UI additions. I would like these links to open in external browser. But for some reason I cannot get the pscustomobject to add the additional Properties section to make this work.
Any help would be appreciated.
Here is what I have so far but doesnt seem to set the option.
$vcenterwebObj=[pscustomobject]@{
Name = "ui"
Path = "/"
ComputerName = "https://$Name$"
Type='WebConnection'
Color = "#4955E4"
Properties = @(
[pscustomobject]@{
OpenLinksInBrowser = "True"
}
)
}