I haven't tested but maybe this is a way to go...

using the dirplus() UDF
Code:
 $files = Dirplus('\\ [i]path[/i] \documents and settings\')
for each $file in $files
do ?'Would you like to delete this profile? y/n>' gets $deleteIt
until $deleteIt
if $deleteIt='y'
del '\\[i]path[/i]\documents and settings\$file'
endif
next




Maybe I'm an idiot but...