function CleanupItem([string]$item)
{
if (($item.StartsWith("*") -eq $true) -or ($item.EndsWith("*") -eq $true))
{
get-childitem -recurse -force | where {$_.name -like $item} | foreach ($_) {remove-item $_.fullname -recurse -force}
}
else
{
get-childitem -recurse -force | where {$_.name -eq $item} | foreach ($_) {remove-item $_.fullname -recurse -force}
}
}