# Suppress errors from a command

> Suppress error recording for a PowerShell command that supports it.

Source: https://docs.capaone.com/capainstaller/powerpacks/powerpack-tips-and-examples/suppress-errors-from-a-command/  
Product: CapaInstaller — a separate CapaSystems product; do not apply this page to any other.

How to suppress recording any errors when using PowerShell commands (if supported):

**PowerShell**

```powershell
Get-Process -Name 'dummy' -ErrorAction:Ignore
```
