Powershell Advanced Tools and Scripting Full Course

preview_player
Показать описание
Take your PowerShell scripts to a new level, with this Microsoft Virtual Academy course taught by Jeffrey Snover, PowerShell architect and inventor.

TIME STAMP

⭐⭐⭐⭐🕑TIME STAMP📋⭐⭐⭐⭐⭐
👉0:00:00 get-started-scripting
This module provides an overview of PowerShell and describes how to install the Windows Management Framework and run PowerShell as an Administrator. It explains PowerShell security and execution policies and demonstrates how to run scripts.

👉0:44:50 Powershells-scripting-language
This module describes aspects of PowerShell's scripting language, including variables, quotation marks, object members and variables, parentheses, and logical and looping constructs.

👉1:45:39 Simple-scripts-and-functions
This module explains how to turn commands into scripts for automation, choose variables to parameterize, parameterize scripts, write functions, and run scripts and functions.

👉2:11:36 Advanced-functions
This module describes aspects of advanced functions, including using templates, creating and testing parameters, adding code, and writing objects out to the pipeline.

👉3:05:08 More-on-parameters
This module provides more information on parameters, including mandatory parameters, switching parameters and accepting pipeline input, as well as parameter Help, aliases, and validation.

👉3:45:11 Writing-help
This module describes Help, including why you should provide it and where it should be located, and provides an example of comment-based Help.

👉4:10:12 Error-handling
This module describes error handling and provides sample code for handling and logging errors.

👉4:48:32 Tools-that-make-changes
This module describes tools that use the –confirm and –whatif parameters and provides examples using the ShouldProcess function

👉5:05:12 Script-and-manifest-modules
This module provides an overview and demonstration of modules, including where they should be placed, module manifests, and custom views.
---------------------------------------------------------------------------------------------------------------------------------

-------------------------------------------------------------------------------------------------------------------------------------
If you realllly enjoy my content, you're welcome to support me and my channel with a small donation via PayPal

♥️♥️Thanks for watching don't forget to like and Subscribe♥️♥️

✨✨PLEASE IGNORE THESE TAGS✨✨
a powershell script example,
powershell basics,
powershell commands
powershell scripting tutorial,
powershell tutorial,
powershell scripting,
learn powershell,
windows powershell,
powershell commands,
,powershell scripting for beginners,
powershell tutorial for beginners,
powershell basics,,
powershell scripting,
powershell for beginners,
powershell automation,
powershell course,
powershell active directory,
powershell azure,
powershell arrays,
powershell beginners,
powershell beginner tutorial,
powershell basic commands for beginners,
powershell best practices,
powershell basic commands,
powershell batch script tutorial,
powershell bootcamp,
powershell core,
powershell crash course,
powershell classes,
powershell dsc for beginners,
powershell debugging,
powershell devops,
powershell explained,
powershell full course,
powershell functions for beginners,
powershell lessons,
powershell learning,
powershell masterclass
Рекомендации по теме
Комментарии
Автор

This guy... invented... PowerShell. Makes me feel like a failure in life 😭😭. Thanks man, you're literally responsible for making lives easy millions of people. What a contribution to society.

Ghst_
Автор

2022 and this is still worth it a lot for Beginners, fundamental things didn't change even in PS7 neither will be in other versions. This video is worth a lot! Thanks for uploading it

masnaBukagija
Автор

I'm very grateful that this course is available for free.

Aman-ioql
Автор

I've come a long way in Powershell with these 2 videos and he book "Learn PowerShell in a Month of Lunches." This is great!

kennethbhunt
Автор

Fun listening to them while learning. This is great!

mattheweghe
Автор

jason is such a great teacher. thanks dudes!

flintlck
Автор

Excellent tutorial, this makes Powershell learning incredibly easy, thanks a lot. You guys made this learning environment like a paradise made for PS learning.

sakthipro_YT
Автор

Guys you Rock!!! what amazing coursel!! Thanks a lot !

DiogoMartinsNascimento
Автор

The way teaching is wonderful and awesome 👍👍👍.

sathishkumarreddymaadu
Автор

I was hoping to see the video was focusing on Powershell 5, as i have been working with powershell for over 4 years. I still look forward if this video can help me on stuff i might have been missed. Also from my experience PS3 i close to PS5 in many ways just made more intuitive and easier command set.

i have been using ISE from the beginning and tried many time a transition to Visual Studio Core. But end up every time to better like the ISE and be more productive.

This course is awesome. Even though i know most of the stuff, it has always been troublesome to find material of what best practice is, or the right way to approach a problem. The pipeline function had a lot of value, and how to do error handling. I have always wondering about the difference of just a function and cmdlet. and also could see i done some really stupid coding in the past like if condition on file paths, instead of just using a validation script. it like you get lazy when you have ways to solve tings, and lose touch in optimizing code when you know something does the job.

DannyNilsson
Автор

For anyone following this brilliant training, "Get-Service" command will not work with -ComputerName as it was removed from get-* PS commands. An alternative is to use get-CIMInstance as in "Get-CimInstance -ComputerName (get-content C:\temp\computers.txt) -ClassName win32_service |where name -EQ BITS". Hope this will help someone. This part is being discussed around 1.24 mark.

konradkaluszynskipro
Автор

1:40:01 - the guys were wrong : they said less than/ great than, and it's actually less or equal/ great or equal . As you can see do-while runs 5 times (INCLUDING when i =5 ), and while loop runs 6, since at the end of do-while i equals 6.

ediccartman
Автор


TIME
0:00:00 get-started-scripting
This module provides an overview of PowerShell and describes how to install the Windows Management Framework and run PowerShell as an Administrator. It explains PowerShell security and execution policies and demonstrates how to run scripts.

0:44:50
This module describes aspects of PowerShell's scripting language, including variables, quotation marks, object members and variables, parentheses, and logical and looping constructs.

1:45:39 Simple-scripts-and-functions
This module explains how to turn commands into scripts for automation, choose variables to parameterize, parameterize scripts, write functions, and run scripts and functions.

2:11:36 Advanced-functions
This module describes aspects of advanced functions, including using templates, creating and testing parameters, adding code, and writing objects out to the pipeline.

3:05:08 More-on-parameters
This module provides more information on parameters, including mandatory parameters, switching parameters and accepting pipeline input, as well as parameter Help, aliases, and validation.

3:45:11 Writing-help
This module describes Help, including why you should provide it and where it should be located, and provides an example of comment-based Help.

4:10:12 Error-handling
This module describes error handling and provides sample code for handling and logging errors.

4:48:32 Tools-that-make-changes
This module describes tools that use the –confirm and –whatif parameters and provides examples using the ShouldProcess function

5:05:12 Script-and-manifest-modules
This module provides an overview and demonstration of modules, including where they should be placed, module manifests, and custom views.

If you realllly enjoy my content, you're welcome to support me and my channel with a small donation via PayPal

Nerdslesson
Автор

Still very usable material but I'd like the find an equivalent video for PS 5.1

Denver
Автор

Love your work both! Keep up the good work

moqlf
Автор

It will be awesome if do it again with powershell 7

tony-ma
Автор

Hahaha. Melody said I do send them things like food to your house at times and I did not hear audio of a denial 😂😂😂.

nicolesellingrealestatelewis
Автор

You two are the Maggie Beer and Simon Bryant of coding aka 'Cook and the Chef'.

RangaTurk
Автор

3:00:04 😂😂 "you might be saying....

vortical
Автор

You use double quotes in case there is a space in whatever may be in the variable.

coreybaldwin