PowerShell Quiz 3

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall with Kai
GameKnowt Play
New
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/9

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

10 Terms

1
New cards

The | character is called a ______________

pipe or pipeline

2
New cards

The PowerShell ISE is an acronym for

Integrated Script Environment

3
New cards

Which of the commands below illustrates the best way to invoke the script Script1 which resides in my current directory?

.\Script1

4
New cards

You can use an editor such as Word to create PowerShell Scripts.

False

5
New cards

____________________ is a process that matches each object you pass in to a command to parameters specified by the second command

Parameter binding

6
New cards

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

7
New cards

A ___________ is one or more commands, stored in a common file, that are executed individually when the file is executed.

script

8
New cards

What does the following command do?

command1 | more

the output of command1 is broken into multiple pages of output

9
New cards

PowerShell scripts must end with the extension ______.

.ps1

10
New cards

The PowerShell ISE allows you to enter a script and run or test it within the same application.

True