Showing posts with label 101. Show all posts
Showing posts with label 101. Show all posts

Saturday, April 4, 2020

Videos

Basic PowerShell Videos

Shane Young

PowerShell 101

https://www.youtube.com/playlist?list=PLCGGtLsUjhm2k22nFHHdupAK0hSNZVfXi
Part 1 - Basics
https://www.youtube.com/watch?v=IHrGresKu2w
Part 2
https://www.youtube.com/watch?v=f9xPJXslVWE
Copy, Move, Delete files with PowerShell
https://www.youtube.com/watch?v=QuLxJRT3Mhg

Advanced PowerShell Videos

Don Jones

Month of Lunches

Tooling Making

Advanced Series
Live Interactive Session - A great tool building video series
Note this was a recorded live session (Warning: Some Adult Language)

Part 1
https://www.youtube.com/watch?v=KprrLkjPq_c
Part 2
https://www.youtube.com/watch?v=U849a17G7Ro
Part 3
https://www.youtube.com/watch?v=GXdmjCPYYNM


Tuesday, December 18, 2018

PowerShell 101 - Basics


How to get Help

https://docs.microsoft.com/en-us/powershell

Help
Get-Help
Help vs Get-Command
search command using Bing or google

Search using https://docs.microsoft.com/en-us/powershell/module/microsoft.powershell.management/?view=powershell-6

How to Edit

Tab Complete
History

What is Piping?

Select
More

example: Get-Process | More
example: Get-Process | Select * | More

example: Get-Command | Measure-Object

Variables?

variables
collections
array
Get-Member

example: $temp = Get-Process
example: $temp | Get-Member
example: $temp = Get-Process[0]


Note if help files are missing run update-help or go here to help online


How to get Help

Help
Get-Help
Help vs Get-Command
search

How to Edit

Tab Complete
History

What is Piping?

Select
More
Measure

Variables?

collections
array
get member

Editor

Command line vs ISE

Keyboard Shortcuts

https://msdn.microsoft.com/en-us/powershell/scripting/core-powershell/ise/keyboard-shortcuts-for-the-windows-powershell-ise
https://technet.microsoft.com/en-us/library/ff678293.aspx