filmov
tv
Working with PowerShell Pipelines | EP 03 | PowerShell Zero to Hero in Month
Показать описание
This video explains about PowerShell Pipeline in detail.
In this Video you will Know :
-- What is PowerShell Pipeline
-- What are the benefits of using Pipeline
-- In case facing Issue with Pipeline, then how to Identify it
-- How to work with commands that does not return any Output by default in Pipeline
############################################################
Code and Commands that have been used in Demos of this Video are :
############################################################
# Without Pipeline
Get-Service -Name "Windows Update"
Stop-Service -DisplayName "Windows Update"
# Using Pipeline
Get-Service -Name "Windows Update" | Stop-Service
# Uses Of Pipeline
Get-Service -Name "Windows Update“ | Stop-Service
Get-Service -Name "Windows Update“ | ft name -AutoSize
Get-Service -Name | Where-Object {$_.DisplayName -like "Windows Update"}
# How to know Output Type of a Command :
Get-Service | Get-Member
# How to check which parameters of a command accept Pipelined Input, What Type of Input they support and by Value or By Property Name
Help Stop-Service -Parameter *
************************************************************************
************************************************************************
Join Me on --
Facebook Group
Facebook Page
YouTube Channel
**************************************************************************
#PowerShell #PowerShellScripting #PowerShellForBeginners #learnPowerShell #PowerShelltraining #PowerShellTutorial #MyLearningsOnline
PowerShell Scripting for Beginners
PowerShell Tutorial for Beginners
PowerShell Full Course
PowerShell Training for Beginners
In this Video you will Know :
-- What is PowerShell Pipeline
-- What are the benefits of using Pipeline
-- In case facing Issue with Pipeline, then how to Identify it
-- How to work with commands that does not return any Output by default in Pipeline
############################################################
Code and Commands that have been used in Demos of this Video are :
############################################################
# Without Pipeline
Get-Service -Name "Windows Update"
Stop-Service -DisplayName "Windows Update"
# Using Pipeline
Get-Service -Name "Windows Update" | Stop-Service
# Uses Of Pipeline
Get-Service -Name "Windows Update“ | Stop-Service
Get-Service -Name "Windows Update“ | ft name -AutoSize
Get-Service -Name | Where-Object {$_.DisplayName -like "Windows Update"}
# How to know Output Type of a Command :
Get-Service | Get-Member
# How to check which parameters of a command accept Pipelined Input, What Type of Input they support and by Value or By Property Name
Help Stop-Service -Parameter *
************************************************************************
************************************************************************
Join Me on --
Facebook Group
Facebook Page
YouTube Channel
**************************************************************************
#PowerShell #PowerShellScripting #PowerShellForBeginners #learnPowerShell #PowerShelltraining #PowerShellTutorial #MyLearningsOnline
PowerShell Scripting for Beginners
PowerShell Tutorial for Beginners
PowerShell Full Course
PowerShell Training for Beginners
Комментарии