0%

0/1 Lessons

Course Introduction

• 5min

0 / 2 lessons complete

Getting Started with Windows PowerShell

• 56min

0 / 8 lessons complete

Getting Help and Finding Commands

• 39min

0 / 6 lessons complete

PowerShell Command Syntax

• 33min

0 / 5 lessons complete

PowerShell Objects and Properties

• 35min

0 / 6 lessons complete

The PowerShell Pipeline

• 24min

0 / 2 lessons complete

PowerShell Providers

• 30min

0 / 5 lessons complete

PowerShell Arrays and Variables

• 28min

0 / 4 lessons complete

PowerShell Loops

• 19min

0 / 3 lessons complete

PowerShell Conditional Statements

• 11min

0 / 1 lessons complete

On Premises Lab Setup

• 36min

0 / 8 lessons complete

Basic Domain Administration with Windows PowerShell

• 2hr 27min

0 / 10 lessons complete

Send Emails with PowerShell

• 22min

0 / 2 lessons complete

PowerShell Desired State Configuration (DSC) Basics

• 1hr 48min

0 / 6 lessons complete

PowerShell Modules

• 58min

0 / 7 lessons complete

Powershell Challenges

• 1hr 55min

0 / 23 lessons complete

Section Overview
Full Access Account Required

Video | 5 min

The Trusted Hosts List Challenge
Full Access Account Required

Text | 5 min

The Trusted Hosts List Answer
Full Access Account Required

Video | 5 min

Starting a Remote Session Challenge
Full Access Account Required

Text | 5 min

Starting a Remote Session Answer
Full Access Account Required

Video | 5 min

Rename a Computer Challenge
Full Access Account Required

Text | 5 min

Rename a Computer Answer
Full Access Account Required

Video | 5 min

Change a Password on a Remote Computer Challenge
Full Access Account Required

Text | 5 min

Change a Password on a Remote Computer Answer
Full Access Account Required

Video | 5 min

How to Copy Files To-From a Remote Machine Challenge
Full Access Account Required

Text | 5 min

How to Copy Files To-From a Remote Machine using VSC Answer
Full Access Account Required

Video | 5 min

How to Export Logs to a CSV File Challenge
Full Access Account Required

Text | 5 min

How to Export Logs to a CSV File Answer
Full Access Account Required

Video | 5 min

How to Create Multiple Folders on the Host Machine using Powershell
Full Access Account Required

Text | 5 min

How to Create Multiple Folders on the Host Machine using Powershell Answer
Full Access Account Required

Video | 5 min

Who Rebooted the Server ID1074 Challenge
Full Access Account Required

Text | 5 min

Who Rebooted the Server
Full Access Account Required

Video | 5 min

How can you get Info on all your Hard Drives Challenge
Full Access Account Required

Text | 5 min

How can you get Info on all your Hard Drives Answer
Full Access Account Required

Video | 5 min

How can I get a list of CPU's and Installed Printers, Last Boot-up Time Challenge
Full Access Account Required

Text | 5 min

How can I get a List of CPU's and Installed Printers, Last Boot-up Time Answer
Full Access Account Required

Video | 5 min

How can I Automate Tasks with Task Scheduler Challenge
Full Access Account Required

Text | 5 min

How can I Automate Tasks with the Task Scheduler Answer
Full Access Account Required

Video | 5 min

Course Conclusion

• 1min

0 / 1 lessons complete

Answers to Questions 1-7 O-P-M

Instructions

Q&A (0)

Notes (0)

Resources (0)

Saving Progress...

Resources

There are no resources for this lesson.

Notes can be saved and accessed anywhere in the course. They also double as bookmarks so you can quickly review important lesson material.

Create note

In this lecture we’re going to review the questions and answers from the Objects, Properties and Methods section.

  1. Q: What are objects?
  2. Answer: 

Objects are things that we can interact with. For example: Like a boat or a car. Technically an object is the programmatic representation of anything. For example, an object is a cmdlet like get-eventlog or get-service .

  1. Q: What two components do objects have?
  2. Answer: 

Properties and Methods

Properties describe features

Methods describe actions or things that we can do with the object.

  1. Q: In our car example describe one of the properties or features of the car
  2. Answer: 

Headlights  

  1. Q: In our car example describe one of methods or actions (Things that you can do with one of the properties or features of the car.
  2. Answer: 

Turn on the headlights

  1. Q: How can you display the property or methods of a command?
  2. Answer:

By using the get-member command

  1. Q: Using methods, how would you kill an instance of Internet Explorer?
  2. Answer:

First open Internet Explorer and minimize to the taskbar.

Now we want to determine first is Internet Explorer a service or a process

Type get-service -name (now scroll down though the list) List is in alphabetical order) We see that IE is not in the list.

  • Type get-process -name (scroll down through the list) and we see iexplore
  • So now we know that iexplore is a process

Now we’ll use get-member to find our method

Type get-process | gm  press return

Scroll up until you see a method,that could kill a process. And we see we have kill.

I’ll go ahead and type the command then explain what I did.

Type (get-process iexplore).kill()

  • If you want to use the method of an object. Use GM and choose the method. 
  • In this case we surrounded the command (get-process) and the process called iexplore in parenthesis 
  • then used a dot then the method (which was kill) followed by open and closed parenthesis

Go ahead and press return, and we’ll see if IE closes

And we see that command worked.

  1. Q: Using methods of an object,  how would you copy the contents of a file called servers.csv from, a folder called copyA to a folder called copyB.
  • Answer:First open windows explorer and create the two folders called copyA and copyB. Close explorer
  • Open notepad and type the following text

DNS Servers (return)

DNS1

DNS2

Domain Controllers

AD1

AD2

AD3

  • Click file save as, save as type, click the down arrow and click all files.

Now for a filename type servers.csv and save this file to the copyA folder.

Close notepad, go back out to explorer and double check to be sure our file is there. and go to c:\copya and there’s our file.

  • So, the question was, we want to copy the contents of the servers.csv file from the copyA folder to the copyB folder. 

So, the first question you should have, is how are you going to figure out which commands to use? I’m glad you asked

  • When you began the lecture there was an additional resource that you should have downloaded called Technet PowerShell Commands and aliases. 
  • Go ahead and open this file. Notice there are a whole list of cmdlets with descriptions and aliases.

Let’s Scroll down and find a command in the list that we think that will work. 

So, in this case we’ll use get-childitem, and the description says that the command gets the files and folders in a file system drive.

Server Academy Members Only

Sorry, this lesson is only available to Server Academy Full Access members. Become a Full-Access Member now and you’ll get instant access to all of our courses.

0 0 votes
Lesson Rating
Subscribe
Notify of
profile avatar
2 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments

profile avatar
dewitsc(@dewitsc)
Member
8 months ago

I do not have access to the resource mentioned in this lesson “Technet Powershell Commands and Aliases.” Can you help with this please?

profile avatar
Ricardo P(@ricardop)
Admin
Reply to  dewitsc
8 months ago

Hi profile avatar Dewits Cham

It was a similar example list like the following:
https://www.codingthoughts.net/powershell-quick-reference/

Ricardo