Uninstall CAT

Installation of CAT will take you couple of minutes.

First, check what you have installed with Get-Module CAT -ListAvailable.

If you want to uninstall specific version only:

Uninstall-Module CAT -RequiredVersion '0.10.0'

If you want to uninstall all CAT versions, run this:

Get-Module CAT -ListAvailable | Uninstall-Module -Force

The uninstallation will NOT remove any CAT projects or tests you created. It will only remove the PowerShell module.