Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8459187
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T13:16:15+00:00 2026-06-10T13:16:15+00:00

I currently have a script that is executed as follows: .\script.ps1 param1 param2 2>&1

  • 0

I currently have a script that is executed as follows:
.\script.ps1 “param1” “param2” 2>&1 | tee -filePath buildlog.txt

I can’t find a way to do the following.. logging to both the console and file encapsulated within the script.
.\script.ps1 “param1” “param2”

Here’s my attempt at doing it:

powershelltest.ps1

param([string]$paramOne, [string]$paramTwo)

function DoWork()
{
 Write-Host '3'
}

function WriteLogFile()
{
    DoWork
 # The following would not be captured by Start-Transcript & Stop-Transcript
 # program.exe ....
 Write-Host '4'
}

function CollectorFunction()
{
    Write-Host '2'
 WriteLogFile;
    Write-Host '5'
}

Write-Host '1'
CollectorFunction 2>&1 | tee -filePath c:\log.foo
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T13:16:16+00:00Added an answer on June 10, 2026 at 1:16 pm

    If you want to write to a log file don’t use Write-Host. Use Write-Output or don’t use Write-* at all because Write-Output is the default e.g:

    Write-Output 'hello' > foo.txt
    

    is equivalent to:

    'hello' > foo.txt
    

    Write-Output sends output to the stdout stream (ie 1). Use Write-Error to send output to the error stream (ie 2). These two streams can be redirected. Write-Host more or less writes directly to the host UI bypassing output streams altogether.

    In PowerShell V3, you can also redirect the following streams:

    The Windows PowerShell redirection operators use the following characters
    to represent each output type:
      *   All output
      1   Success output
      2   Errors
      3   Warning messages
      4   Verbose output
      5   Debug messages
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I currently have a script being executed by a program that comes with its
I have a SQL script that is being executed in TOAD. Currently, I have
I currently have a script that deletes old log files and then takes any
I currently have a script that scrapes proxies off websites, but I'm just wondering
Currently we have a script that does maven build + tomcat deploy. Deploying to
I currently have a ajax script that dynamically builds two select boxes enabled with
I currently have a python script that runs every few minutes and picks up
I currently have a Perl CGI script that parses incoming XML requests using XML::Simple
I have a batch script that calls a process and currently it waits for
I'm modifying a PHP script that I have and it is currently outputting a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.