Functions/CmdNotFound/Disable-CommandNotFound.ps1
<#
.SYNOPSIS Disable the command not found actions. #> function Disable-CommandNotFound { [CmdletBinding()] param () $Script:CommandNotFoundEnabled = $false } |
<#
.SYNOPSIS Disable the command not found actions. #> function Disable-CommandNotFound { [CmdletBinding()] param () $Script:CommandNotFoundEnabled = $false } |