Variables/Workflows Flashcards
_________ are used to store data, values, strings, and commands that will be reused in a command line or script.
Variables
Each variable can contain one or more objects. It it contains more than one object it is called an “______”
Array
______ variables only exist until that script finishes running.
Script
_______ variables exist only until that function finishes running.
Function
In Windows PowerShell, _______ are temporary storage containers for objects.
Variables
Variables are ______. That means that they can be created inside a specific in-memory container, and they exist only as long as their container exists.
Scoped
What do you use to assign objects to a variable?
”=”
________ are series of steps (activities) that accomplish a given result.
Workflow
For running workflow tasks in a “fan out” fashion (multiple computers working simultaneously)
Parallel
For running workflow tasks in a serial fashion (one computer at a time).
Sequence
For setting a rollback/resume location in a workflow.
Checkpoint-Workflow
For gracefully pausing and resuming a workflow.
Suspend-Workflow
A _______ in general terms is a predefined business process.
workflow