Working with PowerShell Pipelines | EP 03 | PowerShell Zero to Hero in Month

preview_player
Показать описание
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
Рекомендации по теме
Комментарии
Автор

If you like this Video and want to appreciate my efforts, you can please write for me in comments 😊.
Also you can write if you have any query or suggestion. Happy Learning !! 😊
Also please Subscribe to Channel to get notified about more Videos of this Series 😊

GoCloudEasily
Автор

Keep it up 👍 deep dive with easy way !

vipinkumar-wnqq
Автор

When I trying to execute "windows update" command using pipeline, it shows an error like "cannot open wuauserv service on computer"

shalinipandit