Thursday, May 11, 2023
HomeSoftware TestingPowerShell Write-Host Cmdlet: Tutorial (2023)

PowerShell Write-Host Cmdlet: Tutorial (2023)


On this article, we are going to discover the ins and outs of Write-Host, together with its syntax, widespread use instances, and suggestions for avoiding among the most typical errors.

Whether or not you’re new to PowerShell or a seasoned scripter, understanding tips on how to use Write-Host successfully will assist you to develop into a extra environment friendly and efficient administrator.

What does the Write-Host Cmdlet do?

The Write-Host cmdlet is a PowerShell command used to show output immediately within the console. When a PowerShell script or command is executed, the output is usually displayed within the console window.

However generally, the output could be too lengthy or troublesome to learn, particularly if it consists of a number of information sorts corresponding to strings, variables, and objects.

Write-Host means that you can show data in a extra readable and arranged format by specifying precisely what you need to show and the way it needs to be formatted.

This may be useful for debugging scripts, offering consumer suggestions, or just displaying data that will help you higher perceive what is going on inside your PowerShell surroundings.

 It is very important observe, nevertheless, that utilizing Write-Host excessively or inappropriately can result in points with script efficiency, readability, and maintainability, so it is very important use this device judiciously and in accordance with greatest practices.

Message formatting with the Write-Host Cmdlet

Formatting messages for readability is a crucial side of utilizing the Write-Host cmdlet in PowerShell. By formatting your messages correctly, you can also make them simpler to learn and perceive, and likewise make them extra visually interesting.

One widespread formatting possibility is to make use of completely different colours for various elements of your message. For instance, you would possibly need to use purple textual content for error messages, yellow textual content for warning messages, and inexperienced textual content for achievement messages.

To do that, you should use the -ForegroundColor parameter with values corresponding to Purple, Yellow, or Inexperienced. For instance, Write-Host “Error: One thing went incorrect” -ForegroundColor Purple will show the message “Error: One thing went incorrect” in purple textual content.

Suppose you will have a PowerShell script that performs a sequence of checks on a pc system, and also you need to show the outcomes of every examine in a transparent and arranged approach. Right here’s the way you would possibly use the Write-Host cmdlet to format your output:

# Verify system reminiscence

if ((Get-CimInstance Win32_OperatingSystem).FreePhysicalMemory -lt 1GB) {

    Write-Host "System reminiscence examine: WARNING - Low reminiscence detected" -ForegroundColor Yellow -BackgroundColor DarkRed

} else {

    Write-Host "System reminiscence examine: OK" -ForegroundColor Inexperienced

}


# Verify system disk house

if ((Get-CimInstance Win32_LogicalDisk -Filter "DeviceID='C:'").FreeSpace -lt 50GB) {

    Write-Host "System disk house examine: WARNING - Low disk house detected" -ForegroundColor Yellow -BackgroundColor DarkRed

} else {

    Write-Host "System disk house examine: OK" -ForegroundColor Inexperienced

}
Message formatting with the Write-Host Cmdlet

On this instance, we first examine the system reminiscence utilizing the Get-CimInstance cmdlet after which use the Write-Host cmdlet to show the outcomes. If low reminiscence is detected, the message is displayed in yellow textual content with a darkish purple background to point a warning. If reminiscence is adequate, the message is displayed in inexperienced textual content to point success.

We then carry out an identical examine for system disk house, once more utilizing the Write-Host cmdlet to format the output. If low disk house is detected, the message is displayed in yellow textual content with a darkish purple background. In any other case, the message is displayed in inexperienced textual content to point success.

In PowerShell, you may redirect the output of the Write-Host cmdlet to a file or one other stream utilizing the redirection operator “>”. Nonetheless, it is very important observe that Write-Host writes output on to the console, moderately than to the usual output stream that may be redirected.

Managing Write-Host Stream output

For those who attempt to redirect the output of Write-Host utilizing the “>” operator, you can see that the output will not be redirected as anticipated. As an alternative, you’ll get an empty file, as a result of the output was despatched to the console and to not the file.

To redirect the output of Write-Host, you should use the Begin-Transcript cmdlet to start out a transcript of the present session. It will seize all output that’s despatched to the console, together with output from Write-Host. For instance:

Begin-Transcript -Path "C:Output.txt"

Write-Host "This message might be redirected to a file"

Cease-Transcript
Managing Write-Host Stream output

On this instance, the Begin-Transcript cmdlet is used to start capturing output to a file referred to as “Output.txt”. The Write-Host cmdlet is then used to output a message to the console. When the script is completed, the Cease-Transcript cmdlet is used to cease capturing output.

After working this script, you may open the “Output.txt” file to see the message that was written utilizing Write-Host. The transcript will embody all console output from the session, so you may seize different output along with messages from Write-Host.

Total, whereas Write-Host doesn’t output to the usual output stream, you may nonetheless redirect its output by utilizing the Begin-Transcript cmdlet to seize all console output. This lets you redirect the output of Write-Host and different console output to a file or different stream.

In conclusion, the Write-Host cmdlet is a strong device in PowerShell for displaying output to the console. By utilizing the completely different formatting choices out there, corresponding to coloration and background coloration, we will make our output extra readable and visually interesting. For additional data, you may go to the Microsoft PowerShell web site for extra details about this.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

- Advertisment -
Google search engine

Most Popular

Recent Comments