Get Checked Out Items
The following example gets the unique identifiers of the items that are currently checked out by the current user.
- Connect to the configuration web service.
Code Sample
# Gets the identifiers of the items that are checked out by the current user.
$identifiers = $xia.GET_CheckedOutItemIdentifiers();
foreach ($identifier in $identifiers)
{
Write-Host $identifier;
}