Tested on CU3 and CU4.
Description from CU4:
* Add-CMManagementPoint
Management point that is created by the cmdlet cannot be viewed in the admin
console.
Workaround
$mp = get-cmmanagementpoint -SiteSystemServerName yourmanagementpointfqdn
$props = $mp.EmbeddedProperties
$ep =
$mp.ConnectionManager.CreateEmbeddedObjectInstance("SMS_EmbeddedProperty")
$ep.PropertyName = "Authentication type"
$props.Remove("Authentication Type")
$props.Add("Authentication type", $ep)
$mp.EmbeddedProperties = $props
$mp.Put()
Not working, still get the same error and it seems not only me:
https://social.technet.microsoft.com/Forums/en-US/62aaf281-d518-4c6b-b4e4-86
621030a340/management-point-created-using-powershell-will-error-cm-console-w
hen-viewing-properties?forum=configmanagergeneral
Ideas?
-Roland