How to add a profile instance from an automation script?
22nd June 2023
Hi Gina, Below a sample about how to create a profile instance. var parentProfileInstance = srmHelpers.ProfileHelper.GetProfileInstanceByName(serviceProfileData.Name); var profileInstance = new Skyline.DataMiner.Net.Profiles.ProfileInstance { Name = name, AppliesToID = parentProfileInstance.AppliesToID, }; profileInstance.BasedOnIDs.Add(parentProfileInstance.ID); …