Windows PowerShell – Hello World (1)

Making a program output “Hello World!” is the first program that one typically learns when getting started with a new language. You can read about Hello World in a Wikipedia article entitled Hello world program.

At the Windows PowerShell command prompt enter the following:

echo "Hello World!"

and hit enter. That’s all there is to it. In Part 2 learn how to write a short PowerShell script to display “Hello World!”

Leave a comment