Powershell verb to destroy a resource

I am trying to stick to an approved list of Powershell verbs when naming my cmdlets. I have a function that creates a resource, so it is called New-ClearCaseView. I would also like to make a function that destroys this resource when it is no longer in use. However, I do not see any paired verbs to go with New. To remove the verb is closest, I think, but this is to remove the resource from the collection, and not to actually destroy the resource.

Any suggestions? Is there a more recent list of accepted Powershell verbs?

Thank!

+3
source share
2 answers

(. del Remove-Item).

Unpublish ( , ). ( ).

+1

- 'delete' ?

0

All Articles