I keep receiving invalid Username/password. My Orion account is linked with AD. Anyway I can connect using my AD credentials?
If you pass "-Trusted" to Connect-Swis, it will use your current Windows token to authenticate to Orion. No username/password necessary.
What versions of Orion and the SDK?
SDK is 1.6, Orion is 10.3
I am actually interested in connection to Cirrus which is running on NCM 7.0
thanks! That worked like a charm
The other option is to simply prompt for credentials.
$creds = Get-Credential
$swis = Connect-Swis -v2 -Credential $creds -host 'orion.foo.com'
Being able to use Trusted is certainly more convenient.
I tried this option before posting here. For some reason that didn''t work either. That made me wonder if this is some restriction regarding AD authenticated users to connect to SWIS API.
I don't understand how to accomplish this. Would you be so kind as to describe how to pass '-Trusted"? Perhaps with screen shots?