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