Comments
-
Sorry for not updating this sooner. We finally got some help on this and it turns out that the issue has to do with our specific setup. The main application server is joined to a different AD than the SolarWinds application uses for authentication. This is causing a problem because it is looking for the machine object and…
-
No, looks like that broke too.
-
Thanks for the reply. We are not using a URL rewrite. We do use a wildcard cert and an Additional Web Server,. The web server uses the wildcard URL while the main polling engine does not. I tried making the URL used for the connection to the primary polling engine match the wildcard cert and it didn’t seem to help.
-
The scripts I wrote for muting nodes and other management tasks fail as well with the error "Get-SwisData : An error occurred when verifying security for the message." The scripts work fine if I use the built-in SolarWinds Admin account, but get this error if any AD user runs the script. I did try the suggestion above as…
-
If I understand correctly, you have a long string in a PoSH script separated by $ characters. You could do this: ## Split the string using $ as the delimiter. $longString -split "$" ## This will produce separate strings that you can edit further. The first string would be $longstring[0]. Does this help?