Let's take a look at how to perform if-else and if-elseif-else statements to perform conditional logic.
Example 1: If-Else Statement
$age = 25
if ($age % 2 -eq 0) {
Write-Host "Your age is even."
} else {
Write-Host "Your age is odd."
}
Example 2: If-ElseIf-Else Statement
$num = 3
if ($num -eq 0) {
Write-Host "The number is zero."
} elseif ($num -gt 0) {
Write-Host "The number is positive."
} else {
Write-Host "The number is negative."
}

-
Facing issues? Have Questions? Post them here! I am happy to answer!
More Posts related to Powershell,
- How to upgrade PowerShell on Mac
- How to install AWS CLI 2 on Windows 11 using PowerShell
- How to switch to Powershell on Mac Terminal
- How to connect to Microsoft Exchange Online using PowerShell
- How to Check PowerShell Version? [Windows/Mac/Linux]
- How to Comment out Code in PowerShell Script
- How to Identify installed PowerShell version
- How to install PowerShell on macOS
- Open PowerShell Terminal in Visual Studio Code (VSCode)
- PowerShell ps1 script is not digitally signed, you cannot run this script on the current system
- Update Powershell Using Command Line
- PowerShell 1..10 foreach Example
- PowerShell Fix: Get-Help cannot find the Help files for this cmdlet on this computer
- List of PowerShell Cmdlet Commands for Mac
- Help or Man equivalent in PowerShell
- PowerShell SubString with Examples
- PowerShell: How to Get Folder Size
- PowerShell Traditional For Loop Example
- PowerShell Switch Statement with Examples
- PowerShell Concatenate String Examples
- PowerShell For Each Loop Examples
- PowerShell: Grep Command Alternative - Select-String
- How to delete a file using PowerShell [Windows/macOS]
- Fix: nano is not recognized as an internal or external command - Windows PowerShell
- PowerShell on Mac: The term get-service is not recognized as a name of a cmdlet, function, script file, or executable program
More Posts:
- Java + Spring JDBC Template + Gradle Example - Java
- How to share SharePoint site or document with all users in organization - SharePoint
- osascript wants to make changes while Android Studio Installation on Mac OS X - Mac-OS-X
- [fix] AWS S3 make_bucket failed: An error occurred (InvalidBucketName) when calling the CreateBucket operation. - S3
- How to remove JetBrains Toolbox from Mac Startup - HowTos
- How to install brew on macOS Ventura - MacOS
- ERROR x86 emulation currently requires hardware acceleration. Intel HAXM is not installed on this machine - Android
- Create an AWS User using CLI2 Command at a specific Path - AWS