Connect to XIA Configuration with PowerShell to easily search, view information, make changes and export information to PDF or XML.
Connect to the server
$xia = New-WebServiceProxy -UseDefaultCredential -Uri "address" -Namespace XIAWebService
Sample Code
In the following example, a basic search is performed and the output displayed in the PowerShell window:
$searchResults = $xia.DO_PerformBasicSearch("DEMO-DHCP*")
foreach ($searchResult in $searchResults.SearchResult)
{
Write-Host $searchResult.Name "-" $searchResult.ItemID
}
Output