What format do CMDLets follow?
Verb-Noun
What version of Windows first introduced PowerShell?
Windows 7 and Windows Server 2012 R2
What is PowerShell?
A scripting langauge to use directly interact with Windows
What technology was Powershell built on?
.NET
What is the native PowerShell command to view the working directory?
Get-Location
What is the command to list files within a directory?
Get-ChildItem
What is the native command to change directory within PowerShell?
Set-Location
What is the CMDLet use to create a new file within PowerShell?
New-Item
What switch needs to be added to create a directory?
-Type Directory
Which of the following commands would successfully write content to a new file?
$content = 'Hello world! This is the first line of my file.' | out-file -filepath C:\temp\testfile1.txt
Which .NET class can be used to create a new folder?
CreateDirectory
When using objects with PowerShell we first must define the object, which command would define an object?
$newdirectory = new-object -ComObject scripting.filesystemobject