Comments
-
Bump
-
I want to install the agent via repository. What is the syntax for configuration if you want to specify the parameters in the shell command? In the swiagentaid.sh file i found this: swiagentaid.sh init<span style="font-weight:inherit;font-style:inherit;font-family:'Open Sans', sans-serif;"> <variable parameters></span> So…
-
Hmm i tried some different stuff In this example i think it works like expected. I'll look for the bug in my script and report it here. It seems to me that it is the position of the message.
-
Maybe this will help you. You only have to enter the orioncore, username, password and the caption of the node.
-
Hi, here my thoughts about your questions. (1) A few months ago I added nodes via Powershell script. So it as possible but you already mentioned it, it was possible to add multiply nodes with same ip. So you have to build a check that search if this ip is already in use. I think this check is built in for the WebGUI…
-
Found the solution changed the query to the following SELECT n.Caption, n.NodeiD, '/Orion/images/StatusIcons/Small-' + n.StatusIcon AS [_IconFor_Caption] FROM Orion.Nodes n WHERE NodeID > 4400 Result:
-
Hi, when I need something like this my script looks like this. $username = "YOURUSERNAME" $SecurePassword = ConvertTo-SecureString -AsPlainText -Force -String 'YOURPASSWORD' $cred = New-Object -typename System.Management.Automation.PSCredential -argumentlist $username, $Securepassword $SwisConnection = Connect-Swis…