• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/40

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

40 Cards in this Set

  • Front
  • Back

binary module

A Windows PowerShell module whose root module is a binary module file (.dll). A binary module may or may not include a module manifest
cmdlet
A task-oriented command that is used in the Windows PowerShell environment.
common parameter
A parameter that is added to all cmdlets and advanced functions by the Windows PowerShell engine
dot source
to start a command by typing a dot and a space before the command. Commands that are dot sourced run in the current scope instead of in a new scope
dynamic module
A module that exists only in memory. The Import-PSSession cmdlet creates dynamic modules
dynamic parameter
A parameter that is added to a Windows PowerShell cmdlet, function, or script under certain conditions. Cmdlets, functions, providers, and scripts can add dynamic parameters.
formatting file
A Windows PowerShell XML file that has the .format.ps1xml extension and that defines how Windows PowerShell displays an object based on its .NET Framework type.
global session state
The session state that contains the data that is accessible to the user of a Windows PowerShell session
host
The interface that the Windows PowerShell engine uses to communicate with the user
host application
A program that loads the Windows PowerShell engine into its process and uses it to perform operations
input processing method
A method that a cmdlet can use to process the records it receives as input. BeginProcessing, ProcessRecord, EndProcessing, StopProcessing method
manifest module
A Windows PowerShell module that has a manifest and whose ModulesToProcess key is empty
module manifest
A Windows PowerShell data file (.psd1) that describes the contents of a module and that controls how a module is processed
module session state
The session state that contains the public and private data of a Windows PowerShell module
non-terminating error
An error that does not stop Windows PowerShell from continuing to process the command
noun
The word that follows the hyphen in a Windows PowerShell cmdlet name. The noun describes the resources upon which the cmdlet acts
parameter set
A group of parameters that can be used in the same command to perform a specific action
pipe
to send the results of the preceding command as input to the next command
pipeline
A series of commands connected by pipeline operators
PSSession
A type of Windows PowerShell session that is created, managed, and closed by the user
root module
The module specified in the ModuleToProcess key in a module manifest
runspace
the operating environment in which each command in a pipeline is executed
script block
a collection of statements or expressions that can be used as a single unit. A script block can accept arguments and return values
script module
A module whose root module is a script module file (.psm1). A script module may or may not include a module manifest
script module file
A file that contains a Windows PowerShell script. The script defines the members that the script module exports. Script module files have the .psm1 file name extension
shell
The command interpreter that is used to pass commands to the operating system
switch parameter
A parameter that does not take an argument
terminating error
An error that stops Windows PowerShell from processing the command
transaction
An atomic unit of work. The work in a transaction must be completed as a whole; if any part of the transaction fails, the entire transaction fails
types file
A Windows PowerShell XML file that has the .ps1xml extension and that extends the properties of Microsoft .NET Framework types in Windows PowerShell
verb
The word that precedes the hyphen in a Windows PowerShell cmdlet name. The verb describes the action that the cmdlet performs
Windows PowerShell
A command-line shell and task-based scripting technology that provides IT administrators comprehensive control and automation of system administration tasks
Windows PowerShell command
The elements in a pipeline that cause an action to be carried out, either typed at the keyboard or invoked programmatically
Windows PowerShell data file
Text file that has the .psd1 extension. PowerShell uses data files for various purposes such as storing module manifest data and storing translated strings for script internationalization
Windows PowerShell drive
virtual drive that provides direct access to a data store. It can be defined by a Windows PowerShell provider or created at the command line
Windows PowerShell ISE
application that enables you to run commands and to write, test, and debug scripts in a friendly, syntax-colored, Unicode-compliant environment
Windows PowerShell module
self-contained reusable unit that allows you to partition, organize, and abstract your Windows PowerShell code
A PS module can contain:
cmdlets, providers, functions, variables, and other types of resources that can be imported as a single unit
PowerShell provider
.NET Framework-based program that makes the data in a specialized data store available in Windows PowerShell so that you can view and manage it
PowerShell snap-in
resource that defines a set of cmdlets, providers, and Microsoft .NET Framework types that can be added to the Windows PowerShell environment