I have tried this:
# Set-ExecutionPolicy Unrestricted
$VerbosePreference = 'Continue'
Write-Verbose "ABC"
$DebugPreference = "Continue"
Write-Debug "Something went wrong."
But both messages come either with the word: VERBOSE or DEBUG before the actual message.
Is there a way I can just display the message content only?