1/9
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced |
---|
No study sessions yet.
The | character is called a ______________
pipe or pipeline
The PowerShell ISE is an acronym for
Integrated Script Environment
Which of the commands below illustrates the best way to invoke the script Script1 which resides in my current directory?
.\Script1
You can use an editor such as Word to create PowerShell Scripts.
False
____________________ is a process that matches each object you pass in to a command to parameters specified by the second command
Parameter binding
What happens when the following command is issued?
Get-Service -name "wuauserv" | Start-Service
the output of Get-service is piped into the start-service command, eliminating the need to specify parameters of what service to start
A ___________ is one or more commands, stored in a common file, that are executed individually when the file is executed.
script
What does the following command do?
command1 | more
the output of command1 is broken into multiple pages of output
PowerShell scripts must end with the extension ______.
.ps1
The PowerShell ISE allows you to enter a script and run or test it within the same application.
True