If you add some error checking like below there should be a message showing you the results of $objUser.Delete

 Code:
$objComputer = GetObject("WinNT://" + @WKSTA)
$arrFilter[0] = "User"
$objComputer.Filter = $arrFilter
For Each $objUser in $objComputer
	If $objUser.Name = "unwanted"
		? $objUser.Name
		? "Unwanted User detected, trying to delete..."
		$objUser.Delete
		? @ERROR
		? @SERROR
	EndIf
Next
_________________________
Mart

- Chuck Norris once sold ebay to ebay on ebay.