How do I change the displayName of a DA that I've created? I created a DA called 'Mobile Iron', I now need this to be 'MobileIron'. I've gone to Properties of the DA and edited it there, but it's not updated the displayName. I've also exported the MP containing the DA and changed anything that had 'Mobile Iron' to 'MobileIron' but it's not updating:
I need the displayName to match the service’s name in Service Now so that I can use sysparm_query name={{properties.displayName}}
I have come across the same problem when trying to rename a management pack. It is language related. Probably the language/regional settings that were used while creating the distapp were not the same as the one you are using to rename it.
$instance = Get-SCOMclassinstance "Name of your distapp"
$displayname = $instance | Select-Object -ExpandProperty *.Displayname
$displayname.value = "New name of your distapp"
$instance.Commit()
Thanks - I created the DA and then edited it in the same console, and I only have one language set,
I’ve exported the MP containing the DA and done a find/replace for every instance of Mobile Iron to MobileIron, but it’s still not changed anything. Is there another Management Pack where User Created DA’s are stored/referenced?
I guess the display language in the browser is set to the same? When I had problem renaming it could show one name in the console and one in the web console.
It shows as Display Name ‘MobileIron’ in the SCOM console, SCOM web console, in the DA designer and in the SQL Table. The only place where it shows as ‘Mobile Iron’ is in the SquaredUp Monitored Entity perspective, as “displayName Mobile Iron”!