ÿþ<html> <head> <title>Get-ISItem</title> </head> <body> <h1>Get-ISItem</h1> <div>Gets the item at the specified location.</div> <h2> Syntax </h2> <code>Get-ISItem [-path] &lt;String&gt; [-topLevelFolder] &lt;String&gt; [-serverName] &lt;String&gt; [[-recurse]] [[-include] &lt;String&gt;] [[-exclude] &lt;String&gt;] [&lt;CommonParameters&gt;]</code> <h2> Detailed Description </h2> <div> The Get-ISItem function gets the item at the specified location. It does not get the contents of the item at the location unless you use a wildcard character (*) to request all the contents of the item. </div> <h2> Related Commands </h2> <div> * <a href='Get-ISItem.htm'>Get-ISItem</a><br/> </div> <h2> Parameters </h2> <table border='1'> <tr> <th>Name</th> <th>Description</th> <th>Required?</th> <th>Pipeline Input</th> <th>Default Value</th> </tr> <tr valign='top'> <td>path&nbsp;</td> <td>&nbsp;</td> <td>true&nbsp;</td> <td>false&nbsp;</td> <td>&nbsp;</td> </tr> <tr valign='top'> <td>topLevelFolder&nbsp;</td> <td>&nbsp;</td> <td>true&nbsp;</td> <td>false&nbsp;</td> <td>&nbsp;</td> </tr> <tr valign='top'> <td>serverName&nbsp;</td> <td>&nbsp;</td> <td>true&nbsp;</td> <td>false&nbsp;</td> <td>&nbsp;</td> </tr> <tr valign='top'> <td>recurse&nbsp;</td> <td>&nbsp;</td> <td>false&nbsp;</td> <td>false&nbsp;</td> <td>&nbsp;</td> </tr> <tr valign='top'> <td>include&nbsp;</td> <td>&nbsp;</td> <td>false&nbsp;</td> <td>false&nbsp;</td> <td>&nbsp;</td> </tr> <tr valign='top'> <td>exclude&nbsp;</td> <td>&nbsp;</td> <td>false&nbsp;</td> <td>false&nbsp;</td> <td>&nbsp;</td> </tr> </table> <h2> Input Type </h2> <div>None You cannot pipe objects to Get-ISItem.</div> <h2> Return Values </h2> <div>Microsoft.SqlServer.Dts.Runtime.PackageInfo Get-ISItem returns a Microsoft.SqlServer.Dts.Runtime.PackageInfo object.</div> <h2> Examples </h2> <h3> EXAMPLE 1</h3> <pre>get-isitem -path '\' -topLevelFolder 'msdb' -serverName 'Z002\SQL2K8' -recurse</pre> <div>This command recursively gets all of the SSIS packages and folders starting at the root ('\') level on SQL Server Z002\SQL2K8.</div> </body> </html>