Upgrade – What does the update users step really does?
23rd July 2025
Hi Catarina, The step is very straightforward. According to the Upgrade docs Any step starting with Update [x] will simply copy over the contents of the folder [x] from the …
Answer
23rd July 2025
Hi Catarina, The step is very straightforward. According to the Upgrade docs Any step starting with Update [x] will simply copy over the contents of the folder [x] from the …
23rd July 2025
Hi Simon, When you import elements, they will be created on the Data Miner agent to which you are connected. This means that one way to choose where the import …
23rd July 2025
Hi Hari, There is no limit in how much history records are saved for a DOM Instance. As soon as the setting to enable history (DomInstanceHistorySettings) is enabled, changes to …
23rd July 2025
Hi Shawn, please see the attached. We want to avoid making links to other systems that can be broken. So we have the thought of adding the documents to DM. …
22nd July 2025
Hi Edib, You’re right—the current DOM documentation is quite vague and avoids giving specific numbers. That’s pretty much intentional, as the ideal setup really depends on many factors, including the …
22nd July 2025
Hi Felix, I’m afraid this won’t be possible without actually reading the files from the filesystem, the only things the AttachmentsHelper provide is a method to get all filenames from …
22nd July 2025
Hi Bautista, The safest way would be to generate your own exports using the same class structure as you used to import them. This ensures that the packages are and …
22nd July 2025
Hi Felix, Nice that you got the download through IAS working! The AttachmentsHelper (DomHelper.DomInstances.Attachments) has a method GetFileNames() which returns all file names of attachments for a DOM Instance. You …
22nd July 2025
Hi Nils, It should be possible to get a list of all connected users as following: var users = connection.HandleResponseMessage(new GetInfoMessage(InfoType.ClientList)) .Cast<LoginInfoResponseMessage>() .Where(c => (c.ConnectionAttributes & ConnectionAttributes.Cube) == ConnectionAttributes.Cube) .Select(c …
22nd July 2025
Can you elaborate the use case why you would like to restart the element? Depending on your use case, there might bet better alternatives than restarting the element.
22nd July 2025
Hi Deema, You should be able to achieve your goal by implementing a table similar to the one in Alberto’s answer to another question. Besides the table, you then need …
22nd July 2025
Hi Alberto. Last week, we merged the “User Guide” section into the “DataMiner Overview” section. As to folders, everything is now under the “/dataminer/” folder. Basically, the “basic functionality” folder …
22nd July 2025
Hi Kaoi, In may case, I added following config for NXAPI. feature nxapi nxapi http port 80 nxapi use-vrf default And also, have you tried manual polling by clicking button …
22nd July 2025
Hi Jesus, I have been able to reproduce the issue that you are experiencing. When using the method GetService to retrieve information about a service, I am also unable to …
21st July 2025
For the time being, I’m using this class for deserializing Modules: Somethings to know is that if you use this class, you’re going to need to set your JsonSerializerSettings to …