DMA HW Migration and missing Data in Cassandra

Hi Robert, There is no built-in functionality for this in DataMiner at the moment. It is possible through a custom automation script in which you select data from one system …

Send file via email after Automation script

Hi all, We’re trying this solution but when executing it returns: “Script ‘Automation script’ failed: The following was returned from the script: (Code: 0x800402D5) Skyline.DataMiner.Net.Exceptions.DataMinerCOMException: Failed to send e-mail. —> …

Dynamic Alarmtemplate

Hi Michael, I would suggest below approach as a starting point. Correlation rule in which you define some filters to eventually trigger an automation script Script will analyze the alarms …

Alerter throws Crypto RSA exception

Hi Jeroen, You can look for the file starting with 0c78787f8ee98a8aa8ff74d699d0c3e0_ in the subfolder of %AppData%\Microsoft\Crypto\RSA\ with your SID. Instead of deleting it, I would recommend to rename it (it …

Custom App: Execute action

Hello Miguel This is not possible yet with the latest version of the software. Please feel free to create a task if this feature would be required. For now, as …

Cube Deployment Methods / CefSharp MSI for 10.1 ?

Hi Tiago, These CefSharp MSI packages are only applicable for 10.2+ with RN31838. We do have an internal CefSharp v81 MSI package available that installs in C:\ProgramData\, you can contact …

Cloud not working

Hi Kris, Safari (both iOS & macOS) have the “Prevent cross-site tracking” option enabled by default. This prevents the login cycle from completing fully. The option can be disabled by …

DOM – Where can I find documentation?

Hi Jens, We’re currently working on adding this documentation. You can check the current draft in the DOM branch on GitHub: SkylineCommunications/dataminer-docs at DOM (github.com)

Retrieve profile parameters in protocol.

Hi Maximiliano, Below code can be used for this. using System.Collections.Generic; using Skyline.DataMiner.Net.Messages.SLDataGateway; using Skyline.DataMiner.Net.Profiles; using Skyline.DataMiner.Scripting public IEnumerable<Skyline.DataMiner.Net.Profiles.Parameter> GetAllProfileParameters(SLProtocol protocol) { ProfileHelper profileHelper = new ProfileHelper(protocol.SLNet.SendMessages); return profileHelper.ProfileParameters.Read(new TRUEFilterElement<Skyline.DataMiner.Net.Profiles.Parameter>()); …