powershell print variable code example
Example 1: powershell print to console
Write-Output "test output"
Example 2: powershell print environment variables
#pws
$Env:path
Get-ChildItem env
Example 3: powershell echo variable
Write-Host "no newline test " -NoNewline