This Video discuss about PowerShell Do-While and Do-Until loop in detail.
-- What is PowerShell Do Loop 00:04
-- Keywords Used with PowerShell Do Loop -- While and Until 00:33
-- What is PowerShell Do-While Loop in detail 00:50
-- Syntax of PowerShell Do-While Loop in detail 01:01
-- Workflow of PowerShell Do-While Loop 01:38
-- Demo of PowerShell Do-While Loop 02:27
-- What is PowerShell Do-Until Loop in detail 08:19
-- Difference between PowerShell Do-While and Do-Until Loop 08:33
-- Syntax of PowerShell Do-Until Loop in detail 08:52
-- Workflow of PowerShell Do-Until Loop 09:24
-- Demo of PowerShell Do-Until Loop 10:04
-------------------------------------------------------------------------------------------------------------------------
Commands and Code, that has been Used in this Section is mentioned here, You can please use it to practice.
Using do-While loop to read contents of an Array or Collection
$List = 1..8
$i = 0
do{$List[$i];$i++} while ($i -le $List.count)
Using Do-while loop Interactively
$i=0
do{$i;$i++;$answer = Read-Host -Prompt "Write further Count ? = Yes or No"} while($answer -like "Yes")
***********************************************************************
Using do-Until loop to read contents of an Array or Collection
$List = 1..8
$i = 0
do{$List[$i];$i++} until ($i -eq $List.count)
Using Do-Until loop Interactively
$i = 0
do{"$i";$i++;$Answer = Read-Host -Prompt "Write further Count ? = Yes or No"} until ($Answer -like "no")
************************************************************************
************************************************************************
Join Me on --
Facebook Group
/ mylearningsonline
Facebook Page
/ mylearningsonline
YouTube Channel
/ mylearningsonline
**************************************************************************
#PowerShell #PowerShellScripting #PowerShellForBeginners #learnPowerShell #PowerShelltraining #PowerShellTutorial #MyLearningsOnline
PowerShell Scripting for Beginners
PowerShell Tutorial for Beginners
PowerShell Full Course
PowerShell Training for Beginners
PowerShell Do while Loop
PowerShell Do Until Loop
PowerShell Do Loop