Help
Viewing all available commands


Viewing command help
Console
ISE


Documenting functions
Online appendix
Last updated
Get-Help Get-RenderingGet-Help Get-Rendering -Full<#
.SYNOPSIS
A short synopsis of this function.
.DESCRIPTION
A much more detailed description of this function, which outputs a value.
.PARAMETER Value
The value that will be output
.EXAMPLE
PS> Output-Value "My value"
My value
#>
Function Output-String
{
param(
[string]$value
)
Write-Host $value
} Get-Help Output-String