Tuesday, February 19, 2019

powershell Debug Verbose



  • Run $DebugPreference = 'Continue' to start seeing output from Write-Debug calls.
  • When you're done, restore preference variable $DebugPreference to its default value, using $DebugPreference = 'SilentlyContinue'
  •   $VerbosePreference = "continue"

No comments: