diff --git a/website/source/docs/other/debugging.html.md b/website/source/docs/other/debugging.html.md index 2c35a820d..5d1040dbd 100644 --- a/website/source/docs/other/debugging.html.md +++ b/website/source/docs/other/debugging.html.md @@ -63,7 +63,7 @@ stdout using `&>`: $ vagrant up --debug &> vagrant.log ``` -On Windows: +On Windows in PowerShell (outputs to log and screen): ``` -$ vagrant up --debug > vagrant.log 2>&1 +$ vagrant up --debug 2>&1 | Tee-Object -FilePath ".\vagrant.log" ```