Dll Ref ignored in DIS

Hi Gerwin This can be solved by adding this tag to the cproj (SDK-style) of the script: <PropertyGroup> <DisableImplicitFrameworkReferences>true</DisableImplicitFrameworkReferences> </PropertyGroup> By default, Visual Studio adds the framework references, but they …

DM in Cloud Failover issue: VIPAcquired.ps1 file

Hi Landan, Normally DataMiner should execute the script automatically: more information can be found here: DataMiner Failover on Amazon Web Services Were you able to create the access key, and …

Connecting Cube via dataminer.services

Hi Tim Although it was used during Empower it has not been released to the public. This was just an alpha release to get some early feedback and data. Looking …

How to disable the button during the Pressed method?

Hi Michiel, I’ve pushed an example to github: DisabledWhenPressed The solution is to call Show(false); in your dialog class whenever you want the visuals to get updated, but haven’t finished …

Bulk script validation

Hi Dave Another option is to have those scripts in an Automation Script Solution (available via DIS). This way, when updating the SLSRMLibrary DLL in the solution, you can more …

Dashboard Dynamic Visuals – Unknown Grid Component

Hi Miguel, Could you try restarting the webserver? (Internet Information Services (IIS) -> Select your server -> Restart) The soft-launch options are cached in the webserver. Afaik a DataMiner restart …

Finding the parent Element in an automation script

Hi Elvio, With this snippet you can find fid the parent element. Element e= engine.FindElement(“DVE_E.1″); if (e.RawInfo.IsDynamicElement) { engine.GenerateInformation(${e.RawInfo.DveParentDmaId}/{.RawInfo.DveParentElementId}”); } note: This is an internal call and we do not …

Bulk script validation

Hi Dave, As far as I know there is no possibility yet to validate scripts in bulk. It could indeed by very hand to have this feature available. I suggest …