ÿþ<html> <head> <title>Remove-ISItem</title> </head> <body> <h1>Remove-ISItem</h1> <div>Deletes the specified items.</div> <h2> Syntax </h2> <code>Remove-ISItem [-pInfo] &lt;Object&gt; [-WhatIf] [-Confirm] [&lt;CommonParameters&gt;]</code> <h2> Detailed Description </h2> <div> The Remove-ISItem function deletes one or more items. Both packages and SSIS folders are supported. </div> <h2> Related Commands </h2> <div> * <a href='Remove-ISItem.htm'>Remove-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>pInfo&nbsp;</td> <td>&nbsp;</td> <td>true&nbsp;</td> <td>true (ByValue)&nbsp;</td> <td>&nbsp;</td> </tr> <tr valign='top'> <td>WhatIf&nbsp;</td> <td>&nbsp;</td> <td>false&nbsp;</td> <td>false&nbsp;</td> <td>&nbsp;</td> </tr> <tr valign='top'> <td>Confirm&nbsp;</td> <td>&nbsp;</td> <td>false&nbsp;</td> <td>false&nbsp;</td> <td>&nbsp;</td> </tr> </table> <h2> Input Type </h2> <div>Microsoft.SqlServer.Dts.Runtime.PackageInfo You can pipe pInfo PackageInfo to Remove-ISItem.</div> <h2> Return Values </h2> <div>None This function does not generate any output.</div> <h2> Examples </h2> <h3> EXAMPLE 1</h3> <pre>get-isitem '\' 'msdb' 'Z002\sql2k8' | where {$_.name -like "sqlpsx*"} | remove-isitem</pre> <div>This command first gets items stored on the root path of the SSIS server Z002\SQL2K8 where the name matches sqlpsx and then removes the items. Both packages and folders that match the criteria will be removed from the SSIS server.</div> </body> </html>