Codecademy - Powershell
Output Text into the terminal
See if other commands act on the "date"
Script to write date to the terminal
Write-Host "The Current Date Is:"
Get-DateAssigning a variable with "Prompt"
Using Read-Host to assign a Variable
/$UserName = Read-Host "Please enter your username"
Write-Host "Hello, $UserName!"Last updated