Open
Description
Look into adding a confirmation requirement when uninstalling a PSResource. Uninstall-Module does not do it, and maybe we should not do it for Uninstall-PSResource when a single specific module is uninstalled. But since Uninstall-PSResource handles Name wild card characters, we may want to prompt for confirmation in that case.
Uninstall-PSResource MyModule #No confirmation prompt
Uninstall-PSResource * #Prompt for confirmation before uninstalling all modules.
Uninstall-PSResource * -Force #No confirmation
Uninstall-PSResource * -Confirm:$false ??