Hello world!
Welcome to my blog, I am starting this blog to post random musings about technology, learning about Powershell, VMware, and other technologies. The goal is to post somewhat helpful comments and provide a link to valuable learning resources.
To start things off, here is using the write-host command to say Hello World!
#Hello World
write-host "Hello World!"
Explanation
- Write-Host sends typed output to the Host. The host is the name of your current Powershell window.
- The # symbol allows you to place comments into your scripts making things a lot easier to read and understand when you have to look at a script months later.
-Matt
Advertisement
