Collections:
Other Resources:
If-Else Conditions in Windows PowerShell Scripts
How to use if-else conditions in Windows PowerShell scripts?
✍: FYIcenter.com
PowerShell script supports the following if-else code block
to help you to perform tasks depending on logical conditions:
If (conditin1) {
task1
} Elseif (condition2) {
task2
...
} Else {
other-task
}
Here is a sample script on how to use if-else conditions:
$h = (Get-Date).Hour
If ($h -ge 6 -and $h -lt 12) {
"Good morning!"
} Elseif ($h -ge 12 -and $h -lt 18) {
"Good afternoon!"
} Elseif ($h -ge 18 -and $h -lt 22) {
"Good evening!"
} Else {
"Why are you not sleeping!?"
}
⇒ Out-Host - Standard Output in Windows PowerShell Scripts
⇐ Logical Operations in Windows PowerShell Scripts
2016-10-30, ∼2805🔥, 0💬
Popular Posts:
How to remove CLI.exe from startup program list? CLI.exe is a configuration program for the ATI grap...
Can I disable Windows service "Smart Card Helper" to speedup my computer? Windows service "Smart Car...
Can I disable Windows service "hpqwmiex.exe - HP ProtectTools security manager" to speedup my comput...
What is wrong if you get an execution error: "The procedure entry point _zval_dtor could not be loca...
What are the commonly used background processes on Windows systems? - Part II Continue from Part I ....