Skip To Content
PowerShell Gallery
Toggle navigation
Packages
Publish
Documentation
Sign in
Search PowerShell packages:
IsePackV2
1.4.1
Clear-Icicle.ps1
function
Clear-Icicle
{
[
CmdletBinding
(
SupportsShouldProcess
=
$true
,
ConfirmImpact
=
'High'
)
]
param
(
)
process
{
Get-Icicle
|
Remove-Icicle
@PSBoundParameters
}
}