53.7k views
3 votes
Write a PowerShell script that will display "Welcome to PowerShell" to the screen. Save the file as PSexercise1.ps1 and upload it to this assignment for credit. IMPORTANT!!! Before you can execute ANY script in PowerShell, you must set the execution policy to RemoteSigned. You do this by running the following command once and you won't have to enter it again: Set-ExecutionPolicy -ExecutionPolicy RemoteSigned Suggested commands to use:Write-Output Hint: Think of the bash command echo and how you used it earlier in the course.

User Willbattel
by
7.7k points

1 Answer

4 votes

Final answer:

To display 'Welcome to PowerShell' using a PowerShell script, use the Write-Output command and save the script as PSexercise1.ps1. Set the execution policy to RemoteSigned before running the script.

Step-by-step explanation:

One way to write a PowerShell script that displays 'Welcome to PowerShell' to the screen is to use the Write-Output command.

Here is the script:

Write-Output 'Welcome to PowerShell'

You can save this script as PSexercise1.ps1 and upload it for credit. Before running the script, make sure to set the execution policy to RemoteSigned by running the command: Set-ExecutionPolicy -ExecutionPolicy RemoteSigned

User Jgubman
by
7.2k points