Summary: Learn how to use the warning redirection operator to suppress Windows PowerShell warning messages when importing a module.
How can you hide the warning message from a Windows PowerShell module when you import it if the module contains an unapproved verb?
Use the warning stream redirection operator when importing the module, and redirect the warning message to $null:
Import-Module *sql* 3>$null