Quantcast
Channel: THWACK: Popular Discussions - Orion SDK
Viewing all articles
Browse latest Browse all 3719

SwisSnapin and PSremoting

$
0
0

SDK version 1.5

NPM version 10.2.2

 

I'm having trouble using SwisSnapin inside a PSremoting session.  Using local SW credentials so there isn't any double-hop windows authentication issues, I can't seem to get it to connect successfully.  My script works fine when run locally(even with the stored credentials), but as soon as it's done inside a WinRM session it stops connecting.  I removed the secure string for purposes of posting, but the secure string method was generated by converting a working credential password to a secure string and then saving that string as a variable.  This was tested working locally.  You can do the same by using

 

$cred | Get-Credential

$password = $cred.Password | ConvertFrom-SecureString

 

and storing that value in the below string(although the value printed to the string is incomplete so I was able to use PowerGui to fetch the entire string value from the variable.

 

 

$ctxsess = New-PSSession -ComputerName "server.hostname.com"

Invoke-Command -Session $ctxsess -ScriptBlock {

 

Add-PSSnapin SwisSnapin

 

$username = "\release_team"

$secpassword = "securestring would be here"

$password = ConvertTo-SecureString -String $secpassword

$credential = New-Object System.Management.Automation.PsCredential($username,$password)

# Connect to Solarwinds server

$swis = Connect-Swis -v2 -host 'solarwinds.hostname.com' -Credential $credential

 

 

$nodes = Import-Clixml -Path E:\Scripts\Files\UnmanagedServers.xml

 

 

#UnManage Nodes

 

 

foreach($node in $nodes) {

$nodename = $node.DNShostname

$nodeid = Get-SwisData $swis "SELECT NodeID FROM Orion.Nodes WHERE DNS like '$nodename'"

Write-Output "Unmanaging $nodename : $nodeid"

$now=[DateTime]::Now

$later=$now.AddHours(6)

Invoke-SwisVerb $swis Orion.Nodes Unmanage @("N:$nodeid",$now,$later,"false")

}

 

 

}

Remove-PsSession -Session $ctxsess


Viewing all articles
Browse latest Browse all 3719

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>