PowerShell: Output

Example: Simple Output in PowerShell


	Write-Host "Hello, World!"
	

Output:

  Hello, World!

screenshot Simple Output in PowerShell


Example: Simple Output in PowerShell


	$P = Get-Process chr*
	Write-Output $P
	

Output:

screenshot Simple Output in PowerShell