Powershell – if statement

Powershell – if statement

 

in powershell we have the option to test for a particular condition.

we can set it with the if statement

here’s the syntax for it –

if (<value> operator <value>){<code to execute if true>}

 

 

elseif (<value> operator <value>){<code to execute if true>} else{<code to execute if not true>}

Note that the elseif and else parts are optional in an if statement.

 

lets create a game with an easy if statement script fun game.

(Visited 1,250 times, 1 visits today)

Leave a Reply