1/31
Looks like no tags are added yet.
Name | Mastery | Learn | Test | Matching | Spaced | Call with Kai |
|---|
No analytics yet
Send a link to your students to track their progress
What three distinct Windows shell coding environments are commonly used?
PowerShell; Visual Basic Script; CMD interpreter
What does Windows PowerShell combine?
A script language with hundreds of prebuilt modules called cmdlets
What can PowerShell cmdlets access and change?
Most components and features of Windows and Active Directory
What naming convention do PowerShell cmdlets use?
Verb-Noun
In PowerShell, what does Write-Host do?
Sends output to the terminal
In PowerShell, what does Read-Host do?
Prompts for user input
What does Microsoft provide for rapid PowerShell development?
Windows PowerShell Integrated Scripting Environment (ISE)
What file extension identifies PowerShell script files?
.ps1
What is VBScript based on, and what does it predate?
Microsoft's Visual Basic programming language; PowerShell
What file extension identifies VBScript files?
.vbs
By default, what interpreter executes VBScript, and how is output displayed?
wscript.exe; output in a desktop window or dialog
How can a VBScript be run to show output in a command prompt?
cscript.exe
What is a shell script written for the basic Windows CMD interpreter often described as?
A batch file
What file extension do batch files use?
.bat
What would you now normally use for Windows automation tasks, and what might you still need to support?
PowerShell; legacy VBScripts