Udemy
    •  
    •  
    •  
    •  
    •  
    •  
    •  
    •  
Turn what you know into an opportunity and reach millions around the world.
Learn More
Your cart is empty.
Keep shopping
PowerShell 6: From Basics to Mastering System Administration
Rating: 4.4 out of 5(87 ratings)
908 students

PowerShell 6: From Basics to Mastering System Administration

Explore various features & automation tasks with PowerShell 6 by administrating Windows OS components & Server features
Last updated 2/2019
English

What you'll learn

  • Design and Implement scalable automation solutions.
  • Eliminate duplicate code and consolidate script files.
  • Get a grip of Visual Studio Code with add-ons for PowerShell automation.
  • Delegate tasks to end users with Azure serverless computing - functions.
  • Reduce the time spent on doing routine tasks when they can be automated.
  • See how to configure the Windows Operating System (OS) with PowerShell Core 6.
  • Manage Windows features, including Active Directory, IIS, and more with PowerShell Core 6.
  • Master the most important aspects of PowerShell Core 6.

Course content

3 sections88 lectures7h 54m total length
  • The Course Overview5:59

    This video gives an overview of the entire course.

  • Setting Up a Lab7:39

    In this video, we will learn what type of lab environment is recommended to begin learning PowerShell.

    • Determine physical or virtual lab

    • Obtain software and operating system ISOs

    • Setup machines, install OS, and install core applications

  • Accessing the PowerShell Console and PowerShell ISE3:32

    In this video, we will begin learning PowerShell by first accessing the environment and learning the different ones available.

    • Open the standard console

    • Explore the alternate consoles such as administrator and X86

    • Open the ISE environment and discuss the basics

  • Accessing and Updating the Help System5:07

    In this video, we will learn how to update the help system to populate the help files and then access them.

    • Use Update-Help to update help files

    • Explore Save-Help for offline systems

    • Use Get-Help and Help to access the help system

  • Finding and Running Cmdlets5:21

    In this video, we will learn how to discover and use Cmdlets.

    • Understand the basic Verb-Noun pattern of Cmdlets

    • Learn to navigate with tab and the arrow keys

    • Use help and Get-Command to discover available Cmdlets

  • Using the Help System and Protecting with -WhatIf and -Confirm11:56

    In this video, we will learn how to get full help on commands to learn what they do and how to use them.

    • Learn parameters of Get-Help and dissect the needed information

    • Analyze the syntax and understand how different Cmdlets can run

    • Protect yourself using -WhatIf and -Confirm

  • Working with PSProviders and PSDrives7:10

    In this video, we will see how PSProviders provide the logic and how PSDrives provide entry points into data stores.

    • Look up available PSProviders

    • Look up available PSDrives

    • Create a new PSDrive

  • Exploring File System Navigation and Manipulation3:35

    In this video, we will learn the difference in ChildItem and Item as well as aliases and functions that assist with the file system.

    • Define the difference in Item and ChildItem

    • Set up the working location

    • Examine the Mkdir function

  • Working with the Registry Keys4:21

    In this video, we will learn how to access, navigate, and manipulate the Registry.

    • Use the registry provider to access one of the Registry PSDrives

    • Navigate through the directory structure

    • Edit a Registry key

  • Identifying Errors4:36

    In this video, we will learn how to avoid errors and work through them.

    • Utilize tab complete for PowerShell to assist typing correctly

    • Locate the error and what information may be missing

    • Use terminology in error to match with help file information

  • Differentiating between Objects and Texts4:11

    In this video, we will learn that PowerShell uses objects with properties and methods.

    • Isolate an object’s property

    • Change output of an object using a method

    • Use a method to stop a process

  • Working with WMI and CIM Objects3:31

    In this video, we will use Windows Management Instrumentation (WMI) and Common Information Model (CIM) to administer systems

    • How to find classes

    • Get information from WMI object classes

    • Get information from CIM object classes

  • Finding, Creating, and Using Variables4:28

    In this video, we will learn how to find existing variables and create new ones.

    • Look up built-in variables

    • Navigate the environmental variables drive

    • Create and change values of variables

  • Passing Objects through the Pipeline3:40

    In this video, we will learn how to send objects through the pipeline to change them or perform other functions on them.

    • Discuss differences in objects and text

    • Distinguish between by property name and by value

    • Use Get-Member to see the methods and properties of objects

  • Diving into Queries and Expressions5:42

    In this video, we will learn how to select properties and sort them.

    • Select objects

    • Sort objects

    • Create custom expressions

  • Formatting for Efficiency6:32

    In this video, we will learn how to be efficient by filtering first and then formatting.

    • Discuss filtering first, then formatting the output

    • User Where-Object to filter the results

    • Format the output into different layouts

  • Using the Pipeline to Create a Report5:16

    In this video, we will learn how to output data to different file types, screens, or printers.

    • Output data to a text file

    • Output data to a GUI or a printer

    • Export data to a CSV file

  • Enhancing Your System Security5:25

    In this video, we will learn how Microsoft enhances your security with the design and defaults of remoting.

    • Enable remoting

    • See how hopping fails

    • Discuss permissions

  • Running Cmdlets on a Remote Machine4:08

    In this video, we will learn how to run a command using a remote machine as the target.

    • Get a service status on two remote servers

    • Run a command on a remote system

    • Get a variable’s value from a remote system

  • Creating a Session on a Remote Machine4:18

    In this video, we will learn how to open a session on a remote system that allows multiple consecutive commands to be ran.

    • Use New-PSSession to create a session

    • Enter a session and use it

    • Exit the session

  • Connecting to Microsoft Online4:13

    In this video, we will learn how to connect to online services to administrate them.

    • Discuss requirements

    • Import required module(s)

    • Connect to the service and test

  • Importing Cmdlets from a Remote System7:11

    In this video, we will learn how to import a module from a remote system in order to use the specific Cmdlets.

    • Create a new session

    • Import the module

    • Use the Cmdlets and exit the session

  • Process of Script Development3:23

    In this video, we will get the understanding of the basic outline and process of PowerShell script creation.

    • Understand that the best beginning is to define the need

    • Become familiar with some basic ISE tools

    • Comply with standard naming conventions

  • Create a Script to Gather Data and Create a Report4:58

    In order to meet requirements for an asset audit, a script will save time by creating a report of asset information.

    • Use snippets to build a basic help section

    • Put output from commands into variables to build report

    • Output required data to a simple report on screen

  • Create a Script to Make a DHCP Reservation5:55

    In order to quickly create DHCP reservations for devices, a script will be needed to conduct multiple commands for the desired results.

    • Build a basic help section and create a standardized name

    • Create a parameter block including help statements

    • Include the necessary commands and test

  • Turn a Script into a Function5:13

    In this video, we will learn how to connect to online services to administrate them.

    • Convert the previous script into a function

    • Create or locate the PowerShell profile script

    • Insert the function into the profile script and test

  • Creating Modules4:12

    In this video, we will learn how to import a module from a remote system in order to use the specific Cmdlets.

    • Determine the proper location and naming conventions for modules

    • Add another function to the new module

    • Test availability of both functions in module

  • Active Directory Administration with PowerShell5:20

    In this video, we will see how PowerShell provides a fast way to enter the Active Directory structure to administrate it.

    • Access the AD module using a DC remote session

    • Create a new AD user account and enable it

    • Add user to groups and set user properties

  • Microsoft Online Office 365 Administration with PowerShell3:06

    This video explains about the PowerShell which provides access to Microsoft online services for efficient administration of Office 365 accounts.

    • Store credentials using Get-Credentials into a variable

    • Connect to MS online service

    • Get some information to verify connection

  • IIS Web Server Administration with PowerShell2:32

    In this video, we will easily create or change website content within the PowerShell console.

    • Create a file and set content in it for webpage

    • Copy the file to the IIS server

    • Verify changes to the web site

  • Introduction to Desired State Configuration6:07

    In this video, we will validate configuration requirements and make changes as needed with the automated abilities of Desired State Configuration.

    • Examine the layout of a DSC configuration script

    • Run a configuration script and start DSC configuration

    • Verify desired state configuration occurred

  • Test Your Knowledge

Requirements

  • You need to have some basic scripting knowledge and good administration experience.
  • Passing familiarity with PowerShell will be useful (Not mandatory).

Description

Built on the .NET Framework, Windows PowerShell helps IT professionals and power users control and automate the administration of the Windows operating system and applications that run on Windows. PowerShell combines command-line speed, the flexibility of scripting, and the power of a GUI-based admin tool. From an administrative standpoint, this means that if you become proficient in PowerShell, you’ll have the skill set needed to manage most of Microsoft's newer products. If you’re looking to explore the advanced functions and features of PowerShell 6 then is the perfect Course for you!


This comprehensive 2-in-1 course is a practical step-by-step guide uses real commands to solve real problems, building immediate experience with PowerShell 6. To begin with, you’ll set up a lab environment to learn and test PowerShell processes. You’ll discover scripts to automate administrative tasks and solve problems to perform tasks using PowerShell 6. Moving further, you’ll get a grip of Visual Studio Code with add-ons for PowerShell automation. Administer remote systems with PowerShell Core 6. Finally, you’ll master the most important aspects of PowerShell Core 6 to manage Windows features, including Active Directory, IIS, and more!

Towards the end of this course, you'll explore various features and automation tasks in the awesome PowerShell 6 by configuring and administrating the Windows Operating System components and server features.

Contents and Overview

This training program includes 3 complete courses, carefully chosen to give you the most comprehensive training possible.

The first course, Learning PowerShell 6, covers system management with PowerShell 6. This video is designed to help you get up and running with PowerShell, taking you from the basics of installation to writing scripts and web server automation. It also includes topics such as installation and setup, creating scripts, automating tasks, and using PowerShell to access data stores, registry, and file systems. You will explore the PowerShell environment and discover how to use cmdlets, functions, and scripts to automate Windows systems. The potential topics could be will be Commands, Scripts, Providers, Files and folders, Objects, Variables, Classes and Enumerations, Expressions, DSC and so on. By the end of this course, you’ll be able to leverage your skills to effectively manage and administrate the system using PowerShell 6.

The second course, PowerShell Toolmaking, covers building PowerShell automation tools. This course will show you how to build tools that will allow you to automate various aspects of your daily routines. It takes actions that you could easily delegate to the end user that will take up hours of your time daily. By the end of the course, gain strong knowledge on how automation and tool building works, so that you can create your own solutions. Automation is the future of IT, you can’t manage large-scale environments these days without substantial automated.

The third course, Mastering System Administration with PowerShell 6.x, covers exploring the advanced functions and features of PowerShell Core 6. We’ll start with Windows System Administration and explore different features, services, shares, and permissions. Then you’ll move forward with Windows Management Instrumentation (WMI), which is an essential aspect of PowerShell 6. After that, you’ll work on managing remote systems, learn to create and connect reusable remote sessions to multiple systems, invoke commands on remote machines, and close connections and delete remote sessions. Finally, you’ll see how PowerShell has expanded its influence across the data center, as you use PowerShell to manage Active Directory, Azure, IIS, and more. By the end of this course, you’ll be able to perform complex automation tasks using PowerShell 6 and will have mastered the new features and changes that it brings.

Final para, wrap up with the key outcome. As always, keep it simple and powerful.

By the end of this course, you'll explore various features and automation tasks in the awesome PowerShell 6 by configuring and administrating the Windows Operating System components and server features.

About the Authors

  • Joshua B. Jones is an IT Administrator with Superior Industries International and leads the global company in PowerShell administration, scripts, and tool creation. In the past two years, he has eliminated over 1,000 labor hours by automating previously manual tasks using PowerShell. Not only is he an expert, but demonstrates his passion for PowerShell by teaching others the tool at every opportunity presented.

  • Edgar Dockus is a technology consultant specializing in virtualization and cloud deployments with 12+ years of experience and He has been a PowerShell enthusiast since its early days. Most of his career he has spent working on various cloud solutions that require extensive automation and various deployments and general tasks with PowerShell, Chef, and ARM.

  • Michael Simmons is an author, trainer, and IT Professional with over 20 years of experience managing and administering technology and helping the people that use it. He has developed multiple popular and successful video courses on the topic of Windows System Administration and PowerShell. He started using PowerShell and became involved in the community in 2007 and started iLovePowerShell in 2010 as a blog and resource for the community, where he discusses PowerShell and how to use it to improve your career. As a PowerShell expert and evangelist, he continues to spread knowledge from an admin/tech support perspective. He’s driven to teach IT, professionals, to write great code, empowering them to take control of their job and lead an inspiring career. His technical and industry coverage has been featured on leading technology industry news and how-to sites, including TomsItPro and Petri.

Who this course is for:

  • System Administrators, Developers, Solution Architects who want to master Windows PowerShell 6.0 as a scripting language, automate repeated daily tasks, and perform complex administration in a timely manner and with less effort.
  • PowerShell scripters who want to build applications.